diff options
521 files changed, 53418 insertions, 13605 deletions
@@ -32,9 +32,9 @@ If your distribution is not listed, please check the requirements yourself. **Important:** Remove all older versions of the theme from your system before you proceed any further. - sudo rm -rf /usr/share/themes/Arc - rm -rf ~/.local/share/themes/Arc - rm -rf ~/.themes/Arc + sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark} + rm -rf ~/.local/share/themes/{Arc,Arc-Darker,Arc-Dark} + rm -rf ~/.themes/{Arc,Arc-Darker,Arc-Dark} **Packages** @@ -73,6 +73,10 @@ If you want to install the latest version from git, clone the repository with Other options to pass to autogen.sh are + --disable-transparency disable transparency in the GTK3 theme + --disable-light disable Arc Light support + --disable-darker disable Arc Darker support + --disable-dark disable Arc Dark support --disable-gnome-shell disable GNOME Shell support --disable-gtk2 disable GTK2 support --disable-gtk3 disable GTK3 support @@ -80,13 +84,12 @@ Other options to pass to autogen.sh are --disable-unity disable Unity support --disable-xfwm disable XFWM support --disable-xfce-notify disable XFCE Notify support - --disable-transparency disable transparency in the GTK3 theme --with-gnome=<version> build the theme for a specific Gnome version (3.14, 3.16) Note: Normally the correct version is detected automatically and this option should not be needed. -After the installation is complete you can activate the theme with `gnome-tweak-tool` or a similar program by selecting `Arc`. +After the installation is complete you can activate the theme with `gnome-tweak-tool` or a similar program by selecting `Arc`, `Arc-Darker` or `Arc-Dark` as Window/GTK+ theme and `Arc` as Gnome-Shell theme. **Uninstall the theme** @@ -96,7 +99,7 @@ Run from the same directory as this README resides in, or - sudo rm -rf /usr/share/themes/Arc + sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark} ### Extras diff --git a/common/Makefile.am b/common/Makefile.am index eb681fb..6aef7ab 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -1,22 +1,86 @@ -themedir = $(datadir)/themes/Arc -ithemedir = $(DESTDIR)$(themedir) +themedir = $(datadir)/themes/Arc +themedarkerdir = $(datadir)/themes/Arc-Darker +themedarkdir = $(datadir)/themes/Arc-Dark + +ithemedir = $(DESTDIR)$(themedir) +ithemedarkerdir = $(DESTDIR)$(themedarkerdir) +ithemedarkdir = $(DESTDIR)$(themedarkdir) install-data-local: + +if ENABLE_LIGHT $(MKDIR_P) $(ithemedir) cp --no-preserve=mode,ownership $(srcdir)/index.theme $(ithemedir) +endif # ENABLE_LIGHT + +if ENABLE_DARKER + $(MKDIR_P) $(ithemedarkerdir) + cp --no-preserve=mode,ownership $(srcdir)/index.theme-darker $(ithemedarkerdir)/index.theme +endif # ENABLE_LIGHT + +if ENABLE_DARK + $(MKDIR_P) $(ithemedarkdir) + cp --no-preserve=mode,ownership $(srcdir)/index.theme-dark $(ithemedarkdir)/index.theme +endif # ENABLE_DARK if ENABLE_GNOME_SHELL + $(MKDIR_P) $(ithemedir) cp -rH --no-preserve=mode,ownership $(srcdir)/gnome-shell/$(GNOME_VERSION) $(ithemedir)/gnome-shell endif # ENABLE_GNOME_SHELL if ENABLE_GTK2 + +if ENABLE_LIGHT cp -r --no-preserve=mode,ownership $(srcdir)/gtk-2.0 $(ithemedir) + + cd $(ithemedir)/gtk-2.0 && rm -rf \ + assets-dark \ + gtkrc-darker \ + gtkrc-dark \ + *.sh \ + assets.svg \ + assets-dark.svg \ + assets.txt +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cp -r --no-preserve=mode,ownership $(srcdir)/gtk-2.0 $(ithemedarkerdir) + + cd $(ithemedarkerdir)/gtk-2.0 && mv gtkrc-darker gtkrc + + cd $(ithemedarkerdir)/gtk-2.0 && rm -rf \ + assets-dark \ + gtkrc-dark \ + *.sh \ + assets.svg \ + assets-dark.svg \ + assets.txt +endif # ENABLE_DARKER + +if ENABLE_DARK + cp -r --no-preserve=mode,ownership $(srcdir)/gtk-2.0 $(ithemedarkdir) + + cd $(ithemedarkdir)/gtk-2.0 && \ + mv gtkrc-dark gtkrc && \ + rm -rf assets && \ + mv assets-dark assets + + cd $(ithemedarkdir)/gtk-2.0 && rm -rf \ + gtkrc-darker \ + *.sh \ + assets.svg \ + assets-dark.svg \ + assets.txt +endif # ENABLE_DARK + endif # ENABLE_GTK2 if ENABLE_GTK3 + +if ENABLE_LIGHT cp -rH --no-preserve=mode,ownership $(srcdir)/gtk-3.0/$(GNOME_VERSION) $(ithemedir)/gtk-3.0 cd $(ithemedir)/gtk-3.0 && rm -f \ @@ -25,32 +89,160 @@ if ENABLE_GTK3 *.scss \ *.sh \ *.txt \ - Gemfile* + Gemfile* \ + gtk-contained-darker.css \ + gtk-contained-solid-darker.css + +if ENABLE_TRANSPARENCY + cd $(ithemedir)/gtk-3.0 && rm \ + gtk-contained-solid.css \ + gtk-contained-solid-dark.css +endif # ENABLE_TRANSPARENCY + +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cp -rH --no-preserve=mode,ownership $(srcdir)/gtk-3.0/$(GNOME_VERSION) $(ithemedarkerdir)/gtk-3.0 + + cd $(ithemedarkerdir)/gtk-3.0 && rm -f \ + assets.svg \ + README \ + *.scss \ + *.sh \ + *.txt \ + Gemfile* \ + gtk-contained-solid.css + +if ENABLE_TRANSPARENCY + cd $(ithemedarkerdir)/gtk-3.0 && rm \ + gtk-contained-solid-darker.css \ + gtk-contained-solid-dark.css +endif # ENABLE_TRANSPARENCY + + cd $(ithemedarkerdir)/gtk-3.0 && mv gtk-contained-darker.css gtk-contained.css +endif # ENABLE_DARKER + +if ENABLE_DARK + cp -rH --no-preserve=mode,ownership $(srcdir)/gtk-3.0/$(GNOME_VERSION) $(ithemedarkdir)/gtk-3.0 + + cd $(ithemedarkdir)/gtk-3.0 && rm -f \ + assets.svg \ + README \ + *.scss \ + *.sh \ + *.txt \ + Gemfile* \ + gtk-dark.css \ + gtk-contained-solid.css \ + gtk-contained-darker.css \ + gtk-contained-solid-darker.css + +if ENABLE_TRANSPARENCY + cd $(ithemedarkdir)/gtk-3.0 && rm \ + gtk-contained-solid-dark.css +endif # ENABLE_TRANSPARENCY + + cd $(ithemedarkdir)/gtk-3.0 && mv gtk-contained-dark.css gtk-contained.css +endif # ENABLE_DARK if !ENABLE_TRANSPARENCY - cd $(ithemedir)/gtk-3.0 && mv gtk-contained-solid.css gtk-contained.css + +if ENABLE_LIGHT + cd $(ithemedir)/gtk-3.0 && \ + mv gtk-contained-solid.css gtk-contained.css && \ + mv gtk-contained-solid-dark.css gtk-contained-dark.css +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cd $(ithemedarkerdir)/gtk-3.0 && \ + mv gtk-contained-solid-darker.css gtk-contained.css && \ + mv gtk-contained-solid-dark.css gtk-contained-dark.css +endif # ENABLE_DARKER + +if ENABLE_DARK + cd $(ithemedarkdir)/gtk-3.0 && \ + mv gtk-contained-solid-dark.css gtk-contained.css +endif # ENABLE_DARK + endif #!ENABLE_TRANSPARENCY endif # ENABLE_GTK3 if ENABLE_METACITY + +if ENABLE_LIGHT cp -r --no-preserve=mode,ownership $(srcdir)/metacity-1 $(ithemedir) + + cd $(ithemedir)/metacity-1 && rm metacity-theme-1-dark.xml metacity-theme-2-dark.xml +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cp -r --no-preserve=mode,ownership $(srcdir)/metacity-1 $(ithemedarkerdir) + + cd $(ithemedarkerdir)/metacity-1 && \ + mv metacity-theme-1-dark.xml metacity-theme-1.xml && \ + mv metacity-theme-2-dark.xml metacity-theme-2.xml +endif # ENABLE_DARKER + +if ENABLE_DARK + cp -r --no-preserve=mode,ownership $(srcdir)/metacity-1 $(ithemedarkdir) + + cd $(ithemedarkdir)/metacity-1 && \ + mv metacity-theme-1-dark.xml metacity-theme-1.xml && \ + mv metacity-theme-2-dark.xml metacity-theme-2.xml +endif # ENABLE_DARK + endif # ENABLE_METACITY if ENABLE_UNITY + +if ENABLE_LIGHT cp -r --no-preserve=mode,ownership $(srcdir)/unity $(ithemedir) + + cd $(ithemedir)/unity && rm -rf window-buttons-dark +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cp -r --no-preserve=mode,ownership $(srcdir)/unity $(ithemedarkerdir) + + cd $(ithemedarkerdir)/unity && \ + rm -rf window-buttons && \ + mv window-buttons-dark window-buttons +endif # ENABLE_DARKER + +if ENABLE_DARK + cp -r --no-preserve=mode,ownership $(srcdir)/unity $(ithemedarkdir) + + cd $(ithemedarkdir)/unity && \ + rm -rf window-buttons && \ + mv window-buttons-dark window-buttons +endif # ENABLE_DARK + endif # ENABLE_UNITY if ENABLE_XFCE_NOTIFY + $(MKDIR_P) $(ithemedir) cp -r --no-preserve=mode,ownership $(srcdir)/xfce-notify-4.0 $(ithemedir) endif # ENABLE_XFCE_NOTIFY if ENABLE_XFWM + +if ENABLE_LIGHT cp -r --no-preserve=mode,ownership $(srcdir)/xfwm4 $(ithemedir) +endif # ENABLE_LIGHT + +if ENABLE_DARKER + cp -r --no-preserve=mode,ownership $(srcdir)/xfwm4-dark $(ithemedarkerdir)/xfwm4 +endif # ENABLE_DARKER + +if ENABLE_DARK + cp -r --no-preserve=mode,ownership $(srcdir)/xfwm4-dark $(ithemedarkdir)/xfwm4 +endif # ENABLE_DARK + endif # ENABLE_XFWM @@ -68,5 +260,8 @@ dist-hook: metacity-1 \ unity \ xfwm4 \ + xfwm4-dark \ index.theme \ + index.theme-darker \ + index.theme-dark \ $(distdir) diff --git a/common/gtk-2.0/apps.rc b/common/gtk-2.0/apps.rc index de154bd..f919fe9 100644 --- a/common/gtk-2.0/apps.rc +++ b/common/gtk-2.0/apps.rc @@ -4,12 +4,12 @@ style "thunar-handle" { GtkPaned::handle-size = 2 } style "dark-sidebar" { - GtkTreeView::odd_row_color = "#3c4049" - GtkTreeView::even_row_color = "#3c4049" + GtkTreeView::odd_row_color = @dark_sidebar_bg + GtkTreeView::even_row_color = @dark_sidebar_bg - base[NORMAL] = "#3c4049" - base[INSENSITIVE] = "#3c4049" + base[NORMAL] = @dark_sidebar_bg + base[INSENSITIVE] = @dark_sidebar_bg text[NORMAL] = "#a8adb5" text[ACTIVE] = @selected_fg_color diff --git a/common/gtk-2.0/assets-dark.svg b/common/gtk-2.0/assets-dark.svg new file mode 100644 index 0000000..dc02154 --- /dev/null +++ b/common/gtk-2.0/assets-dark.svg @@ -0,0 +1,5220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="507" + height="416" + id="svg9892" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="assets-dark.svg"> + <defs + id="defs9894"> + <linearGradient + inkscape:collect="always" + id="linearGradient4213"> + <stop + style="stop-color:#000000;stop-opacity:0.07" + offset="0" + id="stop4215" /> + <stop + id="stop4217" + offset="0.09090921" + style="stop-color:#000000;stop-opacity:0" /> + <stop + style="stop-color:#000000;stop-opacity:0" + offset="1" + id="stop4219" /> + </linearGradient> + <linearGradient + id="linearGradient9311" + inkscape:collect="always"> + <stop + id="stop9313" + offset="0" + style="stop-color:#000000;stop-opacity:0.224" /> + <stop + style="stop-color:#000000;stop-opacity:0.153" + offset="0.09090921" + id="stop9315" /> + <stop + id="stop9317" + offset="0.90909106" + style="stop-color:#000000;stop-opacity:0.153" /> + <stop + id="stop9319" + offset="1" + style="stop-color:#000000;stop-opacity:0.133" /> + </linearGradient> + <linearGradient + id="linearGradient5581-5-2-4-6-8-7-35-8"> + <stop + id="stop5583-0-92-8-0-7-6-5-1" + offset="0" + style="stop-color:#454c4c;stop-opacity:1;" /> + <stop + style="stop-color:#393f3f;stop-opacity:1;" + offset="0.40000001" + id="stop5585-4-7-2-7-9-9-92-0" /> + <stop + id="stop5587-6-7-2-0-3-1-21-5" + offset="1" + style="stop-color:#2d3232;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient5581-5-2-4-6-8-7-35-8-50"> + <stop + id="stop5583-0-92-8-0-7-6-5-1-0" + offset="0" + style="stop-color:#454c4c;stop-opacity:1;" /> + <stop + style="stop-color:#393f3f;stop-opacity:1;" + offset="0.40000001" + id="stop5585-4-7-2-7-9-9-92-0-55" /> + <stop + id="stop5587-6-7-2-0-3-1-21-5-0" + offset="1" + style="stop-color:#2d3232;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient3826"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3828" /> + <stop + style="stop-color:#000000;stop-opacity:0.36809817" + offset="1" + id="stop3830" /> + </linearGradient> + <filter + style="color-interpolation-filters:sRGB" + inkscape:label="Drop Shadow" + id="filter8890"> + <feFlood + flood-opacity="0.498039" + flood-color="rgb(0,0,0)" + result="flood" + id="feFlood8892" /> + <feComposite + in="flood" + in2="SourceGraphic" + operator="out" + result="composite1" + id="feComposite8894" /> + <feGaussianBlur + in="composite1" + stdDeviation="2" + result="blur" + id="feGaussianBlur8896" /> + <feOffset + dx="4.69069e-15" + dy="1" + result="offset" + id="feOffset8898" /> + <feComposite + in="offset" + in2="SourceGraphic" + operator="atop" + result="composite2" + id="feComposite8900" /> + </filter> + <mask + maskUnits="userSpaceOnUse" + id="mask8904"> + <rect + style="opacity:0.18000004;fill:#878787;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect8906" + width="32" + height="32.000008" + x="-96" + y="-0.99999738" + rx="3" + ry="3" /> + </mask> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4466"> + <rect + style="opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4468" + width="21" + height="25.999998" + x="-18" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4470"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4472" + width="21" + height="25.999998" + x="-52" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4480"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4482" + width="21" + height="25.999998" + x="-86" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4466-9"> + <rect + style="opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4468-0" + width="21" + height="25.999998" + x="-18" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4470-7"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4472-6" + width="21" + height="25.999998" + x="-52" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4480-0"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4482-5" + width="21" + height="25.999998" + x="-86" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4675"> + <rect + style="opacity:0.63999999;fill:#ff1616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4677" + width="21" + height="26" + x="2" + y="-280.63782" + rx="0" + ry="0" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4685"> + <rect + style="display:inline;opacity:0.63999999;fill:#ff1616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4687" + width="21" + height="26" + x="70" + y="-280.63782" + rx="0" + ry="0" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4213" + id="linearGradient5233" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(68,0.99996842)" + x1="9" + y1="-256.63782" + x2="9" + y2="-278.63782" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9311" + id="linearGradient5235" + gradientUnits="userSpaceOnUse" + x1="9" + y1="-256.63782" + x2="9" + y2="-278.63782" + gradientTransform="translate(68,-2.5873852e-6)" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4695"> + <rect + style="display:inline;opacity:0.63999999;fill:#ff1616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4697" + width="21" + height="26" + x="104" + y="-280.63782" + rx="0" + ry="0" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9311" + id="linearGradient5240" + gradientUnits="userSpaceOnUse" + x1="9" + y1="-256.63782" + x2="9" + y2="-278.63782" + gradientTransform="translate(102,535.27563)" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4466-1"> + <rect + style="opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4468-6" + width="21" + height="25.999998" + x="-18" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4470-6"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4472-5" + width="21" + height="25.999998" + x="-52" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4480-4"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4482-52" + width="21" + height="25.999998" + x="-86" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4466-9-0"> + <rect + style="opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4468-0-6" + width="21" + height="25.999998" + x="-18" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4470-7-0"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4472-6-3" + width="21" + height="25.999998" + x="-52" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4480-0-0"> + <rect + style="display:inline;opacity:0.55800003;fill:#ff1111;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4482-5-1" + width="21" + height="25.999998" + x="-86" + y="-280.63782" + transform="scale(-1,1)" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4675-4"> + <rect + style="opacity:0.63999999;fill:#ff1616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4677-6" + width="21" + height="26" + x="2" + y="-280.63782" + rx="0" + ry="0" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4685-4"> + <rect + style="display:inline;opacity:0.63999999;fill:#ff1616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4687-7" + width="21" + height="26" + x="70" + y="-280.63782" + rx="0" + ry="0" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4695-6"> + <rect + style="display:inline;opacity:0.63999999;fill:#ff1616;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4697-3" + width="21" + height="26" + x="104" + y="-280.63782" + rx="0" + ry="0" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4407"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4409" + width="10" + height="13.000003" + x="13" + y="-267.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4413"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4415" + width="10" + height="13" + x="13" + y="-280.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4407-2"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4409-7" + width="10" + height="13.000003" + x="13" + y="-267.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4413-2"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4415-8" + width="10" + height="13" + x="13" + y="-280.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4407-1"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4409-1" + width="10" + height="13.000003" + x="13" + y="-267.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4413-9"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4415-6" + width="10" + height="13" + x="13" + y="-280.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4407-2-4"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4409-7-6" + width="10" + height="13.000003" + x="13" + y="-267.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4413-2-6"> + <rect + style="opacity:0.57900002;fill:#66a1dc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4415-8-6" + width="10" + height="13" + x="13" + y="-280.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath6057"> + <rect + style="opacity:0.37700004;fill:#ff2121;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6059" + width="30" + height="30" + x="0" + y="1022.3622" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath6057-7"> + <rect + style="opacity:0.37700004;fill:#ff2121;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6059-0" + width="30" + height="30" + x="0" + y="1022.3622" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath6057-4"> + <rect + style="opacity:0.37700004;fill:#ff2121;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6059-1" + width="30" + height="30" + x="0" + y="1022.3622" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath6057-9"> + <rect + style="opacity:0.37700004;fill:#ff2121;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6059-04" + width="30" + height="30" + x="0" + y="1022.3622" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath6162"> + <rect + style="opacity:1;fill:#ad4242;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6164" + width="24" + height="32" + x="407" + y="111" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath5131"> + <rect + style="opacity:1;fill:#272a30;fill-opacity:1;stroke:none;stroke-width:1.29999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5133" + width="13" + height="24" + x="10" + y="-279.63782" /> + </clipPath> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath5158"> + <rect + style="opacity:1;fill:#272a30;fill-opacity:1;stroke:none;stroke-width:1.29999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5160" + width="13" + height="24" + x="31" + y="-279.63782" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2" + inkscape:cx="20.299098" + inkscape:cy="169.82621" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + showborder="false" + inkscape:window-width="1366" + inkscape:window-height="720" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-nodes="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-global="true" + showguides="false" + inkscape:guide-bbox="true" + inkscape:bbox-nodes="true" + inkscape:object-nodes="true" + inkscape:snap-bbox-midpoints="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid10919" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" + originx="7" + originy="-920" + color="#4e4eff" + opacity="0.1254902" + empcolor="#5252ff" + empopacity="0.25098039" /> + <sodipodi:guide + orientation="1,0" + position="378.875,-145.75" + id="guide8384" /> + </sodipodi:namedview> + <metadata + id="metadata9897"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="superbackdrop" + style="display:inline" + transform="translate(7,283.63782)" + sodipodi:insensitive="true"> + <rect + ry="0" + rx="0" + y="-132.36218" + x="-7" + height="416" + width="507" + id="rect18028" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#444852;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" + transform="scale(1,-1)" /> + </g> + <g + inkscape:label="assets" + inkscape:groupmode="layer" + id="layer1" + style="display:inline" + transform="translate(7,283.63782)"> + <g + inkscape:label="#g10801" + transform="matrix(1.9947791,0,0,1.9939719,354.38167,165.09433)" + id="sjhgfjsgf" /> + <g + id="button" + inkscape:label="#g9335"> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + <rect + y="-279.63782" + x="-3" + height="23.999998" + width="26" + id="rect9321" + style="opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="button-hover" + inkscape:label="#g9350"> + <rect + ry="1" + rx="1" + y="-278.63782" + x="33" + height="21.999998" + width="22" + id="rect7903-2" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-279.63782" + x="31" + height="24" + width="26" + id="rect9321-0" + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="button-insensitive" + inkscape:label="#g9365"> + <rect + ry="1" + rx="1" + y="-278.63782" + x="67" + height="21.999998" + width="22" + id="rect7903-6" + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="66.5" + height="23" + width="23" + id="rect7903-7-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-279.63782" + x="65" + height="23.999998" + width="26" + id="rect9321-09" + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="button-active" + inkscape:label="#g9380"> + <rect + ry="1.5" + rx="1.5" + y="-278.63782" + x="101" + height="21.999998" + width="22" + id="rect7903-21" + style="opacity:1;fill:#32353d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="-0.42353254" + inkscape:transform-center-x="-4.6588025" + y="256.13782" + x="100.5" + height="23" + width="23" + id="rect7903-7-22" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#282b30;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + transform="scale(1,-1)" /> + <rect + y="-279.63782" + x="99" + height="24.000002" + width="26" + id="rect9321-2" + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + transform="translate(214,-1319)" + id="menu-checkbox-unchecked" + inkscape:label="Ebene 1"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-49" + style="display:inline;opacity:1" + transform="translate(-19,1036.9872)"> + <g + id="sdsd-1" + inkscape:label="#g21853"> + <path + sodipodi:nodetypes="ssssssssssssssssss" + inkscape:connector-curvature="0" + id="rect21848-6" + d="m 20.857147,2.375005 c -1.028857,0 -1.857142,0.8282854 -1.857142,1.8571422 l 0,9.2857108 c 0,1.028857 0.828285,1.857142 1.857142,1.857142 l 9.285711,0 C 31.171715,15.375 32,14.546715 32,13.517858 L 32,4.2321472 C 32,3.2032904 31.171715,2.375005 30.142858,2.375005 Z M 21,3.375 l 9,0 c 0.514428,0 1,0.4855716 1,1 l 0,9 c 0,0.514428 -0.485588,1.004019 -1,1 L 20.857142,14.30357 C 20.34273,14.299552 20,13.889428 20,13.375 l 0,-9 c 0,-0.5144284 0.485572,-1 1,-1 z" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#cfd6e6;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-69"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-10" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-6" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-3" /> + </g> + </g> + <g + id="g5400-3"> + <rect + transform="translate(-2.0348579e-6,4.7858158e-6)" + rx="1" + y="33.375004" + x="20.000006" + height="10.987178" + width="10.999995" + id="rect5147-9-1-5-7-6-55" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="0.99999994" /> + </g> + </g> + </g> + </g> + </g> + <g + style="display:inline;opacity:0.55" + transform="translate(229,-1319)" + id="menu-checkbox-unchecked-insensitive" + inkscape:label="Ebene 1"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-2-0" + style="display:inline;opacity:1" + transform="translate(-19,1036.9872)"> + <g + id="sdsd-3-0" + inkscape:label="#g21853"> + <path + sodipodi:nodetypes="ssssssssssssssssss" + inkscape:connector-curvature="0" + id="rect21848-3-1" + d="m 20.857147,2.375005 c -1.028857,0 -1.857142,0.8282854 -1.857142,1.8571422 l 0,9.2857108 c 0,1.028857 0.828285,1.857142 1.857142,1.857142 l 9.285711,0 C 31.171715,15.375 32,14.546715 32,13.517858 L 32,4.2321472 C 32,3.2032904 31.171715,2.375005 30.142858,2.375005 Z M 21,3.375 l 9,0 c 0.514428,0 1,0.4855716 1,1 l 0,9 c 0,0.514428 -0.485588,1.004019 -1,1 L 20.857142,14.30357 C 20.34273,14.299552 20,13.889428 20,13.375 l 0,-9 c 0,-0.5144284 0.485572,-1 1,-1 z" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-1-9"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-0-0" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-0-1" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-5-9" /> + </g> + </g> + <g + id="g5400-0-5"> + <rect + transform="translate(-2.0348579e-6,4.7858158e-6)" + rx="1" + y="33.375004" + x="20.000006" + height="10.987178" + width="10.999995" + id="rect5147-9-1-5-7-6-0-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="0.99999994" /> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(208.37869,-282.08594)" + style="display:inline;opacity:1" + id="menu-checkbox-checked" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-8" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-9" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-83"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-9" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-42" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-4" /> + </g> + </g> + <g + id="g5400-6-55"> + <rect + rx="1.9999942" + y="32.448002" + x="18.621313" + height="12.999986" + width="12.999983" + id="rect5147-9-1-5-7-6-7-2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-1" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-7" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-6" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-3" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-31" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0.66666085" + rx="0.66666085" + y="1033.7155" + x="8.3534861" + height="1.9999826" + width="5" + id="rect3977-39-88" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + ry="0" + y="1027.7155" + x="11.353486" + height="7.9999828" + width="2" + id="rect3979-7-8" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-8" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(115,-267.00013)" + style="display:inline;opacity:1" + id="menu-radio-unchecked" + inkscape:label="#g10975"> + <path + inkscape:connector-curvature="0" + id="path10940-8" + d="m 99.000005,8.862187 c 0,3.589846 2.910155,6.499996 6.499995,6.499996 3.58985,0 6.5,-2.91015 6.5,-6.499996 0,-3.5898455 -2.91015,-6.4999958 -6.5,-6.4999958 -3.58984,0 -6.499995,2.9101503 -6.499995,6.4999958 z M 100,8.7764737 c 0,-3.0865694 2.41343,-5.4142875 5.5,-5.4142875 3.08657,0 5.5,2.4134314 5.5,5.5000008 0,3.08657 -2.41343,5.485712 -5.5,5.485712 -3.08657,0 -5.5,-2.484855 -5.5,-5.5714253 z" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:nodetypes="ssssssssss" /> + <g + id="g10964-19"> + <g + style="display:inline" + id="radio-unchecked2-82" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <g + id="g7025-16"> + <g + style="display:inline" + id="g5489-2-9-3-0" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-9"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-4" + width="23.088213" + height="22.722145" + x="55.817558" + y="130.69385" + rx="13.224191" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(128,-267.00012)" + style="display:inline;opacity:1" + id="menu-radio-checked" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-7" + style="display:inline"> + <g + id="g10964-6-9"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-1" + style="display:inline"> + <g + id="g7025-09-3"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-1" + style="display:inline"> + <g + id="g5428-8-1-7-5-7"> + <rect + rx="13.643032" + y="128.6282" + x="53.709679" + height="26.85346" + width="27.286064" + id="rect5147-9-1-7-2-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="13.42673" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="2.5" + y="6.362186" + x="122" + height="5" + width="5" + id="use15101-5-7-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2.5" /> + </g> + <g + transform="translate(223.99999,-282.00013)" + style="display:inline;opacity:0.55" + id="menu-checkbox-checked-insensitive" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-9-1" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-5-5" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-1-7"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-1-5" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-16-8" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-1-8" /> + </g> + </g> + <g + id="g5400-6-7-5"> + <rect + rx="1.9999943" + y="32.362202" + x="19.000011" + height="12.999986" + width="12.999984" + id="rect5147-9-1-5-7-6-7-1-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-4-6" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-97-3" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-3-9" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-07-7" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-3-4" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <path + style="opacity:1;fill:#32363d;fill-opacity:1;stroke:none" + d="m 11.63183,1027.2825 0,6.0104 -3.0052035,0 0,1.9888 3.0052035,0 2.010834,0.022 -0.0221,-2.0109 0.0221,-5.9883 -2.010834,-0.022 z" + id="rect3977-39-1-0" + inkscape:connector-curvature="0" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-1-58" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="matrix(0.92826431,0,0,0.92857155,153.39707,-265.90282)" + style="display:inline;opacity:0.55" + id="menu-radio-checked-insensitive" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-8-1" + style="display:inline"> + <g + id="g10964-6-4-9"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-6-2" + style="display:inline"> + <g + id="g7025-09-1-7"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-71-0" + style="display:inline"> + <g + id="g5428-8-1-7-5-8-1"> + <rect + rx="14.692498" + y="126.56255" + x="51.601727" + height="28.919104" + width="29.384996" + id="rect5147-9-1-7-2-0-6" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459552" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="2.6931982" + y="5.6698766" + x="121.30482" + height="5.3846149" + width="5.3863964" + id="use15101-5-7-2-3" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2.6923075" /> + </g> + <g + transform="translate(130,-267.00013)" + style="display:inline;opacity:0.55" + id="menu-radio-unchecked-insensitive" + inkscape:label="#g10975"> + <path + inkscape:connector-curvature="0" + id="path10940-4-9" + d="m 99.000005,8.862187 c 0,3.589846 2.910155,6.499996 6.499995,6.499996 3.58985,0 6.5,-2.91015 6.5,-6.499996 0,-3.5898455 -2.91015,-6.4999958 -6.5,-6.4999958 -3.58984,0 -6.499995,2.9101503 -6.499995,6.4999958 z M 100,8.7764737 c 0,-3.0865694 2.41343,-5.4142875 5.5,-5.4142875 3.08657,0 5.5,2.4134314 5.5,5.5000008 0,3.08657 -2.41343,5.485712 -5.5,5.485712 -3.08657,0 -5.5,-2.484855 -5.5,-5.5714253 z" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:nodetypes="ssssssssss" /> + <g + id="g10964-66-0"> + <g + style="display:inline" + id="radio-unchecked2-8-4" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <g + id="g7025-1-8"> + <g + style="display:inline" + id="g5489-2-9-3-9-2" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-6-8"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-5-3" + width="23.088213" + height="22.722145" + x="55.817558" + y="130.69385" + rx="13.224191" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(265,-282.00012)" + style="display:inline;opacity:1" + id="checkbox-unchecked" + inkscape:label="#g22047"> + <g + inkscape:label="#g21853" + id="sdsd-70-5"> + <path + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 20,1.375 c -1.108,0 -2,0.892 -2,2 l 0,10 c 0,1.108 0.892,2 2,2 l 10,0 c 1.108,0 2,-0.892 2,-2 l 0,-10 c 0,-1.108 -0.892,-2 -2,-2 l -10,0 z m 0,1 10,0 c 0.554,0 1,0.446 1,1 l 0,10 c 0,0.554 -0.446,1 -1,1 l -10,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-10 c 0,-0.554 0.446,-1 1,-1 z" + id="rect21848-4-4" + inkscape:connector-curvature="0" /> + <g + id="scdsdcd-6-0" + inkscape:label="#g14325" + transform="translate(0,-30)"> + <g + style="display:inline" + id="g15812-6-6-1-58-0" + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" + id="g5489-2-9-6-8-8-5-2" + style="display:inline"> + <g + id="g5428-8-1-4-0-0-6-8" /> + </g> + </g> + <rect + y="30.362183" + x="17" + height="16" + width="16" + id="rect13523-6" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g5400-00-1"> + <rect + ry="1" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-5-7-6-6-5" + width="12" + height="12" + x="19" + y="32.362183" + rx="1" /> + </g> + </g> + </g> + </g> + <g + transform="translate(278,-282.00013)" + style="display:inline;opacity:1" + id="checkbox-checked" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-0-4" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-4-1" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-8-1"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-5-7" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-4-4" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-9-2" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-0" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-5-4"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-9-2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-2-3" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-0-2" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-2-8" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-8-0" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-4-2" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0.66666085" + rx="0.66666085" + y="1033.3622" + x="8" + height="1.9999826" + width="5" + id="rect3977-39-8-0" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + ry="0" + y="1027.3622" + x="11" + height="7.9999828" + width="2" + id="rect3979-7-1-4" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-5-2" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(185.00426,-266.00013)" + style="display:inline;opacity:1" + id="radio-unchecked" + inkscape:label="#g10975"> + <path + inkscape:connector-curvature="0" + id="path10940-9-4" + d="m 98,8.3621828 c 0,3.8659902 3.13401,7.0000002 7,7.0000002 3.86599,0 7,-3.13401 7,-7.0000002 0,-3.86599 -3.13401,-7 -7,-7 -3.86599,0 -7,3.13401 -7,7 z m 1,0 c 0,-3.324 2.676,-6 6,-6 3.324,0 6,2.676 6,6 0,3.3240002 -2.676,6.0000002 -6,6.0000002 -3.324,0 -6,-2.676 -6,-6.0000002 z" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + id="g10964-1-7"> + <g + style="display:inline" + id="radio-unchecked2-6-6" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect14348-4-9" + width="17.090866" + height="17.100227" + x="206.99057" + y="261.97873" /> + <g + id="g7025-2-1"> + <g + style="display:inline" + id="g5489-2-9-3-6-6" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-3-0"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-9-4" + width="25.187147" + height="24.787813" + x="53.718624" + y="128.62817" + rx="13.224191" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(198,-266.00013)" + style="display:inline;opacity:1" + id="radio-checked" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-0-6" + style="display:inline"> + <g + id="g10964-6-5-7"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-7-2" + style="display:inline"> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-2-1"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-4-5" + style="display:inline"> + <g + id="g5428-8-1-7-5-2-1"> + <rect + rx="14.692495" + y="126.56255" + x="51.610752" + height="28.919107" + width="29.384991" + id="rect5147-9-1-7-2-3-9" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459554" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="1.9988754" + y="6.3621826" + x="122" + height="4" + width="4" + id="use15101-5-7-0-1" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2" /> + </g> + <g + transform="translate(281,-282.00012)" + style="display:inline;opacity:0.55" + id="checkbox-unchecked-insensitive" + inkscape:label="#g22047"> + <g + inkscape:label="#g21853" + id="sdsd-6-1"> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 20,1.375 c -1.108,0 -2,0.892 -2,2 l 0,10 c 0,1.108 0.892,2 2,2 l 10,0 c 1.108,0 2,-0.892 2,-2 l 0,-10 c 0,-1.108 -0.892,-2 -2,-2 l -10,0 z m 0,1 10,0 c 0.554,0 1,0.446 1,1 l 0,10 c 0,0.554 -0.446,1 -1,1 l -10,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-10 c 0,-0.554 0.446,-1 1,-1 z" + id="rect21848-8-5" /> + <g + id="scdsdcd-9-8" + inkscape:label="#g14325" + transform="translate(0,-30)"> + <g + style="display:inline" + id="g15812-6-6-1-1-4" + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" + id="g5489-2-9-6-8-8-7-8" + style="display:inline"> + <g + id="g5428-8-1-4-0-0-0-6" /> + </g> + </g> + <rect + y="30.362183" + x="17" + height="16" + width="16" + id="rect13523-9-4" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g5400-7-2"> + <rect + ry="1" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-5-7-6-5-8" + width="12" + height="12" + x="19" + y="32.362183" + rx="1" /> + </g> + </g> + </g> + </g> + <g + transform="translate(294,-282.00013)" + style="display:inline;opacity:0.55" + id="checkbox-checked-insensitive" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-9-0-4" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-5-4-3" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-1-0-5"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-1-7-1" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-16-3-9" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-1-2-7" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-6-5" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-7-8-7"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-1-7-7" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-4-0-9" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-97-4-3" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-3-6-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-07-3-8" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-3-0-5" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <path + style="opacity:1;fill:#32363d;fill-opacity:1;stroke:none" + d="m 47.28125,64.78125 -4.25,4.25 -2.125,-2.125 -1.40625,1.40625 2.125,2.125 1.40625,1.4375 1.40625,-1.4375 4.25,-4.21875 -1.40625,-1.4375 z" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,-68.244967,1014.9786)" + id="rect3977-39-1-5-5" + inkscape:connector-curvature="0" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-1-5-0" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(201.00426,-266.00013)" + style="display:inline;opacity:0.55" + id="radio-unchecked-insensitive" + inkscape:label="#g10975"> + <path + inkscape:connector-curvature="0" + id="path10940-0-7" + d="m 98,8.3621828 c 0,3.8659902 3.13401,7.0000002 7,7.0000002 3.86599,0 7,-3.13401 7,-7.0000002 0,-3.86599 -3.13401,-7 -7,-7 -3.86599,0 -7,3.13401 -7,7 z m 1,0 c 0,-3.324 2.676,-6 6,-6 3.324,0 6,2.676 6,6 0,3.3240002 -2.676,6.0000002 -6,6.0000002 -3.324,0 -6,-2.676 -6,-6.0000002 z" + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + id="g10964-62-9"> + <g + style="display:inline" + id="radio-unchecked2-8-1-4" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect14348-4-2-0" + width="17.090866" + height="17.100227" + x="206.99057" + y="261.97873" /> + <g + id="g7025-6-0"> + <g + style="display:inline" + id="g5489-2-9-3-77-9" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-58-8"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-5-2-6" + width="25.187147" + height="24.787813" + x="53.718624" + y="128.62817" + rx="13.224191" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(214,-266.00013)" + style="display:inline;opacity:0.55" + id="radio-checked-insensitive" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-8-9-6" + style="display:inline"> + <g + id="g10964-6-4-7-3"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-6-8-1" + style="display:inline"> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-9-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-1-6-4"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-71-7-7" + style="display:inline"> + <g + id="g5428-8-1-7-5-8-3-8"> + <rect + rx="14.692498" + y="126.56255" + x="51.601727" + height="28.919104" + width="29.384996" + id="rect5147-9-1-7-2-0-3-1" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459552" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="1.9988754" + y="6.3621826" + x="122" + height="4" + width="4" + id="use15101-5-7-2-2-1" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2" /> + </g> + <g + style="display:inline" + inkscape:label="#g10801" + transform="matrix(1.9947791,0,0,1.9939719,403.25667,278.01933)" + id="sjhgfjsgf-2" /> + <g + style="display:inline" + id="entry-border-bg-solid" + inkscape:label="#g9335" + transform="translate(-1,61.999998)"> + <rect + y="-279.63782" + x="-3" + height="24" + width="26" + id="rect9321-3" + style="opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="11" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-93" + style="opacity:1;fill:#383c45;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="10.999999" /> + <rect + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-31" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="11.5" /> + </g> + <g + style="display:inline" + id="entry-border-active-bg-solid" + inkscape:label="#g9350" + transform="translate(-1,61.999998)"> + <rect + y="-279.63782" + x="31" + height="23.999998" + width="26" + id="rect9321-0-2" + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="10.999999" + rx="11" + y="-278.63782" + x="33" + height="21.999998" + width="22" + id="rect7903-2-7" + style="opacity:1;fill:#383c45;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <rect + ry="11.5" + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-7" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="entry-border-disabled-bg" + inkscape:label="#g9365" + transform="translate(-1,61.999998)"> + <g + id="g4303"> + <rect + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-23" + width="26" + height="24" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-8" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="11" + ry="10.999999" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-7" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="11.5" + ry="11.5" /> + </g> + </g> + <g + transform="translate(-1,93.999999)" + style="display:inline" + id="notebook-entry-border-bg" + inkscape:label="#g9335"> + <path + style="opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 3 98 L 3 122 L 29 122 L 29 98 L 3 98 z M 16 99 C 22.094 99 27 103.906 27 110 C 27 116.094 22.094 121 16 121 C 9.906 121 5 116.094 5 110 C 5 103.906 9.906 99 16 99 z " + transform="translate(-6,-377.63782)" + id="rect9321-6" /> + <rect + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-1" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="11.5" /> + </g> + <g + transform="translate(-1,93.999999)" + style="display:inline" + id="notebook-entry-border-active-bg" + inkscape:label="#g9350"> + <path + style="display:inline;opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 37 98 L 37 122 L 63 122 L 63 98 L 37 98 z M 50 99 C 56.094 99 61 103.906 61 110 C 61 116.094 56.094 121 50 121 C 43.906 121 39 116.094 39 110 C 39 103.906 43.906 99 50 99 z " + transform="translate(-6,-377.63782)" + id="rect9321-0-0" /> + <rect + ry="11.5" + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-4" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="translate(-1,93.999999)" + style="display:inline" + id="notebook-entry-border-disabled-bg" + inkscape:label="#g9365"> + <g + id="g4303-7"> + <rect + style="display:inline;opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-2" + width="26" + height="23.999998" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-5" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="11" + ry="10.999999" /> + <rect + style="display:inline;opacity:0.55;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-3" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="11.5" + ry="11.5" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:#383c45;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="entry-border-fill" + width="5" + height="24.000002" + x="100.50003" + y="-246.88776" + inkscape:label="#rect4361" /> + <g + style="display:inline" + id="combo-entry" + inkscape:label="#g9335" + transform="translate(-1,169)" + clip-path="url(#clipPath4466)"> + <path + style="opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 3 173 L 3 197 L 29 197 L 29 173 L 3 173 z M 6 174 L 26 174 C 26.554 174 27 174.446 27 175 L 27 195 C 27 195.554 26.554 196 26 196 L 6 196 C 5.446 196 5 195.554 5 195 L 5 175 C 5 174.446 5.446 174 6 174 z " + transform="translate(-6,-452.63782)" + id="rect9321-4" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="combo-entry-focus" + inkscape:label="#g9350" + transform="translate(-10,169)" + clip-path="url(#clipPath4470)"> + <path + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 28 173 L 28 197 L 54 197 L 54 173 L 28 173 z M 31 174 L 51 174 C 51.554 174 52 174.446 52 175 L 52 195 C 52 195.554 51.554 196 51 196 L 31 196 C 30.446 196 30 195.554 30 195 L 30 175 C 30 174.446 30.446 174 31 174 z " + transform="translate(3,-452.63782)" + id="rect9321-0-5" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-1" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="combo-entry-insensitive" + inkscape:label="#g9365" + transform="translate(-19,169)" + clip-path="url(#clipPath4480)"> + <g + id="g4303-70"> + <rect + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-7" + width="26" + height="23.999998" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-7" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="1" + ry="1" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-0" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" + ry="2" /> + </g> + </g> + <g + style="display:inline" + id="combo-entry-notebook" + inkscape:label="#g9335" + clip-path="url(#clipPath4466-9)" + transform="translate(-1,199)"> + <path + style="opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 3 203 L 3 227 L 29 227 L 29 203 L 3 203 z M 6 204 L 26 204 C 26.554 204 27 204.446 27 205 L 27 225 C 27 225.554 26.554 226 26 226 L 6 226 C 5.446 226 5 225.554 5 225 L 5 205 C 5 204.446 5.446 204 6 204 z " + transform="translate(-6,-482.63782)" + id="rect9321-4-9" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-8-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="combo-entry-focus-notebook" + inkscape:label="#g9350" + clip-path="url(#clipPath4470-7)" + transform="translate(-10,199)"> + <path + style="display:inline;opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 28 203 L 28 227 L 54 227 L 54 203 L 28 203 z M 31 204 L 51 204 C 51.554 204 52 204.446 52 205 L 52 225 C 52 225.554 51.554 226 51 226 L 31 226 C 30.446 226 30 225.554 30 225 L 30 205 C 30 204.446 30.446 204 31 204 z " + transform="translate(3,-482.63782)" + id="rect9321-0-5-3" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-1-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="combo-entry-insensitive-notebook" + inkscape:label="#g9365" + clip-path="url(#clipPath4480-0)" + transform="translate(-19,199)"> + <g + id="g4303-70-8"> + <rect + style="display:inline;opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-7-4" + width="26" + height="23.999998" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-7-4" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="1" + ry="1" /> + <rect + style="display:inline;opacity:0.55;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-0-8" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" + ry="2" /> + </g> + </g> + <g + style="display:inline" + id="combo-entry-button" + transform="translate(13,140)" + inkscape:label="#g4701"> + <g + clip-path="url(#clipPath4675)" + transform="translate(-18,90.000001)" + inkscape:label="#g9335" + id="button-2" + style="display:inline"> + <rect + ry="1" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-9" + width="22" + height="21.999998" + x="-1" + y="-278.63782" + rx="1" /> + <rect + ry="2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-37" + width="23" + height="23" + x="-1.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" /> + <rect + style="opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-60" + width="26" + height="23.999996" + x="-3" + y="-279.63782" /> + </g> + <rect + y="-188.63782" + x="-16" + height="22" + width="1" + id="rect4699" + style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="combo-entry-button-insensitive" + transform="translate(-31,140)" + inkscape:label="#g4724"> + <g + clip-path="url(#clipPath4685)" + transform="translate(-18,90.000001)" + inkscape:label="#g9365" + id="button-insensitive-4" + style="display:inline"> + <rect + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-9" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="1" + ry="1" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-4" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" + ry="2" /> + <rect + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-09-5" + width="26" + height="23.999996" + x="65" + y="-279.63782" /> + </g> + <rect + style="display:inline;opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4699-1" + width="1" + height="22" + x="52" + y="-188.63782" /> + </g> + <g + style="display:inline" + id="combo-entry-button-active" + transform="translate(-41,140)" + inkscape:label="#g4738"> + <g + clip-path="url(#clipPath4695)" + transform="translate(-18,90.000001)" + inkscape:label="#g9380" + id="button-active-4" + style="display:inline"> + <rect + style="opacity:1;fill:#32353d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-21-8" + width="22" + height="21.999998" + x="101" + y="-278.63782" + rx="1" + ry="1" /> + <rect + transform="scale(1,-1)" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#282b30;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-22-4" + width="23" + height="23" + x="100.5" + y="256.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="-0.42353254" + rx="2" + ry="2" /> + <rect + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-0" + width="26" + height="23.999996" + x="99" + y="-279.63782" /> + </g> + <rect + style="display:inline;opacity:1;fill:#282b30;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4699-8" + width="1" + height="22" + x="86" + y="-188.63782" /> + </g> + <g + style="display:inline" + id="combo-entry-rtl" + inkscape:label="#g9335" + clip-path="url(#clipPath4466-1)" + transform="matrix(-1,0,0,1,146,169)"> + <path + style="opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 130 173 L 130 197 L 156 197 L 156 173 L 130 173 z M 133 174 L 153 174 C 153.554 174 154 174.446 154 175 L 154 195 C 154 195.554 153.554 196 153 196 L 133 196 C 132.446 196 132 195.554 132 195 L 132 175 C 132 174.446 132.446 174 133 174 z " + transform="matrix(-1,0,0,1,153,-452.63782)" + id="rect9321-4-5" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-8-76" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="combo-entry-focus-rtl" + inkscape:label="#g9350" + transform="matrix(-1,0,0,1,155,169)" + clip-path="url(#clipPath4470-6)"> + <path + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 105 173 L 105 197 L 131 197 L 131 173 L 105 173 z M 108 174 L 128 174 C 128.554 174 129 174.446 129 175 L 129 195 C 129 195.554 128.554 196 128 196 L 108 196 C 107.446 196 107 195.554 107 195 L 107 175 C 107 174.446 107.446 174 108 174 z " + transform="matrix(-1,0,0,1,162,-452.63782)" + id="rect9321-0-5-4" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-1-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="combo-entry-insensitive-rtl" + inkscape:label="#g9365" + transform="matrix(-1,0,0,1,164,169)" + clip-path="url(#clipPath4480-4)"> + <g + id="g4303-70-0"> + <rect + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-7-1" + width="26" + height="24" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-7-5" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="1" + ry="1" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-0-5" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" + ry="2" /> + </g> + </g> + <g + style="display:inline" + id="combo-entry-notebook-rtl" + inkscape:label="#g9335" + clip-path="url(#clipPath4466-9-0)" + transform="matrix(-1,0,0,1,146,199)"> + <path + style="opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 130 203 L 130 227 L 156 227 L 156 203 L 130 203 z M 133 204 L 153 204 C 153.554 204 154 204.446 154 205 L 154 225 C 154 225.554 153.554 226 153 226 L 133 226 C 132.446 226 132 225.554 132 225 L 132 205 C 132 204.446 132.446 204 133 204 z " + transform="matrix(-1,0,0,1,153,-482.63782)" + id="rect9321-4-9-9" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-8-9-1" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="combo-entry-focus-notebook-rtl" + inkscape:label="#g9350" + clip-path="url(#clipPath4470-7-0)" + transform="matrix(-1,0,0,1,155,199)"> + <path + style="display:inline;opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 105 203 L 105 227 L 131 227 L 131 203 L 105 203 z M 108 204 L 128 204 C 128.554 204 129 204.446 129 205 L 129 225 C 129 225.554 128.554 226 128 226 L 108 226 C 107.446 226 107 225.554 107 225 L 107 205 C 107 204.446 107.446 204 108 204 z " + transform="matrix(-1,0,0,1,162,-482.63782)" + id="rect9321-0-5-3-7" /> + <rect + ry="2" + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-1-0-4" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="combo-entry-insensitive-notebook-rtl" + inkscape:label="#g9365" + clip-path="url(#clipPath4480-0-0)" + transform="matrix(-1,0,0,1,164,199)"> + <g + id="g4303-70-8-0"> + <rect + style="display:inline;opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-7-4-0" + width="26" + height="24" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-7-4-7" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="1" + ry="1" /> + <rect + style="display:inline;opacity:0.55;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-0-8-2" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" + ry="2" /> + </g> + </g> + <g + style="display:inline" + id="combo-entry-button-rtl" + transform="matrix(-1,0,0,1,130,140)" + inkscape:label="#g4701-4"> + <g + clip-path="url(#clipPath4675-4)" + transform="translate(-18,90.000001)" + inkscape:label="#g9335" + id="button-9" + style="display:inline"> + <rect + ry="1" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-9-9" + width="22" + height="21.999998" + x="-1" + y="-278.63782" + rx="1" /> + <rect + ry="2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-37-2" + width="23" + height="23" + x="-1.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" /> + <rect + style="opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-60-1" + width="26" + height="23.999996" + x="-3" + y="-279.63782" /> + </g> + <rect + y="-188.63782" + x="-16" + height="22" + width="1" + id="rect4699-86" + style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="combo-entry-button-insensitive-rtl" + transform="matrix(-1,0,0,1,174,140)" + inkscape:label="#g4724-2"> + <g + clip-path="url(#clipPath4685-4)" + transform="translate(-18,90.000001)" + inkscape:label="#g9365" + id="button-insensitive-7" + style="display:inline"> + <rect + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-9-6" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="1" + ry="1" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-4-9" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="2" + ry="2" /> + <rect + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-09-0" + width="26" + height="23.999996" + x="65" + y="-279.63782" /> + </g> + <rect + style="display:inline;opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4699-1-6" + width="1" + height="22" + x="52" + y="-188.63782" /> + </g> + <g + style="display:inline" + id="combo-entry-button-active-rtl" + transform="matrix(-1,0,0,1,184,140)" + inkscape:label="#g4738-7"> + <g + clip-path="url(#clipPath4695-6)" + transform="translate(-18,90.000001)" + inkscape:label="#g9380" + id="button-active-5" + style="display:inline"> + <rect + style="opacity:1;fill:#32353d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-21-5" + width="22" + height="21.999998" + x="101" + y="-278.63782" + rx="1.5" + ry="1.5" /> + <rect + transform="scale(1,-1)" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#282b30;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-22-0" + width="23" + height="23" + x="100.5" + y="256.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="-0.42353254" + rx="2" + ry="2" /> + <rect + style="display:inline;opacity:0.13300003;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-0-2" + width="26" + height="23.999996" + x="99" + y="-279.63782" /> + </g> + <rect + style="display:inline;opacity:1;fill:#282b30;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4699-8-8" + width="1" + height="22" + x="86" + y="-188.63782" /> + </g> + <g + style="display:inline" + inkscape:label="#g10801" + transform="matrix(1.9947791,0,0,1.9939719,386.38167,456.84433)" + id="sjhgfjsgf-8" /> + <g + style="display:inline" + id="down-background" + inkscape:label="#g9335" + transform="translate(-17,278)" + clip-path="url(#clipPath4407)"> + <rect + y="-280.63782" + x="-3" + height="24.999998" + width="26" + id="rect9321-5" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-20" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-7" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="up-background" + inkscape:label="#g9335" + transform="translate(-17,277)" + clip-path="url(#clipPath4413)"> + <rect + y="-279.63782" + x="-3" + height="25" + width="26" + id="rect9321-7" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-71" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-3-05" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="down-background-disable" + inkscape:label="#g9335" + transform="translate(-1,278)" + clip-path="url(#clipPath4407-2)"> + <rect + y="-280.63782" + x="-3" + height="25" + width="26" + id="rect9321-8" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-61" + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-1-7" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="up-background-disable" + inkscape:label="#g9335" + transform="translate(-1,277)" + clip-path="url(#clipPath4413-2)"> + <rect + y="-279.63782" + x="-3" + height="24.999998" + width="26" + id="rect9321-7-0" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-71-1" + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-3-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="down-background-rtl" + inkscape:label="#g9335" + transform="matrix(-1,0,0,1,68,278)" + clip-path="url(#clipPath4407-1)"> + <rect + y="-280.63782" + x="-3" + height="25" + width="26" + id="rect9321-88" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-8" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-18" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="up-background-rtl" + inkscape:label="#g9335" + transform="matrix(-1,0,0,1,68,277)" + clip-path="url(#clipPath4413-9)"> + <rect + y="-279.63782" + x="-3" + height="24.999998" + width="26" + id="rect9321-7-8" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-71-2" + style="opacity:1;fill:#3d414b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="down-background-disable-rtl" + inkscape:label="#g9335" + transform="matrix(-1,0,0,1,52,278)" + clip-path="url(#clipPath4407-2-4)"> + <rect + y="-280.63782" + x="-3" + height="25" + width="26" + id="rect9321-8-6" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-61-9" + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-1-1" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + style="display:inline" + id="up-background-disable-rtl" + inkscape:label="#g9335" + transform="matrix(-1,0,0,1,52,277)" + clip-path="url(#clipPath4413-2-6)"> + <rect + y="-279.63782" + x="-3" + height="24.999998" + width="26" + id="rect9321-7-0-4" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="1" + y="-278.63782" + x="-1" + height="21.999998" + width="22" + id="rect7903-71-1-3" + style="opacity:1;fill:#40434e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + ry="1" /> + <rect + rx="2" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-3-9-4" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#373a42;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="2" /> + </g> + <g + id="arrow-down" + transform="matrix(0.74646448,0,0,0.80750136,-5.4626788,40.151617)" + style="fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="path8393" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + inkscape:connector-curvature="0" /> + <rect + y="-195.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8399" + height="1" /> + <rect + y="-184.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8403" + height="1" /> + </g> + </g> + <g + id="arrow-down-insens" + transform="matrix(0.74646448,0,0,0.80750136,5.5373212,40.151617)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-1"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-4" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-5" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-2" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-8" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-2" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-3"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 14.777344,290 a 0.74653913,0.80758211 0 0 0 -0.164063,0.0195 0.74653913,0.80758211 0 0 0 -0.0918,0.0254 c -0.03755,-0.0137 -0.07527,-0.0254 -0.117187,-0.0254 -0.206771,0 -0.375,0.18062 -0.375,0.4043 0,0.0377 0.01066,0.0709 0.01953,0.10547 a 0.74653913,0.80758211 0 0 0 0.191406,0.8789 l 3.732422,4.03711 0.53711,0.55469 0.535156,-0.55469 3.732422,-4.03711 a 0.75875576,0.82079768 0 0 0 0.183594,-0.83984 c 0.01625,-0.0454 0.02734,-0.0928 0.02734,-0.14453 0,-0.22368 -0.166276,-0.4043 -0.373047,-0.4043 -0.04826,0 -0.09446,0.0114 -0.136718,0.0293 a 0.75875576,0.82079768 0 0 0 -0.773438,0.19726 l -3.195312,3.45703 -3.197266,-3.45703 A 0.74653913,0.80758211 0 0 0 14.777344,290 Z" + transform="matrix(1.3396485,0,0,1.238388,164.2046,391.8434)" + id="path8393-9" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-down-prelight" + transform="matrix(0.7464645,0,0,0.80750136,16.537321,40.151617)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-7"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-6" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-5" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-3" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-6" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-8"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7cacf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 25.777344,290 a 0.74653915,0.80758211 0 0 0 -0.164063,0.0195 0.74653915,0.80758211 0 0 0 -0.0918,0.0254 c -0.03755,-0.0137 -0.07527,-0.0254 -0.117187,-0.0254 -0.206771,0 -0.375,0.18062 -0.375,0.4043 0,0.0377 0.01066,0.0709 0.01953,0.10547 a 0.74653915,0.80758211 0 0 0 0.191406,0.8789 l 3.732422,4.03711 0.53711,0.55469 0.535156,-0.55469 3.732422,-4.03711 a 0.75875578,0.82079768 0 0 0 0.183594,-0.83984 c 0.01625,-0.0454 0.02734,-0.0928 0.02734,-0.14453 0,-0.22368 -0.166276,-0.4043 -0.373047,-0.4043 -0.04825,0 -0.09446,0.0114 -0.136718,0.0293 a 0.75875578,0.82079768 0 0 0 -0.773438,0.19726 l -3.195312,3.45703 -3.197266,-3.45703 A 0.74653915,0.80758211 0 0 0 25.777344,290 Z" + transform="matrix(1.3396484,0,0,1.238388,149.46846,391.8434)" + id="path8393-0" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-left" + transform="matrix(0,0.74646448,-0.80750136,0,6.2105624,49.8995)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-9"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-0" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-14" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-2"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="path8393-09" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + inkscape:connector-curvature="0" /> + <rect + y="-195.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8399-37" + height="1" /> + <rect + y="-184.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8403-7" + height="1" /> + </g> + </g> + <g + id="arrow-left-insens" + transform="matrix(0,0.74646448,-0.80750136,0,17.210562,49.8995)" + style="display:inline;opacity:0.99999999;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-9-2"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-0-5" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0-7" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80-7" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8-4" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2-5" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0-8" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-14-7" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-2-6"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 20.179688,298 a 0.80758211,0.74653913 0 0 0 -0.587891,0.24023 L 15.554688,301.97266 15,302.50977 l 0.554688,0.53515 4.037109,3.73242 a 0.82079768,0.75875576 0 0 0 0.839844,0.1836 c 0.04538,0.0163 0.09279,0.0273 0.144531,0.0273 0.223678,0 0.404297,-0.16627 0.404297,-0.37305 0,-0.0482 -0.01142,-0.0944 -0.0293,-0.13671 a 0.82079768,0.75875576 0 0 0 -0.197266,-0.77344 l -3.457031,-3.19531 3.457031,-3.19727 a 0.80758211,0.74653913 0 0 0 0.226563,-0.69922 0.80758211,0.74653913 0 0 0 -0.02539,-0.0918 c 0.01366,-0.0376 0.02539,-0.0753 0.02539,-0.11718 0,-0.20677 -0.180619,-0.375 -0.404297,-0.375 -0.03773,0 -0.07088,0.0107 -0.105469,0.0195 A 0.80758211,0.74653913 0 0 0 20.179688,298 Z" + transform="matrix(0,-1.238388,1.3396485,0,-216.25557,776.98207)" + id="path8393-09-9" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-left-prelight" + transform="matrix(0,0.74646448,-0.80750136,0,28.210562,49.8995)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="#g4159-9-2-8"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="status" + id="layer9-0-5-2" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55-1-8" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0-7-5" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80-7-5" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8-4-6" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2-5-5" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0-8-3" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="categories" + id="g4953-14-7-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="actions" + id="layer12-2-6-7"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7cacf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 31.179688,298 a 0.80758211,0.74653913 0 0 0 -0.587891,0.24023 L 26.554688,301.97266 26,302.50977 l 0.554688,0.53515 4.037109,3.73242 a 0.82079768,0.75875576 0 0 0 0.839844,0.1836 c 0.04538,0.0163 0.09279,0.0273 0.144531,0.0273 0.223678,0 0.404297,-0.16627 0.404297,-0.37305 0,-0.0482 -0.01142,-0.0944 -0.0293,-0.13671 a 0.82079768,0.75875576 0 0 0 -0.197266,-0.77344 l -3.457031,-3.19531 3.457031,-3.19727 a 0.80758211,0.74653913 0 0 0 0.226563,-0.69922 0.80758211,0.74653913 0 0 0 -0.02539,-0.0918 c 0.01366,-0.0376 0.02539,-0.0753 0.02539,-0.11718 0,-0.20677 -0.180619,-0.375 -0.404297,-0.375 -0.03773,0 -0.07088,0.0107 -0.105469,0.0195 A 0.80758211,0.74653913 0 0 0 31.179688,298 Z" + transform="matrix(0,-1.238388,1.3396485,0,-216.25557,790.60434)" + id="path8393-09-9-4" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-right-prelight" + transform="matrix(0,0.74646448,0.80750136,0,15.789437,60.8995)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="#g4159-9-7"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="status" + id="layer9-0-1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55-5" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0-0" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80-76" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8-1" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2-4" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="categories" + id="g4953-14-3" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="actions" + id="layer12-2-1"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7cacf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 26.820312,309 a 0.80758211,0.74653913 0 0 0 -0.291015,0.0488 c -0.03459,-0.009 -0.06774,-0.0195 -0.105469,-0.0195 -0.223678,0 -0.404297,0.16823 -0.404297,0.375 0,0.0419 0.01173,0.0796 0.02539,0.11718 a 0.80758211,0.74653913 0 0 0 -0.02539,0.0918 0.80758211,0.74653913 0 0 0 0.226563,0.69922 l 3.457031,3.19727 -3.457031,3.19531 a 0.82079768,0.75875576 0 0 0 -0.197266,0.77344 c -0.01788,0.0423 -0.0293,0.0885 -0.0293,0.13671 0,0.20678 0.180619,0.37305 0.404297,0.37305 0.05174,0 0.09915,-0.0111 0.144531,-0.0273 a 0.82079768,0.75875576 0 0 0 0.839844,-0.1836 L 31.445312,314.04492 32,313.50977 31.445312,312.97266 27.408203,309.24023 A 0.80758211,0.74653913 0 0 0 26.820312,309 Z" + transform="matrix(0,1.238388,1.3396485,0,-230.9917,718.77783)" + id="path8393-09-3" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-right-insens" + transform="matrix(0,0.74646448,0.80750136,0,4.7894382,60.8995)" + style="display:inline;opacity:0.99999999;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-9-2-4"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-0-5-0" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55-1-3" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0-7-8" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80-7-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8-4-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2-5-8" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0-8-5" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-14-7-2" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-2-6-6"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 15.820312,309 a 0.80758211,0.74653913 0 0 0 -0.291015,0.0488 c -0.03459,-0.009 -0.06774,-0.0195 -0.105469,-0.0195 -0.223678,0 -0.404297,0.16823 -0.404297,0.375 0,0.0419 0.01173,0.0796 0.02539,0.11718 a 0.80758211,0.74653913 0 0 0 -0.02539,0.0918 0.80758211,0.74653913 0 0 0 0.226563,0.69922 l 3.457031,3.19727 -3.457031,3.19531 a 0.82079768,0.75875576 0 0 0 -0.197266,0.77344 c -0.01788,0.0423 -0.0293,0.0885 -0.0293,0.13671 0,0.20678 0.180619,0.37305 0.404297,0.37305 0.05174,0 0.09915,-0.0111 0.144531,-0.0273 a 0.82079768,0.75875576 0 0 0 0.839844,-0.1836 L 20.445312,314.04492 21,313.50977 20.445312,312.97266 16.408203,309.24023 A 0.80758211,0.74653913 0 0 0 15.820312,309 Z" + transform="matrix(0,1.238388,1.3396485,0,-230.9917,732.4001)" + id="path8393-09-9-8" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-right" + transform="matrix(0,0.74646448,0.80750136,0,-6.2105618,60.8995)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-9-2-8-4"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-0-5-2-9" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55-1-8-9" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0-7-5-8" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80-7-5-9" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8-4-6-0" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2-5-5-5" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0-8-3-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-14-7-9-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-2-6-7-1"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="path8393-09-9-4-3" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + inkscape:connector-curvature="0" /> + <rect + y="-195.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8399-37-0-5-5" + height="1" /> + <rect + y="-184.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8403-7-0-1-2" + height="1" /> + </g> + </g> + <g + id="arrow-up" + transform="matrix(0.74646448,0,0,-0.80750136,-5.4626788,82.572742)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-6"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-66" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-8" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-2" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-15" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-3" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-26" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-10" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-80"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="path8393-05" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + inkscape:connector-curvature="0" /> + <rect + y="-195.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8399-7" + height="1" /> + <rect + y="-184.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.3396484" + rx="1.2383881" + id="rect8403-47" + height="1" /> + </g> + </g> + <g + id="arrow-up-insens" + transform="matrix(0.74646448,0,0,-0.80750136,5.537321,82.572742)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="#g4159-1-8"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="status" + id="layer9-4-4" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-5-6" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-2-0" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-8-1" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-1-7" + style="fill:#5c616c;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emblems" + id="layer15-1-1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="emotes" + id="g71291-2-4" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="categories" + id="g4953-9-0" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-6"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 18.509766,320 -0.53711,0.55469 -3.732422,4.03711 a 0.74653913,0.80758211 0 0 0 -0.191406,0.8789 c -0.0089,0.0346 -0.01953,0.0677 -0.01953,0.10547 0,0.22368 0.168229,0.4043 0.375,0.4043 0.04192,0 0.07963,-0.0117 0.117187,-0.0254 a 0.74653913,0.80758211 0 0 0 0.0918,0.0254 0.74653913,0.80758211 0 0 0 0.699219,-0.22656 l 3.197266,-3.45703 3.195312,3.45703 a 0.75875576,0.82079768 0 0 0 0.773438,0.19726 c 0.04226,0.0179 0.08846,0.0293 0.136718,0.0293 0.206771,0 0.373047,-0.18062 0.373047,-0.4043 0,-0.0517 -0.01109,-0.0991 -0.02734,-0.14453 A 0.75875576,0.82079768 0 0 0 22.777344,324.5918 L 19.044922,320.55469 18.509766,320 Z" + transform="matrix(1.3396485,0,0,-1.238388,164.2046,1154.6904)" + id="path8393-9-7" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-up-prelight" + transform="matrix(0.7464645,0,0,-0.80750136,16.537321,82.572742)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="#g4159-7-3"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="status" + id="layer9-6-7" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-1-6" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-5-7" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-1-0" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-3-1" + style="fill:#5294e2;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="emblems" + id="layer15-6-0" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="emotes" + id="g71291-9-2" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="categories" + id="g4953-1-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5294e2;fill-opacity:1" + inkscape:label="actions" + id="layer12-8-4"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7cacf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 29.509766,320 -0.53711,0.55469 -3.732422,4.03711 a 0.74653915,0.80758211 0 0 0 -0.191406,0.8789 c -0.0089,0.0346 -0.01953,0.0677 -0.01953,0.10547 0,0.22368 0.168229,0.4043 0.375,0.4043 0.04192,0 0.07963,-0.0117 0.117187,-0.0254 a 0.74653915,0.80758211 0 0 0 0.0918,0.0254 0.74653915,0.80758211 0 0 0 0.699219,-0.22656 l 3.197266,-3.45703 3.195312,3.45703 a 0.75875578,0.82079768 0 0 0 0.773438,0.19726 c 0.04226,0.0179 0.08846,0.0293 0.136718,0.0293 0.206771,0 0.373047,-0.18062 0.373047,-0.4043 0,-0.0517 -0.01109,-0.0991 -0.02734,-0.14453 A 0.75875578,0.82079768 0 0 0 33.777344,324.5918 L 30.044922,320.55469 29.509766,320 Z" + transform="matrix(1.3396484,0,0,-1.238388,149.46846,1154.6904)" + id="path8393-0-4" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="arrow-down-small" + transform="translate(33,43.362179)" + inkscape:label="#g4172"> + <rect + y="0" + x="0" + height="6" + width="9" + id="rect4170" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + style="display:inline;fill:#000000;fill-opacity:1" + transform="matrix(0.58058349,0,0,0.6729178,-0.13763907,-1.6754687)" + id="g4159-1-4"> + <g + id="layer9-4-6" + inkscape:label="status" + style="display:inline;fill:#000000;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer10-5-1" + inkscape:label="devices" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer11-2-1" + inkscape:label="apps" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer13-8-3" + inkscape:label="places" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer14-1-2" + inkscape:label="mimetypes" + transform="translate(-181.0002,-747)" /> + <g + id="layer15-1-7" + inkscape:label="emblems" + style="display:inline;fill:#000000;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g71291-2-1" + inkscape:label="emotes" + style="display:inline;fill:#000000;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g4953-9-2" + inkscape:label="categories" + style="display:inline;fill:#000000;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="layer12-3-9" + inkscape:label="actions" + style="display:inline;fill:#000000;fill-opacity:1" + transform="translate(-181.0002,-747)"> + <path + inkscape:connector-curvature="0" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + id="path8393-9-9" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <rect + height="1" + id="rect8399-5-4" + rx="1.4860656" + ry="1.7224051" + style="fill:#9398a2;fill-opacity:1;stroke:none" + transform="matrix(0,-1,-1,0,0,0)" + width="1" + x="-752" + y="-195.0002" /> + <rect + height="1" + id="rect8403-8-3" + rx="1.4860656" + ry="1.7224051" + style="fill:#9398a2;fill-opacity:1;stroke:none" + transform="matrix(0,-1,-1,0,0,0)" + width="1" + x="-752" + y="-184.0002" /> + </g> + </g> + </g> + <g + style="display:inline" + id="arrow-down-small-insens" + transform="translate(43,43.362179)" + inkscape:label="#g4172-9"> + <rect + y="0" + x="0" + height="6" + width="9" + id="rect4170-0" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="matrix(0.58058349,0,0,0.6729178,-0.13763907,-1.6754687)" + id="g4159-1-4-0"> + <g + id="layer9-4-6-8" + inkscape:label="status" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer10-5-1-7" + inkscape:label="devices" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer11-2-1-5" + inkscape:label="apps" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer13-8-3-5" + inkscape:label="places" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer14-1-2-3" + inkscape:label="mimetypes" + transform="translate(-181.0002,-747)" /> + <g + id="layer15-1-7-3" + inkscape:label="emblems" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g71291-2-1-5" + inkscape:label="emotes" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g4953-9-2-6" + inkscape:label="categories" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="layer12-3-9-5" + inkscape:label="actions" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 51.605469,291 a 0.58064155,0.67298509 0 0 0 -0.128907,0.0156 0.58064155,0.67298509 0 0 0 -0.07227,0.0215 c -0.02864,-0.0109 -0.05797,-0.0215 -0.08984,-0.0215 -0.160822,0 -0.291016,0.1515 -0.291015,0.3379 0,0.0245 0.01721,0.0395 0.02148,0.0625 a 0.58064155,0.67298509 0 0 0 0.142578,0.75586 l 2.902344,3.36523 0.417968,0.46289 0.416016,-0.46289 2.902344,-3.36523 a 0.59014338,0.68399806 0 0 0 0.132812,-0.73047 c 0.0083,-0.0314 0.03125,-0.0532 0.03125,-0.0879 0,-0.1864 -0.12824,-0.3379 -0.289062,-0.3379 -0.03743,0 -0.07267,0.0106 -0.105469,0.0254 a 0.59014338,0.68399806 0 0 0 -0.603515,0.16406 l -2.484376,2.88086 -2.486328,-2.88086 A 0.58064155,0.67298509 0 0 0 51.605469,291 Z" + transform="matrix(1.7224052,0,0,1.4860656,95.117012,318.53083)" + id="path8393-9-9-9" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + style="display:inline" + id="arrow-down-small-prelight" + transform="translate(53,43.362179)" + inkscape:label="#g4172-6"> + <rect + y="0" + x="0" + height="6" + width="9" + id="rect4170-6" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="matrix(0.58058349,0,0,0.6729178,-0.13763907,-1.6754687)" + id="g4159-1-4-3"> + <g + id="layer9-4-6-2" + inkscape:label="status" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer10-5-1-4" + inkscape:label="devices" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer11-2-1-7" + inkscape:label="apps" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer13-8-3-3" + inkscape:label="places" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer14-1-2-0" + inkscape:label="mimetypes" + transform="translate(-181.0002,-747)" /> + <g + id="layer15-1-7-9" + inkscape:label="emblems" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g71291-2-1-1" + inkscape:label="emotes" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g4953-9-2-1" + inkscape:label="categories" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="layer12-3-9-1" + inkscape:label="actions" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7cacf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 61.605469,291 a 0.58064155,0.67298509 0 0 0 -0.128907,0.0156 0.58064155,0.67298509 0 0 0 -0.07227,0.0215 c -0.02864,-0.0109 -0.05797,-0.0215 -0.08984,-0.0215 -0.160822,0 -0.291016,0.1515 -0.291015,0.3379 0,0.0245 0.01721,0.0395 0.02148,0.0625 a 0.58064155,0.67298509 0 0 0 0.142578,0.75586 l 2.902344,3.36523 0.417968,0.46289 0.416016,-0.46289 2.902344,-3.36523 a 0.59014338,0.68399806 0 0 0 0.132812,-0.73047 c 0.0083,-0.0314 0.03125,-0.0532 0.03125,-0.0879 0,-0.1864 -0.12824,-0.3379 -0.289062,-0.3379 -0.03743,0 -0.07267,0.0106 -0.105469,0.0254 a 0.59014338,0.68399806 0 0 0 -0.603515,0.16406 l -2.484376,2.88086 -2.486328,-2.88086 A 0.58064155,0.67298509 0 0 0 61.605469,291 Z" + transform="matrix(1.7224052,0,0,1.4860656,77.892961,318.53083)" + id="path8393-9-9-0" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + style="display:inline" + id="arrow-up-small" + transform="matrix(1,0,0,-1,33,57.362179)" + inkscape:label="#g4172-5"> + <rect + y="0" + x="0" + height="6" + width="9" + id="rect4170-4" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="matrix(0.58058349,0,0,0.6729178,-0.13763907,-1.6754687)" + id="g4159-1-4-06"> + <g + id="layer9-4-6-4" + inkscape:label="status" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer10-5-1-71" + inkscape:label="devices" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer11-2-1-9" + inkscape:label="apps" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer13-8-3-0" + inkscape:label="places" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer14-1-2-6" + inkscape:label="mimetypes" + transform="translate(-181.0002,-747)" /> + <g + id="layer15-1-7-6" + inkscape:label="emblems" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g71291-2-1-8" + inkscape:label="emotes" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g4953-9-2-2" + inkscape:label="categories" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="layer12-3-9-7" + inkscape:label="actions" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)"> + <path + inkscape:connector-curvature="0" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + id="path8393-9-9-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <rect + height="1" + id="rect8399-5-4-1" + rx="1.4860656" + ry="1.7224051" + style="fill:#9398a2;fill-opacity:1;stroke:none" + transform="matrix(0,-1,-1,0,0,0)" + width="1" + x="-752" + y="-195.0002" /> + <rect + height="1" + id="rect8403-8-3-3" + rx="1.4860656" + ry="1.7224051" + style="fill:#9398a2;fill-opacity:1;stroke:none" + transform="matrix(0,-1,-1,0,0,0)" + width="1" + x="-752" + y="-184.0002" /> + </g> + </g> + </g> + <g + style="display:inline" + id="arrow-up-small-insens" + transform="matrix(1,0,0,-1,43,57.362179)" + inkscape:label="#g4172-9-3"> + <rect + y="0" + x="0" + height="6" + width="9" + id="rect4170-0-7" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="matrix(0.58058349,0,0,0.6729178,-0.13763907,-1.6754687)" + id="g4159-1-4-0-6"> + <g + id="layer9-4-6-8-9" + inkscape:label="status" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer10-5-1-7-4" + inkscape:label="devices" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer11-2-1-5-1" + inkscape:label="apps" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer13-8-3-5-9" + inkscape:label="places" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer14-1-2-3-5" + inkscape:label="mimetypes" + transform="translate(-181.0002,-747)" /> + <g + id="layer15-1-7-3-4" + inkscape:label="emblems" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g71291-2-1-5-3" + inkscape:label="emotes" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g4953-9-2-6-8" + inkscape:label="categories" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="layer12-3-9-5-4" + inkscape:label="actions" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 54.507812,298 -0.417968,0.46289 -2.902344,3.36523 a 0.58064155,0.67298509 0 0 0 -0.142578,0.75586 c -0.0043,0.023 -0.02148,0.038 -0.02148,0.0625 -1e-6,0.1864 0.130193,0.3379 0.291015,0.3379 0.03187,0 0.0612,-0.0106 0.08984,-0.0215 a 0.58064155,0.67298509 0 0 0 0.07227,0.0215 0.58064155,0.67298509 0 0 0 0.544922,-0.18946 l 2.486328,-2.88086 2.484376,2.88086 a 0.59014338,0.68399806 0 0 0 0.603515,0.16406 c 0.0328,0.0148 0.06804,0.0254 0.105469,0.0254 0.160822,0 0.289062,-0.1515 0.289062,-0.3379 0,-0.0347 -0.02293,-0.0565 -0.03125,-0.0879 a 0.59014338,0.68399806 0 0 0 -0.132812,-0.73047 L 54.923828,298.46289 54.507812,298 Z" + transform="matrix(1.7224052,0,0,-1.4860656,95.117012,1201.2538)" + id="path8393-9-9-9-7" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + style="display:inline" + id="arrow-up-small-prelight" + transform="matrix(1,0,0,-1,53,57.362179)" + inkscape:label="#g4172-6-1"> + <rect + y="0" + x="0" + height="6" + width="9" + id="rect4170-6-6" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <g + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="matrix(0.58058349,0,0,0.6729178,-0.13763907,-1.6754687)" + id="g4159-1-4-3-8"> + <g + id="layer9-4-6-2-5" + inkscape:label="status" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer10-5-1-4-3" + inkscape:label="devices" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer11-2-1-7-9" + inkscape:label="apps" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer13-8-3-3-6" + inkscape:label="places" + transform="translate(-181.0002,-747)" /> + <g + style="fill:#5c616c;fill-opacity:1" + id="layer14-1-2-0-5" + inkscape:label="mimetypes" + transform="translate(-181.0002,-747)" /> + <g + id="layer15-1-7-9-6" + inkscape:label="emblems" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g71291-2-1-1-4" + inkscape:label="emotes" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="g4953-9-2-1-5" + inkscape:label="categories" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)" /> + <g + id="layer12-3-9-1-0" + inkscape:label="actions" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="translate(-181.0002,-747)"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7cacf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + d="m 64.507812,298 -0.417968,0.46289 -2.902344,3.36523 a 0.58064155,0.67298509 0 0 0 -0.142578,0.75586 c -0.0043,0.023 -0.02148,0.038 -0.02148,0.0625 -1e-6,0.1864 0.130193,0.3379 0.291015,0.3379 0.03187,0 0.0612,-0.0106 0.08984,-0.0215 a 0.58064155,0.67298509 0 0 0 0.07227,0.0215 0.58064155,0.67298509 0 0 0 0.544922,-0.18946 l 2.486328,-2.88086 2.484376,2.88086 a 0.59014338,0.68399806 0 0 0 0.603515,0.16406 c 0.03279,0.0148 0.06804,0.0254 0.105469,0.0254 0.160822,0 0.289062,-0.1515 0.289062,-0.3379 0,-0.0347 -0.02293,-0.0565 -0.03125,-0.0879 a 0.59014338,0.68399806 0 0 0 -0.132812,-0.73047 L 64.923828,298.46289 64.507812,298 Z" + transform="matrix(1.7224052,0,0,-1.4860656,77.892961,1201.2538)" + id="path8393-9-9-0-4" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + id="menu-arrow" + transform="matrix(0,0.66352399,0.6729178,0,33.324531,62.06202)" + style="display:inline;fill:#000000;fill-opacity:1" + inkscape:label="#g4159-9-7-9"> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#000000;fill-opacity:1" + inkscape:label="status" + id="layer9-0-1-5" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="devices" + id="layer10-55-5-8" + style="fill:#000000;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="apps" + id="layer11-0-0-7" + style="fill:#000000;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="places" + id="layer13-80-76-4" + style="fill:#000000;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + inkscape:label="mimetypes" + id="layer14-8-1-4" + style="fill:#000000;fill-opacity:1" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#000000;fill-opacity:1" + inkscape:label="emblems" + id="layer15-2-4-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#000000;fill-opacity:1" + inkscape:label="emotes" + id="g71291-0-9-6" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#000000;fill-opacity:1" + inkscape:label="categories" + id="g4953-14-3-9" /> + <g + transform="translate(-181.0002,-747)" + style="display:inline;fill:#5c616c;fill-opacity:1" + inkscape:label="actions" + id="layer12-2-1-3"> + <path + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="path8393-09-3-1" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + inkscape:connector-curvature="0" /> + <rect + y="-195.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.607578" + rx="1.3931866" + id="rect8399-37-2-8" + height="1" /> + <rect + y="-184.0002" + x="-752" + width="1" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#9398a2;fill-opacity:1;stroke:none" + ry="1.607578" + rx="1.3931866" + id="rect8403-7-3-0" + height="1" /> + </g> + </g> + <g + id="layer9-0-1-5-6" + inkscape:label="status" + style="display:inline;fill:#000000;fill-opacity:1" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer10-55-5-8-2" + inkscape:label="devices" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer11-0-0-7-4" + inkscape:label="apps" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer13-80-76-4-4" + inkscape:label="places" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + style="fill:#000000;fill-opacity:1" + id="layer14-8-1-4-2" + inkscape:label="mimetypes" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + id="layer15-2-4-9-1" + inkscape:label="emblems" + style="display:inline;fill:#000000;fill-opacity:1" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + id="g71291-0-9-6-9" + inkscape:label="emotes" + style="display:inline;fill:#000000;fill-opacity:1" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + id="g4953-14-3-9-1" + inkscape:label="categories" + style="display:inline;fill:#000000;fill-opacity:1" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-95.035954)" /> + <g + id="menu-arrow-prelight" + inkscape:label="actions" + style="display:inline;fill:#5c616c;fill-opacity:1" + transform="matrix(0,0.66352399,0.6729178,0,-461.34507,-58.035955)"> + <path + inkscape:connector-curvature="0" + d="m 183.78125,751 a 1.0001,1.0001 0 0 0 -0.5,1.71875 l 5,5 0.71875,0.6875 0.71875,-0.6875 5,-5 a 1.016466,1.016466 0 1 0 -1.4375,-1.4375 L 189,755.5625 184.71875,751.28125 A 1.0001,1.0001 0 0 0 183.78125,751 Z" + id="path8393-09-3-1-4" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#9398a2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <rect + height="1" + id="rect8399-37-2-8-9" + rx="1.3931866" + ry="1.607578" + style="fill:#9398a2;fill-opacity:1;stroke:none" + transform="matrix(0,-1,-1,0,0,0)" + width="1" + x="-752" + y="-195.0002" /> + <rect + height="1" + id="rect8403-7-3-0-4" + rx="1.3931866" + ry="1.607578" + style="fill:#9398a2;fill-opacity:1;stroke:none" + transform="matrix(0,-1,-1,0,0,0)" + width="1" + x="-752" + y="-184.0002" /> + </g> + <g + id="minus" + transform="translate(-205,-108)" + inkscape:label="#g5704"> + <rect + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5642" + width="11" + height="11" + x="448.00006" + y="-101.63781" + rx="2.2084" + ry="2.59585" /> + <rect + style="opacity:1;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5646" + width="9" + height="9" + x="449.00003" + y="-100.63782" + rx="0.99997658" + ry="1.0000023" /> + <rect + ry="1" + rx="1" + y="-96.637817" + x="451" + height="1" + width="5" + id="rect5648" + style="opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="plus" + transform="translate(-205,-108)" + inkscape:label="#g5698"> + <rect + style="opacity:1;fill:#26282d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5640" + width="11" + height="11" + x="434.00003" + y="-101.63781" + rx="1.48607" + ry="1.72241" /> + <rect + style="opacity:1;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5644" + width="9" + height="9" + x="435" + y="-100.63782" + rx="0.99996775" + ry="1.0000023" /> + <rect + ry="1" + rx="1" + y="-96.637817" + x="437" + height="1" + width="5" + id="rect5648-1" + style="display:inline;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + ry="1" + rx="1" + y="-440" + x="-98.637817" + height="1" + width="5" + id="rect5648-1-9" + style="display:inline;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="menuitem" + transform="translate(-7,1.9999974)" + inkscape:label="#g5794"> + <rect + rx="0" + ry="0" + y="-154.63782" + x="233" + height="25" + width="15" + id="rect5775" + style="opacity:1;fill:#41454e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-154.63782" + x="233" + height="1" + width="15" + id="rect5777" + style="opacity:1;fill:#454951;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-130.63782" + x="233" + height="1" + width="15" + id="rect5777-8" + style="display:inline;opacity:1;fill:#454951;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="handle-v" + inkscape:label="#g6182" + transform="translate(11,0)"> + <rect + y="-189.63782" + x="210" + height="24" + width="2" + id="rect6174" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-183.63782" + x="210" + height="2" + width="2" + id="rect6176" + style="opacity:1;fill:#454a54;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-178.63782" + x="210" + height="2" + width="2" + id="rect6178" + style="opacity:1;fill:#454a54;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-173.63782" + x="210" + height="2" + width="2" + id="rect6180" + style="opacity:1;fill:#454a54;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="matrix(0,1,-1,0,60.362183,-388.63782)" + style="display:inline" + id="handle-h" + inkscape:label="#g6182-9"> + <rect + y="-189.63782" + x="210" + height="24" + width="2" + id="rect6174-4" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-183.63782" + x="210" + height="2" + width="2" + id="rect6176-4" + style="opacity:1;fill:#454a54;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-178.63782" + x="210" + height="2" + width="2" + id="rect6178-9" + style="opacity:1;fill:#454a54;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-173.63782" + x="210" + height="2" + width="2" + id="rect6180-1" + style="opacity:1;fill:#454a54;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="progressbar_v" + width="30" + height="8" + x="216.00018" + y="-82.637817" + ry="4" + rx="4" + inkscape:label="#rect5799" /> + <rect + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="progressbar" + width="30" + height="8" + x="-69.637817" + y="-235.00018" + ry="4" + rx="4" + transform="matrix(0,1,-1,0,0,0)" + inkscape:label="#rect5799-3" /> + <g + id="trough-progressbar_v" + inkscape:label="#g5052" + transform="translate(11,0)"> + <rect + ry="0" + rx="0" + y="-83.637817" + x="239" + height="9.9999971" + width="32" + id="rect5050" + style="opacity:0.55;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + inkscape:label="#rect5799-38" + transform="translate(-7,-283.63782)" + rx="4" + ry="4" + y="201" + x="247" + height="8" + width="30" + id="trough-progressbar_v2" + style="opacity:1;fill:#2f323a;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <circle + style="opacity:1;fill:#383c45;fill-opacity:1;stroke:#5294e2;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="slider" + cx="228.50018" + cy="-20.137819" + r="7" + inkscape:label="#path5834" /> + <circle + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:#5294e2;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="slider-prelight" + cx="247.50018" + cy="-20.137819" + r="7" + inkscape:label="#path5834-3" /> + <g + id="slider-insensitive" + transform="translate(4,-283.63782)" + inkscape:label="#g5881"> + <circle + r="7" + cy="263.5" + cx="262.5" + id="path5834-5-4" + style="opacity:1;fill:#444852;fill-opacity:1;stroke:#444852;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <circle + r="7" + cy="263.5" + cx="262.5" + id="path5834-5" + style="opacity:0.55;fill:#383c45;fill-opacity:1;stroke:#5294e2;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="trough-horizontal" + transform="translate(6,-283.63782)" + inkscape:label="#g5902"> + <rect + ry="0" + rx="0" + y="276" + x="208" + height="15" + width="24" + id="rect5900" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8" + style="opacity:1;fill:#2f323a;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="matrix(0,1,-1,0,509,-200.63782)" + id="trough-vertical" + inkscape:label="#g5902-6"> + <rect + ry="0" + rx="0" + y="276" + x="208" + height="15" + width="24" + id="rect5900-2" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-9" + style="opacity:1;fill:#2f323a;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-horiz" + transform="translate(-9,-223.63782)" + inkscape:label="#g5902-0"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92" + style="opacity:1;fill:#6a7181;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-horiz-active" + transform="translate(-9,-212.63782)" + inkscape:label="#g5902-0-6"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-5" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-6" + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-horiz-insens" + transform="translate(-9,-201.63782)" + inkscape:label="#g5902-0-0"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-9" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-8" + style="opacity:1;fill:#3d414a;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-horiz-prelight" + transform="translate(-9,-190.63782)" + inkscape:label="#g5902-0-1"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-8" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-1" + style="opacity:1;fill:#949aa7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-vert" + transform="matrix(0,1,-1,0,522,-150.63782)" + inkscape:label="#g5902-0-14"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-3" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-85" + style="opacity:1;fill:#6a7181;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-vert-active" + transform="matrix(0,1,-1,0,533,-150.63782)" + inkscape:label="#g5902-0-6-4"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-5-6" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-6-8" + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-vert-insens" + transform="matrix(0,1,-1,0,544,-150.63782)" + inkscape:label="#g5902-0-0-7"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-9-6" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-8-8" + style="opacity:1;fill:#3d414a;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="slider-vert-prelight" + transform="matrix(0,1,-1,0,555,-150.63782)" + inkscape:label="#g5902-0-1-1"> + <rect + ry="0" + rx="0" + y="278" + x="206" + height="11" + width="28" + id="rect5900-5-8-4" + style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + rx="2.5" + ry="2.5" + y="281" + x="208" + height="5" + width="24" + id="rect5799-8-92-1-5" + style="opacity:1;fill:#949aa7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="opacity:1;fill:#383c45;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="trough-scrollbar" + width="15" + height="15" + x="241.00018" + y="92.362183" + rx="0" + ry="0" + inkscape:label="#rect6037" /> + <rect + style="opacity:1;fill:#373b44;fill-opacity:1;stroke:#2d3036;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="notebook" + width="9" + height="9" + x="398.50043" + y="-277.13782" + inkscape:label="#rect6042" /> + <g + transform="translate(416,-1300)" + id="tab-top-active" + inkscape:label="Ebene 1" + clip-path="url(#clipPath6057)"> + <rect + ry="2" + transform="translate(0,1022.3622)" + y="0" + x="0" + height="33" + width="30" + id="rect2987" + style="opacity:1;fill:#2d3036;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2" /> + <rect + ry="1" + transform="translate(0,1022.3622)" + y="1" + x="1" + height="31" + width="28" + id="rect3759" + style="fill:#373b44;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="1" /> + </g> + <g + transform="matrix(0,1,-1,0,1503.3622,-277.63782)" + id="tab-right-active" + inkscape:label="Ebene 1" + clip-path="url(#clipPath6057-7)"> + <rect + ry="2" + transform="translate(0,1022.3622)" + y="0" + x="0" + height="33" + width="30" + id="rect2987-3" + style="opacity:1;fill:#2d3036;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2" /> + <rect + ry="1" + transform="translate(0,1022.3622)" + y="1" + x="1" + height="31" + width="28" + id="rect3759-2" + style="fill:#373b44;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="1" /> + </g> + <g + transform="matrix(1,0,0,-1,416,808.72438)" + id="tab-bottom-active" + inkscape:label="Ebene 1" + clip-path="url(#clipPath6057-4)"> + <rect + ry="2" + transform="translate(0,1022.3622)" + y="0" + x="0" + height="33" + width="30" + id="rect2987-2" + style="opacity:1;fill:#2d3036;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2" /> + <rect + ry="1" + transform="translate(0,1022.3622)" + y="1" + x="1" + height="31" + width="28" + id="rect3759-3" + style="fill:#373b44;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="1" /> + </g> + <g + transform="matrix(0,-1,1,0,-571.3622,-213.63782)" + id="tab-left-active" + inkscape:label="Ebene 1" + clip-path="url(#clipPath6057-9)"> + <rect + ry="2" + transform="translate(0,1022.3622)" + y="0" + x="0" + height="33" + width="30" + id="rect2987-28" + style="opacity:1;fill:#2d3036;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2" /> + <rect + ry="1" + transform="translate(0,1022.3622)" + y="1" + x="1" + height="31" + width="28" + id="rect3759-6" + style="fill:#373b44;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="1" /> + </g> + <g + id="notebook-gap-horiz" + transform="translate(4,-283.63782)" + inkscape:label="#g6133"> + <rect + y="19" + x="394" + height="2" + width="4" + id="rect6129" + style="opacity:0.37700004;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="19" + x="395" + height="2" + width="2" + id="rect6131" + style="opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="matrix(0,1,-1,0,424,-659.63782)" + id="notebook-gap-vert" + inkscape:label="#g6133-5"> + <rect + y="19" + x="394" + height="2" + width="4" + id="rect6129-6" + style="opacity:0.37700004;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="19" + x="395" + height="2" + width="2" + id="rect6131-3" + style="opacity:1;fill:#373b44;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="opacity:1;fill:#3d414a;fill-opacity:1;stroke:#2d3036;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="inline-toolbar" + width="23" + height="33" + x="407.5" + y="109.5" + clip-path="url(#clipPath6162)" + transform="translate(4,-283.63782)" + inkscape:label="#rect6158" /> + <g + id="toolbar" + transform="translate(4,-283.63782)" + inkscape:label="#g6170"> + <rect + y="111" + x="437" + height="32" + width="24" + id="rect6166" + style="opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="142" + x="437" + height="1" + width="24" + id="rect6168" + style="opacity:1;fill:#232428;fill-opacity:0.41062802;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="tree_header" + inkscape:label="#g6293" + transform="translate(11,0)"> + <rect + y="-87.637817" + x="410" + height="28" + width="10" + id="rect6289" + style="opacity:1;fill:#383c45;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-87.637817" + x="419" + height="28" + width="1" + id="rect6291" + style="opacity:1;fill:#4e5159;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="opacity:0.05;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="null" + width="15" + height="14.999997" + x="441.00043" + y="-87.637817" + inkscape:label="#rect6297" /> + <g + id="menubar_button" + inkscape:label="#g5032" + transform="translate(11,0)"> + <rect + inkscape:label="#rect5007" + y="-152.63782" + x="245" + height="15" + width="25" + id="wsad" + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-152.63782" + x="245" + height="15.000003" + width="1" + id="rect5009" + style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-152.63782" + x="269" + height="15.000003" + width="1" + id="rect5009-9" + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + y="-270" + x="-152.63782" + height="25.000004" + width="1" + id="rect5009-95" + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="matrix(0,1,-1,0,188.36218,-309.63782)" + style="display:inline" + id="trough-progressbar" + inkscape:label="#g5052"> + <rect + ry="0" + rx="0" + y="-83.637817" + x="239" + height="9.9999971" + width="32" + id="rect5050-9" + style="opacity:0.55;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + inkscape:label="#rect5799-38" + transform="translate(-7,-283.63782)" + rx="4" + ry="4" + y="201" + x="247" + height="8" + width="30" + id="trough-progressbar_v2-1" + style="opacity:1;fill:#2f323a;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="translate(-1,126)" + style="display:inline" + id="toolbar-entry-border-bg" + inkscape:label="#g9335"> + <path + style="opacity:1;fill:#2f343b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 3 130 L 3 154 L 29 154 L 29 130 L 3 130 z M 16 131 C 22.094 131 27 135.906 27 142 C 27 148.094 22.094 153 16 153 C 9.906 153 5 148.094 5 142 C 5 135.906 9.906 131 16 131 z " + transform="translate(-6,-409.63782)" + id="rect9321-6-7" /> + <rect + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-1-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#181b20;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="11.5" /> + </g> + <g + transform="translate(-1,126)" + style="display:inline" + id="toolbar-entry-border-active-bg" + inkscape:label="#g9350"> + <path + style="display:inline;opacity:1;fill:#2f343b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 37 130 L 37 154 L 63 154 L 63 130 L 37 130 z M 50 131 C 56.094 131 61 135.906 61 142 C 61 148.094 56.094 153 50 153 C 43.906 153 39 148.094 39 142 C 39 135.906 43.906 131 50 131 z " + transform="translate(-6,-409.63782)" + id="rect9321-0-0-1" /> + <rect + ry="11.5" + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-4-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="translate(-1,126)" + style="display:inline" + id="toolbar-entry-border-disabled-bg" + inkscape:label="#g9365"> + <g + id="g4303-7-3"> + <rect + style="display:inline;opacity:1;fill:#2f343b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect9321-2-2-1" + width="26" + height="23.999998" + x="65" + y="-279.63782" /> + <rect + style="opacity:1;fill:#3a3e48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect7903-6-5-6" + width="22" + height="21.999998" + x="67" + y="-278.63782" + rx="11" + ry="10.999999" /> + <rect + style="display:inline;opacity:0.55;fill:none;fill-opacity:1;stroke:#181b20;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7903-7-2-3-4" + width="23" + height="23" + x="66.5" + y="-279.13782" + inkscape:transform-center-x="-4.6588025" + inkscape:transform-center-y="0.42353254" + rx="11.5" + ry="11.5" /> + </g> + </g> + <g + style="display:inline" + id="entry-border-bg" + inkscape:label="#g9335" + transform="translate(106,61.999997)"> + <path + style="opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 110 66 L 110 90 L 136 90 L 136 66 L 110 66 z M 123 67 C 129.094 67 134 71.906001 134 78 C 134 84.093999 129.094 89 123 89 C 116.906 89 112 84.093999 112 78 C 112 71.906001 116.906 67 123 67 z " + id="rect9321-3-7" + transform="translate(-113,-345.63782)" /> + <rect + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-31-1" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="11.5" /> + </g> + <g + style="display:inline" + id="entry-border-active-bg" + inkscape:label="#g9350" + transform="translate(106,61.999997)"> + <path + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 144 66 L 144 90 L 170 90 L 170 66 L 144 66 z M 157 67 C 163.094 67 168 71.906001 168 78 C 168 84.093999 163.094 89 157 89 C 150.906 89 146 84.093999 146 78 C 146 71.906001 150.906 67 157 67 z " + id="rect9321-0-2-2" + transform="translate(-113,-345.63782)" /> + <rect + ry="11.5" + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-7-7" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="matrix(-1,0,0,1,131,126)" + style="display:inline" + id="entry-border-bg-solid-spin" + inkscape:label="#g9335" + clip-path="url(#clipPath5131)"> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 3,130 0,24 26,0 0,-24 -26,0 z m 13,1 c 6.094,0 11,4.906 11,11 0,6.094 -4.906,11 -11,11 -6.094,0 -11,-4.906 -11,-11 0,-6.094 4.906,-11 11,-11 z" + transform="translate(-6,-409.63782)" + id="rect9321-6-7-4" /> + <rect + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="-1.5" + height="23" + width="23" + id="rect7903-7-1-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#2d3036;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + ry="11.5" /> + </g> + <g + transform="translate(103,126)" + style="display:inline" + id="entry-border-active-bg-solid-spin" + inkscape:label="#g9350" + clip-path="url(#clipPath5158)"> + <path + inkscape:connector-curvature="0" + style="display:inline;opacity:1;fill:#444852;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 37,130 0,24 26,0 0,-24 -26,0 z m 13,1 c 6.094,0 11,4.906 11,11 0,6.094 -4.906,11 -11,11 -6.094,0 -11,-4.906 -11,-11 0,-6.094 4.906,-11 11,-11 z" + transform="translate(-6,-409.63782)" + id="rect9321-0-0-1-3" /> + <rect + ry="11.5" + rx="11.5" + inkscape:transform-center-y="0.42353254" + inkscape:transform-center-x="-4.6588025" + y="-279.13782" + x="32.5" + height="23" + width="23" + id="rect7903-7-3-4-9-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + style="display:inline" + id="menubar" + transform="translate(33,-283.63782)" + inkscape:label="#g6170"> + <rect + y="111" + x="437" + height="32" + width="24" + id="rect6166-6" + style="opacity:1;fill:#2f343b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="142" + x="437" + height="1" + width="24" + id="rect6168-6" + style="opacity:1;fill:#292b31;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="opacity:1;fill:#383c45;fill-opacity:1;stroke:#2d3036;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="frame" + width="9" + height="9" + x="423.5" + y="-40.137821" + inkscape:label="#rect5010" /> + <g + transform="matrix(0,-1,1,0,459.63782,97.36218)" + style="display:inline" + id="line-v" + inkscape:label="#g4996"> + <rect + y="-179.63782" + x="275" + height="2" + width="2" + id="rect4974-7" + style="display:inline;opacity:0.05;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-179.63782" + x="275" + height="1" + width="2" + id="rect4976-3" + style="display:inline;opacity:1;fill:#34373e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + transform="matrix(-1,0,0,-1,560,-357.27564)" + style="display:inline" + id="line-h" + inkscape:label="#g4996"> + <rect + y="-179.63782" + x="275" + height="2" + width="2" + id="rect4974-7-1" + style="display:inline;opacity:0.05;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="-179.63782" + x="275" + height="1" + width="2" + id="rect4976-3-6" + style="display:inline;opacity:1;fill:#34373e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <rect + style="opacity:1;fill:#2d3036;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="frame-gap-end" + width="2" + height="1" + x="440" + y="-37.637821" + inkscape:label="#rect4980" /> + <rect + style="opacity:1;fill:#2d3036;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="frame-gap-start" + width="2" + height="1" + x="440" + y="-34.637821" + inkscape:label="#rect4982" /> + <rect + transform="matrix(0,1,-1,0,0,0)" + y="-282.5" + x="-206.13782" + height="4" + width="4.0000124" + id="focus-line" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#cfd6e6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.14492753" + inkscape:label="#rect6176-4-2" /> + </g> +</svg> diff --git a/common/gtk-2.0/assets-dark/arrow-down-insens.png b/common/gtk-2.0/assets-dark/arrow-down-insens.png Binary files differnew file mode 100644 index 0000000..eca193b --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-down-insens.png diff --git a/common/gtk-2.0/assets-dark/arrow-down-prelight.png b/common/gtk-2.0/assets-dark/arrow-down-prelight.png Binary files differnew file mode 100644 index 0000000..4e6e748 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-down-prelight.png diff --git a/common/gtk-2.0/assets-dark/arrow-down-small-insens.png b/common/gtk-2.0/assets-dark/arrow-down-small-insens.png Binary files differnew file mode 100644 index 0000000..a61005c --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-down-small-insens.png diff --git a/common/gtk-2.0/assets-dark/arrow-down-small-prelight.png b/common/gtk-2.0/assets-dark/arrow-down-small-prelight.png Binary files differnew file mode 100644 index 0000000..d239713 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-down-small-prelight.png diff --git a/common/gtk-2.0/assets-dark/arrow-down-small.png b/common/gtk-2.0/assets-dark/arrow-down-small.png Binary files differnew file mode 100644 index 0000000..62049ee --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-down-small.png diff --git a/common/gtk-2.0/assets-dark/arrow-down.png b/common/gtk-2.0/assets-dark/arrow-down.png Binary files differnew file mode 100644 index 0000000..7113603 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-down.png diff --git a/common/gtk-2.0/assets-dark/arrow-left-insens.png b/common/gtk-2.0/assets-dark/arrow-left-insens.png Binary files differnew file mode 100644 index 0000000..1acf958 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-left-insens.png diff --git a/common/gtk-2.0/assets-dark/arrow-left-prelight.png b/common/gtk-2.0/assets-dark/arrow-left-prelight.png Binary files differnew file mode 100644 index 0000000..d5baf19 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-left-prelight.png diff --git a/common/gtk-2.0/assets-dark/arrow-left.png b/common/gtk-2.0/assets-dark/arrow-left.png Binary files differnew file mode 100644 index 0000000..bba89a1 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-left.png diff --git a/common/gtk-2.0/assets-dark/arrow-right-insens.png b/common/gtk-2.0/assets-dark/arrow-right-insens.png Binary files differnew file mode 100644 index 0000000..fee1a42 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-right-insens.png diff --git a/common/gtk-2.0/assets-dark/arrow-right-prelight.png b/common/gtk-2.0/assets-dark/arrow-right-prelight.png Binary files differnew file mode 100644 index 0000000..9f7bc21 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-right-prelight.png diff --git a/common/gtk-2.0/assets-dark/arrow-right.png b/common/gtk-2.0/assets-dark/arrow-right.png Binary files differnew file mode 100644 index 0000000..43f9aaf --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-right.png diff --git a/common/gtk-2.0/assets-dark/arrow-up-insens.png b/common/gtk-2.0/assets-dark/arrow-up-insens.png Binary files differnew file mode 100644 index 0000000..226e45a --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-up-insens.png diff --git a/common/gtk-2.0/assets-dark/arrow-up-prelight.png b/common/gtk-2.0/assets-dark/arrow-up-prelight.png Binary files differnew file mode 100644 index 0000000..f45a454 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-up-prelight.png diff --git a/common/gtk-2.0/assets-dark/arrow-up-small-insens.png b/common/gtk-2.0/assets-dark/arrow-up-small-insens.png Binary files differnew file mode 100644 index 0000000..64aed1b --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-up-small-insens.png diff --git a/common/gtk-2.0/assets-dark/arrow-up-small-prelight.png b/common/gtk-2.0/assets-dark/arrow-up-small-prelight.png Binary files differnew file mode 100644 index 0000000..308ef89 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-up-small-prelight.png diff --git a/common/gtk-2.0/assets-dark/arrow-up-small.png b/common/gtk-2.0/assets-dark/arrow-up-small.png Binary files differnew file mode 100644 index 0000000..13601b6 --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-up-small.png diff --git a/common/gtk-2.0/assets-dark/arrow-up.png b/common/gtk-2.0/assets-dark/arrow-up.png Binary files differnew file mode 100644 index 0000000..396840a --- /dev/null +++ b/common/gtk-2.0/assets-dark/arrow-up.png diff --git a/common/gtk-2.0/assets-dark/button-active.png b/common/gtk-2.0/assets-dark/button-active.png Binary files differnew file mode 100644 index 0000000..08e5485 --- /dev/null +++ b/common/gtk-2.0/assets-dark/button-active.png diff --git a/common/gtk-2.0/assets-dark/button-hover.png b/common/gtk-2.0/assets-dark/button-hover.png Binary files differnew file mode 100644 index 0000000..92607af --- /dev/null +++ b/common/gtk-2.0/assets-dark/button-hover.png diff --git a/common/gtk-2.0/assets-dark/button-insensitive.png b/common/gtk-2.0/assets-dark/button-insensitive.png Binary files differnew file mode 100644 index 0000000..2a61ef0 --- /dev/null +++ b/common/gtk-2.0/assets-dark/button-insensitive.png diff --git a/common/gtk-2.0/assets-dark/button.png b/common/gtk-2.0/assets-dark/button.png Binary files differnew file mode 100644 index 0000000..d1dba8b --- /dev/null +++ b/common/gtk-2.0/assets-dark/button.png diff --git a/common/gtk-2.0/assets-dark/checkbox-checked-insensitive.png b/common/gtk-2.0/assets-dark/checkbox-checked-insensitive.png Binary files differnew file mode 100644 index 0000000..5212bc7 --- /dev/null +++ b/common/gtk-2.0/assets-dark/checkbox-checked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/checkbox-checked.png b/common/gtk-2.0/assets-dark/checkbox-checked.png Binary files differnew file mode 100644 index 0000000..0c22603 --- /dev/null +++ b/common/gtk-2.0/assets-dark/checkbox-checked.png diff --git a/common/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png b/common/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png Binary files differnew file mode 100644 index 0000000..7b5a7e5 --- /dev/null +++ b/common/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/checkbox-unchecked.png b/common/gtk-2.0/assets-dark/checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..4315e82 --- /dev/null +++ b/common/gtk-2.0/assets-dark/checkbox-unchecked.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-active-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-button-active-rtl.png Binary files differnew file mode 100644 index 0000000..20862f1 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-button-active-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-active.png b/common/gtk-2.0/assets-dark/combo-entry-button-active.png Binary files differnew file mode 100644 index 0000000..fc07428 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-button-active.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-insensitive-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-button-insensitive-rtl.png Binary files differnew file mode 100644 index 0000000..104d16f --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-button-insensitive-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-insensitive.png b/common/gtk-2.0/assets-dark/combo-entry-button-insensitive.png Binary files differnew file mode 100644 index 0000000..1164580 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-button-insensitive.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-button-rtl.png Binary files differnew file mode 100644 index 0000000..3d95e5a --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-button-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-button.png b/common/gtk-2.0/assets-dark/combo-entry-button.png Binary files differnew file mode 100644 index 0000000..6d4eb43 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-button.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-focus-notebook-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-focus-notebook-rtl.png Binary files differnew file mode 100644 index 0000000..9f7659c --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-focus-notebook-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-focus-notebook.png b/common/gtk-2.0/assets-dark/combo-entry-focus-notebook.png Binary files differnew file mode 100644 index 0000000..6a35867 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-focus-notebook.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-focus-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-focus-rtl.png Binary files differnew file mode 100644 index 0000000..b59479a --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-focus-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-focus.png b/common/gtk-2.0/assets-dark/combo-entry-focus.png Binary files differnew file mode 100644 index 0000000..344254c --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-focus.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook-rtl.png Binary files differnew file mode 100644 index 0000000..6b1caa3 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook.png Binary files differnew file mode 100644 index 0000000..8f0a28d --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive-rtl.png Binary files differnew file mode 100644 index 0000000..0320a05 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-insensitive-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive.png Binary files differnew file mode 100644 index 0000000..bfdced0 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-insensitive.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-notebook-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-notebook-rtl.png Binary files differnew file mode 100644 index 0000000..0715513 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-notebook-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-notebook.png b/common/gtk-2.0/assets-dark/combo-entry-notebook.png Binary files differnew file mode 100644 index 0000000..c424720 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-notebook.png diff --git a/common/gtk-2.0/assets-dark/combo-entry-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-rtl.png Binary files differnew file mode 100644 index 0000000..dd89a2c --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry-rtl.png diff --git a/common/gtk-2.0/assets-dark/combo-entry.png b/common/gtk-2.0/assets-dark/combo-entry.png Binary files differnew file mode 100644 index 0000000..0c9ec42 --- /dev/null +++ b/common/gtk-2.0/assets-dark/combo-entry.png diff --git a/common/gtk-2.0/assets-dark/down-background-disable-rtl.png b/common/gtk-2.0/assets-dark/down-background-disable-rtl.png Binary files differnew file mode 100644 index 0000000..e4a15cf --- /dev/null +++ b/common/gtk-2.0/assets-dark/down-background-disable-rtl.png diff --git a/common/gtk-2.0/assets-dark/down-background-disable.png b/common/gtk-2.0/assets-dark/down-background-disable.png Binary files differnew file mode 100644 index 0000000..2a1d6e9 --- /dev/null +++ b/common/gtk-2.0/assets-dark/down-background-disable.png diff --git a/common/gtk-2.0/assets-dark/down-background-rtl.png b/common/gtk-2.0/assets-dark/down-background-rtl.png Binary files differnew file mode 100644 index 0000000..3616d95 --- /dev/null +++ b/common/gtk-2.0/assets-dark/down-background-rtl.png diff --git a/common/gtk-2.0/assets-dark/down-background.png b/common/gtk-2.0/assets-dark/down-background.png Binary files differnew file mode 100644 index 0000000..61ce3af --- /dev/null +++ b/common/gtk-2.0/assets-dark/down-background.png diff --git a/common/gtk-2.0/assets-dark/entry-border-active-bg-solid.png b/common/gtk-2.0/assets-dark/entry-border-active-bg-solid.png Binary files differnew file mode 100644 index 0000000..b63fd56 --- /dev/null +++ b/common/gtk-2.0/assets-dark/entry-border-active-bg-solid.png diff --git a/common/gtk-2.0/assets-dark/entry-border-active-bg.png b/common/gtk-2.0/assets-dark/entry-border-active-bg.png Binary files differnew file mode 100644 index 0000000..eba6d64 --- /dev/null +++ b/common/gtk-2.0/assets-dark/entry-border-active-bg.png diff --git a/common/gtk-2.0/assets-dark/entry-border-bg-solid.png b/common/gtk-2.0/assets-dark/entry-border-bg-solid.png Binary files differnew file mode 100644 index 0000000..d666f84 --- /dev/null +++ b/common/gtk-2.0/assets-dark/entry-border-bg-solid.png diff --git a/common/gtk-2.0/assets-dark/entry-border-bg.png b/common/gtk-2.0/assets-dark/entry-border-bg.png Binary files differnew file mode 100644 index 0000000..6a32cae --- /dev/null +++ b/common/gtk-2.0/assets-dark/entry-border-bg.png diff --git a/common/gtk-2.0/assets-dark/entry-border-disabled-bg.png b/common/gtk-2.0/assets-dark/entry-border-disabled-bg.png Binary files differnew file mode 100644 index 0000000..e9af0cf --- /dev/null +++ b/common/gtk-2.0/assets-dark/entry-border-disabled-bg.png diff --git a/common/gtk-2.0/assets-dark/entry-border-fill.png b/common/gtk-2.0/assets-dark/entry-border-fill.png Binary files differnew file mode 100644 index 0000000..387a98b --- /dev/null +++ b/common/gtk-2.0/assets-dark/entry-border-fill.png diff --git a/common/gtk-2.0/assets-dark/focus-line.png b/common/gtk-2.0/assets-dark/focus-line.png Binary files differnew file mode 100644 index 0000000..21a880a --- /dev/null +++ b/common/gtk-2.0/assets-dark/focus-line.png diff --git a/common/gtk-2.0/assets-dark/frame-gap-end.png b/common/gtk-2.0/assets-dark/frame-gap-end.png Binary files differnew file mode 100644 index 0000000..06b3b68 --- /dev/null +++ b/common/gtk-2.0/assets-dark/frame-gap-end.png diff --git a/common/gtk-2.0/assets-dark/frame-gap-start.png b/common/gtk-2.0/assets-dark/frame-gap-start.png Binary files differnew file mode 100644 index 0000000..06b3b68 --- /dev/null +++ b/common/gtk-2.0/assets-dark/frame-gap-start.png diff --git a/common/gtk-2.0/assets-dark/frame.png b/common/gtk-2.0/assets-dark/frame.png Binary files differnew file mode 100644 index 0000000..1b4de44 --- /dev/null +++ b/common/gtk-2.0/assets-dark/frame.png diff --git a/common/gtk-2.0/assets-dark/handle-h.png b/common/gtk-2.0/assets-dark/handle-h.png Binary files differnew file mode 100644 index 0000000..c27f3a8 --- /dev/null +++ b/common/gtk-2.0/assets-dark/handle-h.png diff --git a/common/gtk-2.0/assets-dark/handle-v.png b/common/gtk-2.0/assets-dark/handle-v.png Binary files differnew file mode 100644 index 0000000..49659d7 --- /dev/null +++ b/common/gtk-2.0/assets-dark/handle-v.png diff --git a/common/gtk-2.0/assets-dark/inline-toolbar.png b/common/gtk-2.0/assets-dark/inline-toolbar.png Binary files differnew file mode 100644 index 0000000..f7ff57c --- /dev/null +++ b/common/gtk-2.0/assets-dark/inline-toolbar.png diff --git a/common/gtk-2.0/assets-dark/line-h.png b/common/gtk-2.0/assets-dark/line-h.png Binary files differnew file mode 100644 index 0000000..452cefe --- /dev/null +++ b/common/gtk-2.0/assets-dark/line-h.png diff --git a/common/gtk-2.0/assets-dark/line-v.png b/common/gtk-2.0/assets-dark/line-v.png Binary files differnew file mode 100644 index 0000000..51b37c8 --- /dev/null +++ b/common/gtk-2.0/assets-dark/line-v.png diff --git a/common/gtk-2.0/assets-dark/menu-arrow-prelight.png b/common/gtk-2.0/assets-dark/menu-arrow-prelight.png Binary files differnew file mode 100644 index 0000000..2e21d88 --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-arrow-prelight.png diff --git a/common/gtk-2.0/assets-dark/menu-arrow.png b/common/gtk-2.0/assets-dark/menu-arrow.png Binary files differnew file mode 100644 index 0000000..2e21d88 --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-arrow.png diff --git a/common/gtk-2.0/assets-dark/menu-checkbox-checked-insensitive.png b/common/gtk-2.0/assets-dark/menu-checkbox-checked-insensitive.png Binary files differnew file mode 100644 index 0000000..f406e0e --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-checkbox-checked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/menu-checkbox-checked.png b/common/gtk-2.0/assets-dark/menu-checkbox-checked.png Binary files differnew file mode 100644 index 0000000..a6cb5cc --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-checkbox-checked.png diff --git a/common/gtk-2.0/assets-dark/menu-checkbox-unchecked-insensitive.png b/common/gtk-2.0/assets-dark/menu-checkbox-unchecked-insensitive.png Binary files differnew file mode 100644 index 0000000..4889acf --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-checkbox-unchecked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/menu-checkbox-unchecked.png b/common/gtk-2.0/assets-dark/menu-checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..1e5f06c --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-checkbox-unchecked.png diff --git a/common/gtk-2.0/assets-dark/menu-radio-checked-insensitive.png b/common/gtk-2.0/assets-dark/menu-radio-checked-insensitive.png Binary files differnew file mode 100644 index 0000000..ce77893 --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-radio-checked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/menu-radio-checked.png b/common/gtk-2.0/assets-dark/menu-radio-checked.png Binary files differnew file mode 100644 index 0000000..076ef7d --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-radio-checked.png diff --git a/common/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png b/common/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png Binary files differnew file mode 100644 index 0000000..16ce471 --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/menu-radio-unchecked.png b/common/gtk-2.0/assets-dark/menu-radio-unchecked.png Binary files differnew file mode 100644 index 0000000..037aca0 --- /dev/null +++ b/common/gtk-2.0/assets-dark/menu-radio-unchecked.png diff --git a/common/gtk-2.0/assets-dark/menubar.png b/common/gtk-2.0/assets-dark/menubar.png Binary files differnew file mode 100644 index 0000000..b7a04f4 --- /dev/null +++ b/common/gtk-2.0/assets-dark/menubar.png diff --git a/common/gtk-2.0/assets-dark/menubar_button.png b/common/gtk-2.0/assets-dark/menubar_button.png Binary files differnew file mode 100644 index 0000000..717575a --- /dev/null +++ b/common/gtk-2.0/assets-dark/menubar_button.png diff --git a/common/gtk-2.0/assets-dark/menuitem.png b/common/gtk-2.0/assets-dark/menuitem.png Binary files differnew file mode 100644 index 0000000..4cce53d --- /dev/null +++ b/common/gtk-2.0/assets-dark/menuitem.png diff --git a/common/gtk-2.0/assets-dark/minus.png b/common/gtk-2.0/assets-dark/minus.png Binary files differnew file mode 100644 index 0000000..400de2b --- /dev/null +++ b/common/gtk-2.0/assets-dark/minus.png diff --git a/common/gtk-2.0/assets-dark/notebook-entry-border-active-bg.png b/common/gtk-2.0/assets-dark/notebook-entry-border-active-bg.png Binary files differnew file mode 100644 index 0000000..4d4188e --- /dev/null +++ b/common/gtk-2.0/assets-dark/notebook-entry-border-active-bg.png diff --git a/common/gtk-2.0/assets-dark/notebook-entry-border-bg.png b/common/gtk-2.0/assets-dark/notebook-entry-border-bg.png Binary files differnew file mode 100644 index 0000000..61b07b4 --- /dev/null +++ b/common/gtk-2.0/assets-dark/notebook-entry-border-bg.png diff --git a/common/gtk-2.0/assets-dark/notebook-entry-border-disabled-bg.png b/common/gtk-2.0/assets-dark/notebook-entry-border-disabled-bg.png Binary files differnew file mode 100644 index 0000000..4d32e93 --- /dev/null +++ b/common/gtk-2.0/assets-dark/notebook-entry-border-disabled-bg.png diff --git a/common/gtk-2.0/assets-dark/notebook-gap-horiz.png b/common/gtk-2.0/assets-dark/notebook-gap-horiz.png Binary files differnew file mode 100644 index 0000000..2ff31be --- /dev/null +++ b/common/gtk-2.0/assets-dark/notebook-gap-horiz.png diff --git a/common/gtk-2.0/assets-dark/notebook-gap-vert.png b/common/gtk-2.0/assets-dark/notebook-gap-vert.png Binary files differnew file mode 100644 index 0000000..4476997 --- /dev/null +++ b/common/gtk-2.0/assets-dark/notebook-gap-vert.png diff --git a/common/gtk-2.0/assets-dark/notebook.png b/common/gtk-2.0/assets-dark/notebook.png Binary files differnew file mode 100644 index 0000000..b689a32 --- /dev/null +++ b/common/gtk-2.0/assets-dark/notebook.png diff --git a/common/gtk-2.0/assets-dark/null.png b/common/gtk-2.0/assets-dark/null.png Binary files differnew file mode 100644 index 0000000..d7a1600 --- /dev/null +++ b/common/gtk-2.0/assets-dark/null.png diff --git a/common/gtk-2.0/assets-dark/plus.png b/common/gtk-2.0/assets-dark/plus.png Binary files differnew file mode 100644 index 0000000..7eeef3b --- /dev/null +++ b/common/gtk-2.0/assets-dark/plus.png diff --git a/common/gtk-2.0/assets-dark/progressbar.png b/common/gtk-2.0/assets-dark/progressbar.png Binary files differnew file mode 100644 index 0000000..f0a28ee --- /dev/null +++ b/common/gtk-2.0/assets-dark/progressbar.png diff --git a/common/gtk-2.0/assets-dark/progressbar_v.png b/common/gtk-2.0/assets-dark/progressbar_v.png Binary files differnew file mode 100644 index 0000000..a1e9bcb --- /dev/null +++ b/common/gtk-2.0/assets-dark/progressbar_v.png diff --git a/common/gtk-2.0/assets-dark/radio-checked-insensitive.png b/common/gtk-2.0/assets-dark/radio-checked-insensitive.png Binary files differnew file mode 100644 index 0000000..3f72af0 --- /dev/null +++ b/common/gtk-2.0/assets-dark/radio-checked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/radio-checked.png b/common/gtk-2.0/assets-dark/radio-checked.png Binary files differnew file mode 100644 index 0000000..84fb0c6 --- /dev/null +++ b/common/gtk-2.0/assets-dark/radio-checked.png diff --git a/common/gtk-2.0/assets-dark/radio-unchecked-insensitive.png b/common/gtk-2.0/assets-dark/radio-unchecked-insensitive.png Binary files differnew file mode 100644 index 0000000..ce25cd9 --- /dev/null +++ b/common/gtk-2.0/assets-dark/radio-unchecked-insensitive.png diff --git a/common/gtk-2.0/assets-dark/radio-unchecked.png b/common/gtk-2.0/assets-dark/radio-unchecked.png Binary files differnew file mode 100644 index 0000000..03885a4 --- /dev/null +++ b/common/gtk-2.0/assets-dark/radio-unchecked.png diff --git a/common/gtk-2.0/assets-dark/slider-horiz-active.png b/common/gtk-2.0/assets-dark/slider-horiz-active.png Binary files differnew file mode 100644 index 0000000..65dcf04 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-horiz-active.png diff --git a/common/gtk-2.0/assets-dark/slider-horiz-insens.png b/common/gtk-2.0/assets-dark/slider-horiz-insens.png Binary files differnew file mode 100644 index 0000000..7b3475e --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-horiz-insens.png diff --git a/common/gtk-2.0/assets-dark/slider-horiz-prelight.png b/common/gtk-2.0/assets-dark/slider-horiz-prelight.png Binary files differnew file mode 100644 index 0000000..b2c2124 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-horiz-prelight.png diff --git a/common/gtk-2.0/assets-dark/slider-horiz.png b/common/gtk-2.0/assets-dark/slider-horiz.png Binary files differnew file mode 100644 index 0000000..5a64979 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-horiz.png diff --git a/common/gtk-2.0/assets-dark/slider-insensitive.png b/common/gtk-2.0/assets-dark/slider-insensitive.png Binary files differnew file mode 100644 index 0000000..8df9b55 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-insensitive.png diff --git a/common/gtk-2.0/assets-dark/slider-prelight.png b/common/gtk-2.0/assets-dark/slider-prelight.png Binary files differnew file mode 100644 index 0000000..d925319 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-prelight.png diff --git a/common/gtk-2.0/assets-dark/slider-vert-active.png b/common/gtk-2.0/assets-dark/slider-vert-active.png Binary files differnew file mode 100644 index 0000000..cf8b488 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-vert-active.png diff --git a/common/gtk-2.0/assets-dark/slider-vert-insens.png b/common/gtk-2.0/assets-dark/slider-vert-insens.png Binary files differnew file mode 100644 index 0000000..6472405 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-vert-insens.png diff --git a/common/gtk-2.0/assets-dark/slider-vert-prelight.png b/common/gtk-2.0/assets-dark/slider-vert-prelight.png Binary files differnew file mode 100644 index 0000000..b6c8faf --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-vert-prelight.png diff --git a/common/gtk-2.0/assets-dark/slider-vert.png b/common/gtk-2.0/assets-dark/slider-vert.png Binary files differnew file mode 100644 index 0000000..09546c9 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider-vert.png diff --git a/common/gtk-2.0/assets-dark/slider.png b/common/gtk-2.0/assets-dark/slider.png Binary files differnew file mode 100644 index 0000000..676b305 --- /dev/null +++ b/common/gtk-2.0/assets-dark/slider.png diff --git a/common/gtk-2.0/assets-dark/tab-bottom-active.png b/common/gtk-2.0/assets-dark/tab-bottom-active.png Binary files differnew file mode 100644 index 0000000..a20051a --- /dev/null +++ b/common/gtk-2.0/assets-dark/tab-bottom-active.png diff --git a/common/gtk-2.0/assets-dark/tab-left-active.png b/common/gtk-2.0/assets-dark/tab-left-active.png Binary files differnew file mode 100644 index 0000000..ecdd045 --- /dev/null +++ b/common/gtk-2.0/assets-dark/tab-left-active.png diff --git a/common/gtk-2.0/assets-dark/tab-right-active.png b/common/gtk-2.0/assets-dark/tab-right-active.png Binary files differnew file mode 100644 index 0000000..938cd3f --- /dev/null +++ b/common/gtk-2.0/assets-dark/tab-right-active.png diff --git a/common/gtk-2.0/assets-dark/tab-top-active.png b/common/gtk-2.0/assets-dark/tab-top-active.png Binary files differnew file mode 100644 index 0000000..a1c6678 --- /dev/null +++ b/common/gtk-2.0/assets-dark/tab-top-active.png diff --git a/common/gtk-2.0/assets-dark/toolbar-entry-border-active-bg.png b/common/gtk-2.0/assets-dark/toolbar-entry-border-active-bg.png Binary files differnew file mode 100644 index 0000000..f8ce4d8 --- /dev/null +++ b/common/gtk-2.0/assets-dark/toolbar-entry-border-active-bg.png diff --git a/common/gtk-2.0/assets-dark/toolbar-entry-border-bg.png b/common/gtk-2.0/assets-dark/toolbar-entry-border-bg.png Binary files differnew file mode 100644 index 0000000..3849377 --- /dev/null +++ b/common/gtk-2.0/assets-dark/toolbar-entry-border-bg.png diff --git a/common/gtk-2.0/assets-dark/toolbar-entry-border-disabled-bg.png b/common/gtk-2.0/assets-dark/toolbar-entry-border-disabled-bg.png Binary files differnew file mode 100644 index 0000000..227548c --- /dev/null +++ b/common/gtk-2.0/assets-dark/toolbar-entry-border-disabled-bg.png diff --git a/common/gtk-2.0/assets-dark/toolbar.png b/common/gtk-2.0/assets-dark/toolbar.png Binary files differnew file mode 100644 index 0000000..20a93e0 --- /dev/null +++ b/common/gtk-2.0/assets-dark/toolbar.png diff --git a/common/gtk-2.0/assets-dark/tree_header.png b/common/gtk-2.0/assets-dark/tree_header.png Binary files differnew file mode 100644 index 0000000..53aae22 --- /dev/null +++ b/common/gtk-2.0/assets-dark/tree_header.png diff --git a/common/gtk-2.0/assets-dark/trough-horizontal.png b/common/gtk-2.0/assets-dark/trough-horizontal.png Binary files differnew file mode 100644 index 0000000..9dbae62 --- /dev/null +++ b/common/gtk-2.0/assets-dark/trough-horizontal.png diff --git a/common/gtk-2.0/assets-dark/trough-progressbar.png b/common/gtk-2.0/assets-dark/trough-progressbar.png Binary files differnew file mode 100644 index 0000000..b8f7be8 --- /dev/null +++ b/common/gtk-2.0/assets-dark/trough-progressbar.png diff --git a/common/gtk-2.0/assets-dark/trough-progressbar_v.png b/common/gtk-2.0/assets-dark/trough-progressbar_v.png Binary files differnew file mode 100644 index 0000000..7980ad3 --- /dev/null +++ b/common/gtk-2.0/assets-dark/trough-progressbar_v.png diff --git a/common/gtk-2.0/assets-dark/trough-scrollbar.png b/common/gtk-2.0/assets-dark/trough-scrollbar.png Binary files differnew file mode 100644 index 0000000..a84b1ef --- /dev/null +++ b/common/gtk-2.0/assets-dark/trough-scrollbar.png diff --git a/common/gtk-2.0/assets-dark/trough-vertical.png b/common/gtk-2.0/assets-dark/trough-vertical.png Binary files differnew file mode 100644 index 0000000..86b9d1d --- /dev/null +++ b/common/gtk-2.0/assets-dark/trough-vertical.png diff --git a/common/gtk-2.0/assets-dark/up-background-disable-rtl.png b/common/gtk-2.0/assets-dark/up-background-disable-rtl.png Binary files differnew file mode 100644 index 0000000..e84e75c --- /dev/null +++ b/common/gtk-2.0/assets-dark/up-background-disable-rtl.png diff --git a/common/gtk-2.0/assets-dark/up-background-disable.png b/common/gtk-2.0/assets-dark/up-background-disable.png Binary files differnew file mode 100644 index 0000000..05af30f --- /dev/null +++ b/common/gtk-2.0/assets-dark/up-background-disable.png diff --git a/common/gtk-2.0/assets-dark/up-background-rtl.png b/common/gtk-2.0/assets-dark/up-background-rtl.png Binary files differnew file mode 100644 index 0000000..8465a17 --- /dev/null +++ b/common/gtk-2.0/assets-dark/up-background-rtl.png diff --git a/common/gtk-2.0/assets-dark/up-background.png b/common/gtk-2.0/assets-dark/up-background.png Binary files differnew file mode 100644 index 0000000..106d24f --- /dev/null +++ b/common/gtk-2.0/assets-dark/up-background.png diff --git a/common/gtk-2.0/assets.svg b/common/gtk-2.0/assets.svg index 5918863..6db0551 100644 --- a/common/gtk-2.0/assets.svg +++ b/common/gtk-2.0/assets.svg @@ -565,9 +565,9 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="275.83757" - inkscape:cy="331.30343" + inkscape:zoom="16" + inkscape:cx="293.34974" + inkscape:cy="302.58131" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" @@ -622,8 +622,7 @@ id="layer3" inkscape:label="superbackdrop" style="display:inline" - transform="translate(7,283.63782)" - sodipodi:insensitive="true"> + transform="translate(7,283.63782)"> <rect ry="0" rx="0" @@ -632,7 +631,7 @@ height="416" width="507" id="rect18028" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f9fafb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f5f6f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" transform="scale(1,-1)" /> </g> <g @@ -1745,7 +1744,7 @@ height="24" width="26" id="rect9321-3" - style="opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + style="opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> <rect rx="11" y="-278.63782" @@ -1778,7 +1777,7 @@ height="23.999998" width="26" id="rect9321-0-2" - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> <rect ry="10.999999" rx="11" @@ -1808,7 +1807,7 @@ <g id="g4303"> <rect - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect9321-2-23" width="26" height="24" @@ -1931,7 +1930,7 @@ transform="translate(-1,169)" clip-path="url(#clipPath4466)"> <path - style="opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 3 173 L 3 197 L 29 197 L 29 173 L 3 173 z M 6 174 L 26 174 C 26.554 174 27 174.446 27 175 L 27 195 C 27 195.554 26.554 196 26 196 L 6 196 C 5.446 196 5 195.554 5 195 L 5 175 C 5 174.446 5.446 174 6 174 z " transform="translate(-6,-452.63782)" id="rect9321-4" /> @@ -1954,7 +1953,7 @@ transform="translate(-10,169)" clip-path="url(#clipPath4470)"> <path - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 28 173 L 28 197 L 54 197 L 54 173 L 28 173 z M 31 174 L 51 174 C 51.554 174 52 174.446 52 175 L 52 195 C 52 195.554 51.554 196 51 196 L 31 196 C 30.446 196 30 195.554 30 195 L 30 175 C 30 174.446 30.446 174 31 174 z " transform="translate(3,-452.63782)" id="rect9321-0-5" /> @@ -1979,7 +1978,7 @@ <g id="g4303-70"> <rect - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect9321-2-7" width="26" height="23.999998" @@ -2239,7 +2238,7 @@ clip-path="url(#clipPath4466-1)" transform="matrix(-1,0,0,1,146,169)"> <path - style="opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 130 173 L 130 197 L 156 197 L 156 173 L 130 173 z M 133 174 L 153 174 C 153.554 174 154 174.446 154 175 L 154 195 C 154 195.554 153.554 196 153 196 L 133 196 C 132.446 196 132 195.554 132 195 L 132 175 C 132 174.446 132.446 174 133 174 z " transform="matrix(-1,0,0,1,153,-452.63782)" id="rect9321-4-5" /> @@ -2262,7 +2261,7 @@ transform="matrix(-1,0,0,1,155,169)" clip-path="url(#clipPath4470-6)"> <path - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 105 173 L 105 197 L 131 197 L 131 173 L 105 173 z M 108 174 L 128 174 C 128.554 174 129 174.446 129 175 L 129 195 C 129 195.554 128.554 196 128 196 L 108 196 C 107.446 196 107 195.554 107 195 L 107 175 C 107 174.446 107.446 174 108 174 z " transform="matrix(-1,0,0,1,162,-452.63782)" id="rect9321-0-5-4" /> @@ -2287,7 +2286,7 @@ <g id="g4303-70-0"> <rect - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect9321-2-7-1" width="26" height="24" @@ -4288,16 +4287,6 @@ height="2" width="2" inkscape:label="#image5750" /> - <image - y="-179.63782" - x="279.00043" - id="menu_line_h" - xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsRAAALEQF/ZF+RAAAAB3RJTUUH3AcEFBQdwu2NkwAAABpJREFUCNdjfP369X8GBgYGFgYG BkYGBgYGADpPA8ceLzbjAAAAAElFTkSuQmCC " - style="image-rendering:optimizeSpeed" - preserveAspectRatio="none" - height="2" - width="2" - inkscape:label="#image5761" /> <g id="menuitem" transform="translate(-7,1.9999974)" @@ -4880,7 +4869,7 @@ height="32" width="24" id="rect6166" - style="opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + style="opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> <rect y="142" x="437" @@ -5093,7 +5082,7 @@ inkscape:label="#g9335" transform="translate(106,61.999997)"> <path - style="opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 110 66 L 110 90 L 136 90 L 136 66 L 110 66 z M 123 67 C 129.094 67 134 71.906001 134 78 C 134 84.093999 129.094 89 123 89 C 116.906 89 112 84.093999 112 78 C 112 71.906001 116.906 67 123 67 z " id="rect9321-3-7" transform="translate(-113,-345.63782)" /> @@ -5115,7 +5104,7 @@ inkscape:label="#g9350" transform="translate(106,61.999997)"> <path - style="display:inline;opacity:1;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 144 66 L 144 90 L 170 90 L 170 66 L 144 66 z M 157 67 C 163.094 67 168 71.906001 168 78 C 168 84.093999 163.094 89 157 89 C 150.906 89 146 84.093999 146 78 C 146 71.906001 150.906 67 157 67 z " id="rect9321-0-2-2" transform="translate(-113,-345.63782)" /> @@ -5132,210 +5121,6 @@ style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> </g> <g - transform="translate(-126,104)" - style="display:inline" - id="entry-notebook-4" - inkscape:label="#g9335"> - <rect - y="-279.63782" - x="-3" - height="23.999998" - width="26" - id="rect9321-6-2" - style="opacity:1;fill:#fefefe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="11" - y="-278.63782" - x="-1" - height="21.999998" - width="22" - id="rect7903-652-1" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - ry="10.999999" /> - <rect - rx="11.5" - inkscape:transform-center-y="0.42353254" - inkscape:transform-center-x="-4.6588025" - y="-279.13782" - x="-1.5" - height="23" - width="23" - id="rect7903-7-1-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#cfd6e6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - ry="11.5" /> - </g> - <g - transform="translate(-126,104)" - style="display:inline" - id="entry-focus-notebook-3" - inkscape:label="#g9350"> - <rect - y="-279.63782" - x="31" - height="23.999998" - width="26" - id="rect9321-0-0-5" - style="display:inline;opacity:1;fill:#fefefe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - ry="10.999999" - rx="11" - y="-278.63782" - x="33" - height="21.999998" - width="22" - id="rect7903-2-5-0" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <rect - ry="11.5" - rx="11.5" - inkscape:transform-center-y="0.42353254" - inkscape:transform-center-x="-4.6588025" - y="-279.13782" - x="32.5" - height="23" - width="23" - id="rect7903-7-3-4-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - transform="translate(-126,104)" - style="display:inline" - id="entry-insensitive-notebook-9" - inkscape:label="#g9365"> - <g - id="g4303-7-9"> - <rect - style="display:inline;opacity:1;fill:#fefefe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect9321-2-2-0" - width="26" - height="23.999998" - x="65" - y="-279.63782" /> - <rect - style="opacity:1;fill:#fbfcfc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect7903-6-5-4" - width="22" - height="21.999998" - x="67" - y="-278.63782" - rx="11" - ry="10.999999" /> - <rect - style="display:inline;opacity:0.55;fill:none;fill-opacity:1;stroke:#cfd6e6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect7903-7-2-3-2" - width="23" - height="23" - x="66.5" - y="-279.13782" - inkscape:transform-center-x="-4.6588025" - inkscape:transform-center-y="0.42353254" - rx="11.5" - ry="11.5" /> - </g> - </g> - <g - transform="translate(-123,136)" - style="display:inline" - id="entry-toolbar-0" - inkscape:label="#g9335"> - <rect - y="-279.63782" - x="-3" - height="23.999998" - width="26" - id="rect9321-6-7-5" - style="opacity:1;fill:#e7e8eb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="11" - y="-278.63782" - x="-1" - height="21.999998" - width="22" - id="rect7903-652-0-2" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - ry="10.999999" /> - <rect - rx="11.5" - inkscape:transform-center-y="0.42353254" - inkscape:transform-center-x="-4.6588025" - y="-279.13782" - x="-1.5" - height="23" - width="23" - id="rect7903-7-1-6-1" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#cfd6e6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - ry="11.5" /> - </g> - <g - transform="translate(-123,136)" - style="display:inline" - id="entry-focus-toolbar-9" - inkscape:label="#g9350"> - <rect - y="-279.63782" - x="31" - height="23.999998" - width="26" - id="rect9321-0-0-1-0" - style="display:inline;opacity:1;fill:#e7e8eb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - ry="10.999999" - rx="11" - y="-278.63782" - x="33" - height="21.999998" - width="22" - id="rect7903-2-5-5-8" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <rect - ry="11.5" - rx="11.5" - inkscape:transform-center-y="0.42353254" - inkscape:transform-center-x="-4.6588025" - y="-279.13782" - x="32.5" - height="23" - width="23" - id="rect7903-7-3-4-9-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#5294e2;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - transform="translate(-123,136)" - style="display:inline" - id="entry-insensitive-toolbar-3" - inkscape:label="#g9365"> - <g - id="g4303-7-3-7"> - <rect - style="display:inline;opacity:1;fill:#e7e8eb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect9321-2-2-1-5" - width="26" - height="23.999998" - x="65" - y="-279.63782" /> - <rect - style="opacity:1;fill:#fbfcfc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect7903-6-5-6-4" - width="22" - height="21.999998" - x="67" - y="-278.63782" - rx="11" - ry="10.999999" /> - <rect - style="display:inline;opacity:0.55;fill:none;fill-opacity:1;stroke:#cfd6e6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect7903-7-2-3-4-6" - width="23" - height="23" - x="66.5" - y="-279.13782" - inkscape:transform-center-x="-4.6588025" - inkscape:transform-center-y="0.42353254" - rx="11.5" - ry="11.5" /> - </g> - </g> - <g transform="matrix(-1,0,0,1,131,126)" style="display:inline" id="entry-border-bg-solid-spin" diff --git a/common/gtk-2.0/assets.txt b/common/gtk-2.0/assets.txt index 9dd86d9..f1b7a1c 100644 --- a/common/gtk-2.0/assets.txt +++ b/common/gtk-2.0/assets.txt @@ -82,7 +82,6 @@ handle-h handle-v line-h line-v -menu_line_h menuitem menubar_button null diff --git a/common/gtk-2.0/assets/combo-entry-focus-rtl.png b/common/gtk-2.0/assets/combo-entry-focus-rtl.png Binary files differindex 157d899..19ec0e4 100644 --- a/common/gtk-2.0/assets/combo-entry-focus-rtl.png +++ b/common/gtk-2.0/assets/combo-entry-focus-rtl.png diff --git a/common/gtk-2.0/assets/combo-entry-focus.png b/common/gtk-2.0/assets/combo-entry-focus.png Binary files differindex 23dd71a..d207b00 100644 --- a/common/gtk-2.0/assets/combo-entry-focus.png +++ b/common/gtk-2.0/assets/combo-entry-focus.png diff --git a/common/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/common/gtk-2.0/assets/combo-entry-insensitive-rtl.png Binary files differindex ec347b1..82ff427 100644 --- a/common/gtk-2.0/assets/combo-entry-insensitive-rtl.png +++ b/common/gtk-2.0/assets/combo-entry-insensitive-rtl.png diff --git a/common/gtk-2.0/assets/combo-entry-insensitive.png b/common/gtk-2.0/assets/combo-entry-insensitive.png Binary files differindex 24e0148..cee3ce2 100644 --- a/common/gtk-2.0/assets/combo-entry-insensitive.png +++ b/common/gtk-2.0/assets/combo-entry-insensitive.png diff --git a/common/gtk-2.0/assets/combo-entry-rtl.png b/common/gtk-2.0/assets/combo-entry-rtl.png Binary files differindex 5a914c8..70ce5dd 100644 --- a/common/gtk-2.0/assets/combo-entry-rtl.png +++ b/common/gtk-2.0/assets/combo-entry-rtl.png diff --git a/common/gtk-2.0/assets/combo-entry.png b/common/gtk-2.0/assets/combo-entry.png Binary files differindex 8d2e972..c2e0f74 100644 --- a/common/gtk-2.0/assets/combo-entry.png +++ b/common/gtk-2.0/assets/combo-entry.png diff --git a/common/gtk-2.0/assets/entry-border-active-bg-solid.png b/common/gtk-2.0/assets/entry-border-active-bg-solid.png Binary files differindex d0cd36d..d6127a1 100644 --- a/common/gtk-2.0/assets/entry-border-active-bg-solid.png +++ b/common/gtk-2.0/assets/entry-border-active-bg-solid.png diff --git a/common/gtk-2.0/assets/entry-border-active-bg.png b/common/gtk-2.0/assets/entry-border-active-bg.png Binary files differindex 072d5c2..1828058 100644 --- a/common/gtk-2.0/assets/entry-border-active-bg.png +++ b/common/gtk-2.0/assets/entry-border-active-bg.png diff --git a/common/gtk-2.0/assets/entry-border-bg-solid.png b/common/gtk-2.0/assets/entry-border-bg-solid.png Binary files differindex de84155..6b49cce 100644 --- a/common/gtk-2.0/assets/entry-border-bg-solid.png +++ b/common/gtk-2.0/assets/entry-border-bg-solid.png diff --git a/common/gtk-2.0/assets/entry-border-bg.png b/common/gtk-2.0/assets/entry-border-bg.png Binary files differindex 0464243..3d9a897 100644 --- a/common/gtk-2.0/assets/entry-border-bg.png +++ b/common/gtk-2.0/assets/entry-border-bg.png diff --git a/common/gtk-2.0/assets/entry-border-disabled-bg.png b/common/gtk-2.0/assets/entry-border-disabled-bg.png Binary files differindex e9a5c64..42c1552 100644 --- a/common/gtk-2.0/assets/entry-border-disabled-bg.png +++ b/common/gtk-2.0/assets/entry-border-disabled-bg.png diff --git a/common/gtk-2.0/assets/menu_line_h.png b/common/gtk-2.0/assets/menu_line_h.png Binary files differdeleted file mode 100644 index 4473190..0000000 --- a/common/gtk-2.0/assets/menu_line_h.png +++ /dev/null diff --git a/common/gtk-2.0/assets/toolbar.png b/common/gtk-2.0/assets/toolbar.png Binary files differindex 6b55f41..3b91644 100644 --- a/common/gtk-2.0/assets/toolbar.png +++ b/common/gtk-2.0/assets/toolbar.png diff --git a/common/gtk-2.0/gtkrc b/common/gtk-2.0/gtkrc index d46640e..a3cd47e 100644 --- a/common/gtk-2.0/gtkrc +++ b/common/gtk-2.0/gtkrc @@ -1,2556 +1,10 @@ -gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#5c616c\ntooltip_fg_color:#FFFFFF\nselected_bg_color:#5294E2\nselected_fg_color:#FFFFFF\ntext_color:#5c616c\nbg_color:#f9fafb\ninsensitive_bg_color:#fbfcfc\ntooltip_bg_color:#3A4451\nlink_color:#5294E2" +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#5c616c\ntooltip_fg_color:#FFFFFF\nselected_bg_color:#5294E2\nselected_fg_color:#FFFFFF\ntext_color:#5c616c\nbg_color:#F5F6F7\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9acb2\nnotebook_bg:#FEFEFE\ndark_sidebar_bg:#3c4049\ntooltip_bg_color:#3A4451\nlink_color:#5294E2" -gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. gtk-auto-mnemonics = 1 gtk-primary-button-warps-slider = 1 +include "main.rc" include "apps.rc" -include "panel.rc" # This includes the file that handles the panels. - -style "default" { - - xthickness = 1 - ythickness = 1 - - # Style Properties - - GtkWidget::focus-line-width = 1 - GtkMenuBar::window-dragging = 1 - GtkToolbar::window-dragging = 1 - GtkToolbar::internal-padding = 4 - GtkToolButton::icon-spacing = 4 - - GtkWidget::tooltip-radius = 2 - GtkWidget::tooltip-alpha = 235 - GtkWidget::new-tooltip-style = 1 #for compatibility - - GtkSeparatorMenuItem::horizontal-padding = 3 - GtkSeparatorMenuItem::wide-separators = 1 - GtkSeparatorMenuItem::separator-height = 1 - - GtkButton::child-displacement-y = 0 - GtkButton::default-border = { 0, 0, 0, 0 } - GtkButton::default-outside_border = { 0, 0, 0, 0 } - - GtkEntry::state-hint = 1 - - GtkScrollbar::trough-border = 0 - GtkRange::trough-border = 0 - GtkRange::slider-width = 11 - GtkRange::stepper-size = 0 - - GtkScrollbar::activate-slider = 1 - GtkScrollbar::has-backward-stepper = 0 - GtkScrollbar::has-forward-stepper = 0 - GtkScrollbar::min-slider-length = 32 - GtkScrolledWindow::scrollbar-spacing = 0 - GtkScrolledWindow::scrollbars-within-bevel = 1 - - GtkVScale::slider_length = 15 - GtkVScale::slider_width = 15 - GtkHScale::slider_length = 15 - GtkHScale::slider_width = 15 - - GtkStatusbar::shadow_type = GTK_SHADOW_NONE - GtkSpinButton::shadow_type = GTK_SHADOW_NONE - GtkMenuBar::shadow-type = GTK_SHADOW_NONE - GtkToolbar::shadow-type = GTK_SHADOW_NONE - GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): - GtkMenu::horizontal-padding = 0 - GtkMenu::vertical-padding = 0 - - GtkCheckButton::indicator_spacing = 3 - GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } - - GtkTreeView::row_ending_details = 0 - GtkTreeView::expander-size = 11 - GtkTreeView::vertical-separator = 4 - GtkTreeView::horizontal-separator = 4 - GtkTreeView::allow-rules = 1 - GtkTreeView::even_row_color = @base_color - GtkTreeView::odd_row_color = shade(0.98, @base_color) - - GtkExpander::expander-size = 11 - - GnomeHRef::link_color = @link_color - GtkHTML::link-color = @link_color - GtkIMHtmlr::hyperlink-color = @link_color - GtkIMHtml::hyperlink-color = @link_color - GtkWidget::link-color = @link_color - GtkWidget::visited-link-color = @text_color - - # Colors - - bg[NORMAL] = @bg_color - bg[PRELIGHT] = shade (1.02, @bg_color) - bg[SELECTED] = @selected_bg_color - bg[INSENSITIVE] = @insensitive_bg_color - bg[ACTIVE] = shade (0.9, @bg_color) - - fg[NORMAL] = @text_color - fg[PRELIGHT] = @fg_color - fg[SELECTED] = @selected_fg_color - fg[INSENSITIVE] = darker (@bg_color) - fg[ACTIVE] = @fg_color - - text[NORMAL] = @text_color - text[PRELIGHT] = @text_color - text[SELECTED] = @selected_fg_color - text[INSENSITIVE] = darker (@bg_color) - text[ACTIVE] = @selected_fg_color - - base[NORMAL] = @base_color - base[PRELIGHT] = shade (0.95, @bg_color) - base[SELECTED] = @selected_bg_color - base[INSENSITIVE] = @bg_color - base[ACTIVE] = shade (0.9, @selected_bg_color) - - # For succinctness, all reasonable pixmap options remain here - - engine "pixmap" { - - # Check Buttons - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = SELECTED - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/checkbox-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = SELECTED - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = IN - overlay_file = "assets/checkbox-checked-insensitive.png" - overlay_stretch = FALSE - } - - # Radio Buttons - - image { - function = OPTION - state = NORMAL - shadow = OUT - overlay_file = "assets/radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = OUT - overlay_file = "assets/radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = OUT - overlay_file = "assets/radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = SELECTED - shadow = OUT - overlay_file = "assets/radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/radio-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = NORMAL - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = SELECTED - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = IN - overlay_file = "assets/radio-checked-insensitive.png" - overlay_stretch = FALSE - } - - # Arrows - - image { - function = ARROW - overlay_file = "assets/arrow-up.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/arrow-up-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-up-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-up-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = NORMAL - overlay_file = "assets/arrow-down.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/arrow-down-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-down-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-down-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - overlay_file = "assets/arrow-left.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state= PRELIGHT - overlay_file = "assets/arrow-left-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-left-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-left-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - overlay_file = "assets/arrow-right.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/arrow-right-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-right-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-right-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - # Option Menu Arrows - - image { - function = TAB - state = INSENSITIVE - overlay_file = "assets/arrow-down-insens.png" - overlay_stretch = FALSE - } - - image { - function = TAB - state = NORMAL - overlay_file = "assets/arrow-down.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - } - - image { - function = TAB - state = PRELIGHT - overlay_file = "assets/arrow-down-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - } - - # Lines - - image { - function = VLINE - file = "assets/line-v.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - } - - image { - function = HLINE - file = "assets/line-h.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - } - - # Focuslines - - image { - function = FOCUS - file = "assets/focus-line.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - } - - # Handles - - image { - function = HANDLE - overlay_file = "assets/handle-h.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = HANDLE - overlay_file = "assets/handle-v.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - # Expanders - - image { - function = EXPANDER - expander_style = COLLAPSED - file = "assets/plus.png" - } - - image { - function = EXPANDER - expander_style = EXPANDED - file = "assets/minus.png" - } - - image { - function = EXPANDER - expander_style = SEMI_EXPANDED - file = "assets/minus.png" - } - - image { - function = EXPANDER - expander_style = SEMI_COLLAPSED - file = "assets/plus.png" - } - - image { - function = RESIZE_GRIP - state = NORMAL - detail = "statusbar" - overlay_file = "assets/null.png" - overlay_border = { 0,0,0,0 } - overlay_stretch = FALSE - } - - # Shadows ( this area needs help :P ) - - image { - function = SHADOW_GAP - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - } -} - - -style "toplevel_hack" { - - engine "adwaita" { - } -} - -style "ooo_stepper_hack" { - - GtkScrollbar::stepper-size = 0 - GtkScrollbar::has-backward-stepper = 0 - GtkScrollbar::has-forward-stepper = 0 - -} - -style "scrollbar" { - - engine "pixmap" { - - image { - function = BOX - detail = "trough" - file = "assets/trough-scrollbar.png" - border = { 2, 2, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/trough-scrollbar.png" - border = { 3, 3, 2, 2 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - # Sliders - - image { - function = SLIDER - state = NORMAL - file = "assets/slider-horiz.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = ACTIVE - file = "assets/slider-horiz-active.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/slider-horiz-prelight.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/slider-horiz-insens.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - -# X Verticals - - image { - function = SLIDER - state = NORMAL - file = "assets/slider-vert.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = SLIDER - state = ACTIVE - file = "assets/slider-vert-active.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/slider-vert-prelight.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/slider-vert-insens.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - } -} - -style "menubar" { - - bg[NORMAL] = "#e7e8eb" - fg[NORMAL] = "#70788d" - fg[SELECTED] = @fg_color - fg[INSENSITIVE] = shade(1.3, "#70788d") - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - - image { - function = BOX - file = "assets/menubar.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "menubar-borderless" { - - bg[NORMAL] = "#e7e8eb" - fg[NORMAL] = "#70788d" - fg[SELECTED] = @fg_color - fg[INSENSITIVE] = shade(1.3, "#70788d") - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } - -} - - -style "menu" { - - xthickness = 0 - ythickness = 0 - - GtkMenuItem::arrow-scaling = 0.4 - - bg[NORMAL] = shade (1.08, @bg_color) - bg[INSENSITIVE] = @base_color - bg[PRELIGHT] = @base_color - - engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator - - image { - function = HLINE - file = "assets/menu_line_h.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - } - } -} - -style "menu_framed_box" { - - engine "adwaita" { - } -} - -style "menu_item" -{ - xthickness = 2 - ythickness = 4 - - # HACK: Gtk doesn't actually read this value - # while rendering the menu items, but Libreoffice - # does; setting this value equal to the one in - # fg[PRELIGHT] ensures a code path in the LO theming code - # that falls back to a dark text color for menu item text - # highlight. The price to pay is black text on menus as well, - # but at least it's readable. - # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 - bg[SELECTED] = @selected_fg_color - - text[PRELIGHT] = @fg_color - - engine "pixmap" { - - image { - function = BOX - state = PRELIGHT - file = "assets/menuitem.png" - border = { 1, 0, 1, 0 } - stretch = TRUE - } - - # Check Buttons - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = IN - overlay_file = "assets/menu-checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = IN - overlay_file = "assets/menu-checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = IN - overlay_file = "assets/menu-checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = IN - overlay_file = "assets/menu-checkbox-checked-insensitive.png" - overlay_stretch = FALSE - } - - # Radio Buttons - - image { - function = OPTION - state = NORMAL - shadow = OUT - overlay_file = "assets/menu-radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = OUT - overlay_file = "assets/menu-radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = OUT - overlay_file = "assets/menu-radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/menu-radio-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = NORMAL - shadow = IN - overlay_file = "assets/menu-radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = IN - overlay_file = "assets/menu-radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = IN - overlay_file = "assets/menu-radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = IN - overlay_file = "assets/menu-radio-checked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = SHADOW # This fixes boxy Qt menu items - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - # Arrow Buttons - - image { - function = ARROW - state = NORMAL - overlay_file = "assets/menu-arrow.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/menu-arrow-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - } -} - -style "menubar_item" { - - xthickness = 2 - ythickness = 4 - - fg[PRELIGHT] = @fg_color - - engine "pixmap" { - - image { - function = BOX - state = PRELIGHT - file = "assets/menubar_button.png" - border = { 2, 2, 2, 2 } - stretch = TRUE - } - } -} - -style "button" { - - xthickness = 4 - ythickness = 4 - - engine "pixmap" { - - image { - function = BOX - state = NORMAL - file = "assets/button.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = PRELIGHT - file = "assets/button-hover.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = ACTIVE - file = "assets/button-active.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = INSENSITIVE - file = "assets/button-insensitive.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - } -} - -style "checkbutton" { - - fg[PRELIGHT] = @text_color - fg[ACTIVE] = @text_color - -} - -style "entry" { - - xthickness = 6 - ythickness = 4 - - base[NORMAL] = @base_color - base[INSENSITIVE] = @insensitive_bg_color - - engine "pixmap" { - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/entry-border-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/entry-border-disabled-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/entry-border-active-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - } -} - -style "notebook_entry" { - xthickness = 6 - - engine "pixmap" { - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/notebook-entry-border-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/notebook-entry-border-disabled-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/notebook-entry-border-active-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - } -} - -style "toolbar_entry" { - xthickness = 6 - - engine "pixmap" { - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/toolbar-entry-border-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/toolbar-entry-border-disabled-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/toolbar-entry-border-active-bg.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - } -} - -style "notebook_tab_label" { - - fg[ACTIVE] = @text_color - -} - -style "combobox_entry" -{ - xthickness = 3 - ythickness = 4 - - engine "pixmap" { - - # LTR version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - # RTL version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - } -} - -style "notebook_combobox_entry" { - - engine "pixmap" { - - # LTR version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-notebook.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive-notebook.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus-notebook.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - # RTL version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-notebook-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive-notebook-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus-notebook-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - } -} - -style "combobox_entry_button" -{ - xthickness = 6 - - fg[ACTIVE] = @text_color - - engine "pixmap" { - - # LTR version - - image { - function = BOX - state = NORMAL - file = "assets/combo-entry-button.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - file = "assets/combo-entry-button.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - file = "assets/combo-entry-button-insensitive.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - file = "assets/combo-entry-button-active.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - # RTL version - image { - function = BOX - state = NORMAL - file = "assets/combo-entry-button-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - file = "assets/combo-entry-button-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - file = "assets/combo-entry-button-insensitive-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - file = "assets/combo-entry-button-active-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - } -} - -style "spinbutton" { - - bg[NORMAL] = @bg_color - - xthickness = 6 - ythickness = 4 - - engine "pixmap" { - - image { - function = ARROW - } - - # Spin-Up LTR - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - file = "assets/up-background.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - file = "assets/up-background.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - file = "assets/up-background-disable.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-insens.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - file = "assets/up-background.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - # Spin-Up RTL - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - file = "assets/up-background-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - file = "assets/up-background-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - file = "assets/up-background-disable-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-insens.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - file = "assets/up-background-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - - # Spin-Down LTR - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - file = "assets/down-background.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - file = "assets/down-background.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - file = "assets/down-background-disable.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-insens.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - file = "assets/down-background.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - # Spin-Down RTL - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - file = "assets/down-background-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - file = "assets/down-background-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - file = "assets/down-background-disable-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-insens.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - file = "assets/down-background-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - } -} - -style "gimp_spin_scale" { - - bg[NORMAL] = @base_color - - engine "pixmap" { - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - } - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small-insens.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small-insens.png" - overlay_stretch = FALSE - } - } -} - -style "libreoffice_entry" { - - engine "pixmap" { - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - overlay_file = "assets/entry-border-fill.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - overlay_file = "assets/entry-border-fill.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/entry-border-bg-solid.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/entry-border-active-bg-solid.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - } -} - -style "standalone_entry" { - - engine "pixmap" { - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - file = "assets/entry-border-fill.png" - stretch = TRUE - border = { 0, 0, 0, 0 } - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - file = "assets/entry-border-fill.png" - stretch = TRUE - border = { 0, 0, 0, 0 } - } - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/entry-border-bg-solid.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/entry-border-active-bg-solid.png" - border = { 12, 12, 12, 12 } - stretch = TRUE - } - } -} - -style "notebook" { - - xthickness = 5 - ythickness = 2 - - engine "pixmap" { - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = TOP - } - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = BOTTOM - } - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = RIGHT - } - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = LEFT - } - - image { - function = EXTENSION - file = "assets/tab-top-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = BOTTOM - } - - image { - function = EXTENSION - file = "assets/tab-bottom-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = TOP - } - - image { - function = EXTENSION - file = "assets/tab-left-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = RIGHT - } - - image { - function = EXTENSION - file = "assets/tab-right-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = LEFT - } - - # How to draw boxes with a gap on one side (ie the page of a notebook) - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-horiz.png" - gap_border = { 1, 1, 0, 0 } - gap_side = TOP - } - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-horiz.png" - gap_border = { 1, 1, 0, 0 } - gap_side = BOTTOM - } - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-vert.png" - gap_border = { 0, 0, 1, 1 } - gap_side = LEFT - } - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-vert.png" - gap_border = { 0, 0, 1, 1 } - gap_side = RIGHT - } - - # How to draw the box of a notebook when it isnt attached to a tab - - image { - function = BOX - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - } -} - -style "handlebox" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - detail = "handlebox_bin" - shadow = IN - } - - image { - function = BOX - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - detail = "handlebox_bin" - shadow = OUT - } - } -} - -style "combobox_separator" { - - xthickness = 0 - ythickness = 0 - GtkWidget::wide-separators = 1 - -} - -style "combobox" { - - xthickness = 0 - ythickness = 0 - -} - -style "combobox_button" { - - xthickness = 3 - ythickness = 3 - -} - -style "range" { - - engine "pixmap" { - - image { - function = BOX - detail = "trough" - file = "assets/trough-horizontal.png" - border = { 4, 4, 0, 0 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/trough-vertical.png" - border = { 0, 0, 4, 4 } - stretch = TRUE - orientation = VERTICAL - } - - # Horizontal - - image { - function = SLIDER - state = NORMAL - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-prelight.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-insensitive.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - # Vertical - - image { - function = SLIDER - state = NORMAL - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-prelight.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-insensitive.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - # Function below removes ugly boxes - - image { - function = BOX - file = "assets/null.png" - border = { 3, 3, 3, 3 } - stretch = TRUE - } - } -} - -style "progressbar" { - - xthickness = 1 - ythickness = 1 - - fg[NORMAL] = @selected_fg_color - fg[PRELIGHT] = @selected_fg_color - - engine "pixmap" { - - image { - function = BOX - detail = "trough" - file = "assets/trough-progressbar.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "bar" - file = "assets/progressbar.png" - stretch = TRUE - border = { 3, 3, 3, 3 } - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/trough-progressbar_v.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = BOX - detail = "bar" - file = "assets/progressbar_v.png" - stretch = TRUE - border = { 3, 3, 3, 3 } - orientation = VERTICAL - } - } -} - -style "separator_menu_item" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - border = { 0, 0, 1, 0 } - stretch = TRUE - } - } -} - -style "treeview_header" { - ythickness = 1 - - fg[PRELIGHT] = mix(0.70, @text_color, @base_color) - font_name = "Bold" - - engine "pixmap" { - - image { - function = BOX - file = "assets/tree_header.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - } - } -} - -# Treeview Rows - -style "treeview" { - - xthickness = 2 - ythickness = 0 - - -} - -style "scrolled_window" { - - xthickness = 1 - ythickness = 1 - - engine "pixmap" { - - image { - function = SHADOW - file = "assets/frame.png" - border = { 5, 5, 5, 5 } - stretch = TRUE - } - } -} - -style "frame" { - - xthickness = 1 - ythickness = 1 - - engine "pixmap" { - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = IN - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = IN - } - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = OUT - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = OUT - } - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = ETCHED_IN - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = ETCHED_IN - } - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = ETCHED_OUT - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = ETCHED_OUT - } - } -} - -style "gimp_toolbox_frame" { - - engine "pixmap" { - - image { - function = SHADOW - } - } -} - -style "toolbar" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/toolbar.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - - image { - function = HANDLE - overlay_file = "assets/handle-h.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = HANDLE - overlay_file = "assets/handle-v.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - image { - function = VLINE - recolorable = TRUE - file = "assets/null.png" - } - - image { - function = HLINE - recolorable = TRUE - file = "assets/null.png" - } - } -} - -style "inline_toolbar" { - - GtkToolbar::button-relief = GTK_RELIEF_NORMAL - - engine "pixmap" { - - image { - function = BOX - file = "assets/inline-toolbar.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "notebook_viewport" { - - bg[NORMAL] = "#fcfcfc" -} - -style "tooltips" { - - xthickness = 8 - ythickness = 4 - - bg[NORMAL] = @tooltip_bg_color - fg[NORMAL] = @tooltip_fg_color - bg[SELECTED] = @tooltip_bg_color - -} - -style "eclipse-tooltips" { - - xthickness = 8 - ythickness = 4 - - bg[NORMAL] = shade(1.05, @bg_color) - fg[NORMAL] = @text_color - bg[SELECTED] = shade(1.05, @bg_color) - -} - -style "xfdesktop-icon-view" { - XfdesktopIconView::label-alpha = 0 - XfdesktopIconView::selected-label-alpha = 100 - XfdesktopIconVIew::ellipsize-icon-labels = 1 - - base[NORMAL] = @selected_bg_color - base[SELECTED] = @selected_bg_color - base[ACTIVE] = @selected_bg_color - - fg[NORMAL] = @selected_fg_color - fg[SELECTED] = @selected_fg_color - fg[ACTIVE] = @selected_fg_color - - engine "murrine" { - textstyle = 5 - text_shade = 0.05 - } -} - -style "xfwm-tabwin" { - Xfwm4TabwinWidget::border-width = 1 - Xfwm4TabwinWidget::border-alpha = 1.0 - Xfwm4TabwinWidget::icon-size = 64 - Xfwm4TabwinWidget::alpha = 1.0 - Xfwm4TabwinWidget::border-radius = 2 - - bg[NORMAL] = @bg_color - bg[SELECTED] = @bg_color - - fg[NORMAL] = @fg_color - - engine "murrine" { - contrast = 0.7 - glazestyle = 0 - glowstyle = 0 - highlight_shade = 1.0 - gradient_shades = {1.0,1.0,1.0,1.0} - border_shades = { 0.8, 0.8 } - } -} - -style "xfwm-tabwin-button" { - - font_name = "bold" - bg[SELECTED] = @selected_bg_color -} - -# Chromium -style "chrome-gtk-frame" { - - ChromeGtkFrame::frame-color = "#e7e8eb" - ChromeGtkFrame::inactive-frame-color = "#e7e8eb" - - ChromeGtkFrame::frame-gradient-size = 0 - ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) - - ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) - ChromeGtkFrame::incognito-inactive-frame-color = @bg_color - - ChromeGtkFrame::incognito-frame-gradient-color = @bg_color - - ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) - ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) - ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color - -} - -style "chrome_menu_item" { - - bg[SELECTED] = @selected_bg_color - -} - -style "null" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - stretch = TRUE - } - } -} - - -class "GtkWidget" style "default" -class "GtkScrollbar" style "scrollbar" -class "GtkButton" style "button" -class "GtkEntry" style "entry" -class "GtkOldEditable" style "entry" -class "GtkSpinButton" style "spinbutton" -class "GtkNotebook" style "notebook" -class "GtkRange" style "range" -class "GtkProgressBar" style "progressbar" -class "GtkSeparatorMenuItem" style "separator_menu_item" -class "GtkScrolledWindow" style "scrolled_window" -class "GtkFrame" style "frame" -class "GtkToolbar" style "toolbar" -class "*HandleBox" style "toolbar" -class "GtkTreeView" style "treeview" - -widget_class "*<GtkMenuBar>*" style "menubar" -widget_class "*<GtkMenu>*" style "menu" -widget_class "*<GtkMenu>*" style "menu_framed_box" -widget_class "*<GtkMenuItem>*" style "menu_item" -widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" -widget_class "*<GtkCheckButton>*" style "checkbutton" -widget_class "*<GtkComboBox>" style "combobox" -widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" -widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" -widget_class "*HandleBox" style "toolbar" -widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" -widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" -widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" -widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" -widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" - -# Entries in notebooks draw with notebook's base color, but not if there's -# something else in the middle that draws gray again -widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" -widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" - -widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" -widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" - -# The same thing for toolbars -#widget_class "*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" -#widget_class "*<GtkToolbar>*<GtkEventBox>*<GtkEntry>" style "entry" - -# We also need to avoid changing fg color for the inactive notebook tab labels -widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" - -# GTK tooltips -widget "gtk-tooltip*" style "tooltips" - -# Xchat special cases -widget "*xchat-inputbox" style "entry" - -# GIMP -# Disable gradients completely for GimpSpinScale -#class "GimpSpinScale" style "gimp_spin_scale" - -# Remove borders from "Wilbert frame" in Gimp -widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" - -# Chrome/Chromium -class "ChromeGtkFrame" style "chrome-gtk-frame" -widget_class "*Chrom*Button*" style "button" -widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" - -# We use this weird selector to target an offscreen entry as created -# by Chrome/Chromium to derive the style for its toolbar -widget_class "<GtkEntry>" style "standalone_entry" - -# Eclipse/SWT -widget "gtk-tooltips*" style "eclipse-tooltips" -widget "*swt-toolbar-flat" style "null" - -# Openoffice, Libreoffice -class "GtkWindow" style "toplevel_hack" -widget "*openoffice-toplevel*" style "ooo_stepper_hack" -widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" -widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" -widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" -widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" - -# Xfce -widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" -widget "xfwm4-tabwin*" style "xfwm-tabwin" -widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" - -# Whitelist for dark toolbars -widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" -widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" -widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" -widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" -widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" -widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar.rc" diff --git a/common/gtk-2.0/gtkrc-dark b/common/gtk-2.0/gtkrc-dark new file mode 100644 index 0000000..0be5915 --- /dev/null +++ b/common/gtk-2.0/gtkrc-dark @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#383C45\nfg_color:#D3DAE3\ntooltip_fg_color:#FFFFFF\nselected_bg_color:#5294E2\nselected_fg_color:#FFFFFF\ntext_color:#D3DAE3\nbg_color:#444852\ninsensitive_bg_color:#3a3e48\ninsensitive_fg_color:#7c818c\nnotebook_bg:#373B44\ndark_sidebar_bg:#454a54\ntooltip_bg_color:#3A4451\nlink_color:#5294E2" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/common/gtk-2.0/gtkrc-darker b/common/gtk-2.0/gtkrc-darker new file mode 100644 index 0000000..80128b2 --- /dev/null +++ b/common/gtk-2.0/gtkrc-darker @@ -0,0 +1,10 @@ +gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#5c616c\ntooltip_fg_color:#FFFFFF\nselected_bg_color:#5294E2\nselected_fg_color:#FFFFFF\ntext_color:#5c616c\nbg_color:#F5F6F7\ninsensitive_bg_color:#fbfcfc\ninsensitive_fg_color:#a9acb2\nnotebook_bg:#FEFEFE\ndark_sidebar_bg:#3c4049\ntooltip_bg_color:#3A4451\nlink_color:#5294E2" + +gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +include "main.rc" +include "apps.rc" +include "panel.rc" +include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/common/gtk-2.0/main.rc b/common/gtk-2.0/main.rc new file mode 100644 index 0000000..187a28e --- /dev/null +++ b/common/gtk-2.0/main.rc @@ -0,0 +1,2407 @@ +style "default" { + + xthickness = 1 + ythickness = 1 + + # Style Properties + + GtkWidget::focus-line-width = 1 + GtkMenuBar::window-dragging = 1 + GtkToolbar::window-dragging = 1 + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkSeparatorMenuItem::horizontal-padding = 3 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::default-outside_border = { 0, 0, 0, 0 } + + GtkEntry::state-hint = 1 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 11 + GtkRange::stepper-size = 0 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkVScale::slider_length = 15 + GtkVScale::slider_width = 15 + GtkHScale::slider_length = 15 + GtkHScale::slider_width = 15 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + + GtkTreeView::row_ending_details = 0 + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 4 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 1 + GtkTreeView::even_row_color = @base_color + GtkTreeView::odd_row_color = shade(0.98, @base_color) + + GtkExpander::expander-size = 11 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + # Colors + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + base[ACTIVE] = shade (0.9, @selected_bg_color) + + # For succinctness, all reasonable pixmap options remain here + + engine "pixmap" { + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Arrows + + image { + function = ARROW + overlay_file = "assets/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-up-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-up-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state= PRELIGHT + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-left-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-left-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/arrow-right-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/arrow-right-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Option Menu Arrows + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/arrow-down-insens.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = NORMAL + overlay_file = "assets/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # Lines + + image { + function = VLINE + file = "assets/line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image { + function = HLINE + file = "assets/line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # Focuslines + + image { + function = FOCUS + file = "assets/focus-line.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + # Handles + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Expanders + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/plus.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/minus.png" + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/plus.png" + } + + image { + function = RESIZE_GRIP + state = NORMAL + detail = "statusbar" + overlay_file = "assets/null.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + # Shadows ( this area needs help :P ) + + image { + function = SHADOW_GAP + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "toplevel_hack" { + + engine "adwaita" { + } +} + +style "ooo_stepper_hack" { + + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + +} + +style "scrollbar" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar.png" + border = { 2, 2, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-scrollbar.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-horiz.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-horiz-active.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-horiz-prelight.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-horiz-insens.png" + border = { 5, 5, 3, 3 } + stretch = TRUE + orientation = HORIZONTAL + } + +# X Verticals + + image { + function = SLIDER + state = NORMAL + file = "assets/slider-vert.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = ACTIVE + file = "assets/slider-vert-active.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/slider-vert-prelight.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/slider-vert-insens.png" + border = { 3, 3, 5, 5 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + GtkMenuItem::arrow-scaling = 0.4 + + bg[NORMAL] = @base_color + bg[INSENSITIVE] = @base_color + bg[PRELIGHT] = @base_color + + engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator + + image { + function = HLINE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + } +} + +style "menu_framed_box" { + + engine "adwaita" { + } +} + +style "menu_item" +{ + xthickness = 2 + ythickness = 4 + + # HACK: Gtk doesn't actually read this value + # while rendering the menu items, but Libreoffice + # does; setting this value equal to the one in + # fg[PRELIGHT] ensures a code path in the LO theming code + # that falls back to a dark text color for menu item text + # highlight. The price to pay is black text on menus as well, + # but at least it's readable. + # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 + bg[SELECTED] = @selected_fg_color + + text[PRELIGHT] = @fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "assets/menuitem.png" + border = { 1, 0, 1, 0 } + stretch = TRUE + } + + # Check Buttons + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + # Radio Buttons + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = SHADOW # This fixes boxy Qt menu items + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + # Arrow Buttons + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/menu-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/menu-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "assets/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "checkbutton" { + + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @text_color + +} + +style "entry" { + + xthickness = 6 + ythickness = 4 + + base[NORMAL] = @base_color + base[INSENSITIVE] = @insensitive_bg_color + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_entry" { + xthickness = 6 + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/notebook-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/notebook-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/notebook-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +style "notebook_tab_label" { + + fg[ACTIVE] = @text_color + +} + +style "combobox_entry" +{ + xthickness = 3 + ythickness = 4 + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "notebook_combobox_entry" { + + engine "pixmap" { + + # LTR version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/combo-entry-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "assets/combo-entry-insensitive-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/combo-entry-focus-notebook-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "combobox_entry_button" +{ + xthickness = 6 + + fg[ACTIVE] = @text_color + + engine "pixmap" { + + # LTR version + + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = LTR + } + + # RTL version + image { + function = BOX + state = NORMAL + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/combo-entry-button-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/combo-entry-button-insensitive-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/combo-entry-button-active-rtl.png" + border = { 4, 4, 5, 4 } + stretch = TRUE + direction = RTL + } + } +} + +style "spinbutton" { + + bg[NORMAL] = @bg_color + + xthickness = 6 + ythickness = 4 + + engine "pixmap" { + + image { + function = ARROW + } + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background.png" + border = { 1, 4, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/up-background-disable-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/up-background-rtl.png" + border = { 4, 1, 5, 0 } + stretch = TRUE + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background.png" + border = { 1, 4, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/down-background-disable-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/down-background-rtl.png" + border = { 4, 1, 1, 4 } + stretch = TRUE + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + direction = RTL + } + } +} + +style "gimp_spin_scale" { + + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/arrow-up-small-insens.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-prelight.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/arrow-down-small-insens.png" + overlay_stretch = FALSE + } + } +} + +style "libreoffice_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/entry-border-fill.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "standalone_entry" { + + engine "pixmap" { + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + file = "assets/entry-border-fill.png" + stretch = TRUE + border = { 0, 0, 0, 0 } + } + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "assets/entry-border-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "assets/entry-border-active-bg-solid.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + } +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + + engine "pixmap" { + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + state = ACTIVE + file = "assets/null.png" + border = { 0,0,0,0 } + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-top-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-bottom-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-left-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-right-active.png" + border = { 3,3,3,3 } + stretch = TRUE + gap_side = LEFT + } + + # How to draw boxes with a gap on one side (ie the page of a notebook) + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = TOP + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-horiz.png" + gap_border = { 1, 1, 0, 0 } + gap_side = BOTTOM + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = LEFT + } + + image { + function = BOX_GAP + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + gap_file = "assets/notebook-gap-vert.png" + gap_border = { 0, 0, 1, 1 } + gap_side = RIGHT + } + + # How to draw the box of a notebook when it isnt attached to a tab + + image { + function = BOX + file = "assets/notebook.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "handlebox" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = IN + } + + image { + function = BOX + file = "assets/null.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + detail = "handlebox_bin" + shadow = OUT + } + } +} + +style "combobox_separator" { + + xthickness = 0 + ythickness = 0 + GtkWidget::wide-separators = 1 + +} + +style "combobox" { + + xthickness = 0 + ythickness = 0 + +} + +style "combobox_button" { + + xthickness = 3 + ythickness = 3 + +} + +style "range" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-horizontal.png" + border = { 4, 4, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-vertical.png" + border = { 0, 0, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + # Horizontal + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # Vertical + + image { + function = SLIDER + state = NORMAL + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = PRELIGHT + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = SLIDER + state = INSENSITIVE + file = "assets/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "assets/slider-insensitive.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + # Function below removes ugly boxes + + image { + function = BOX + file = "assets/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @selected_fg_color + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/trough-progressbar_v.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar_v.png" + stretch = TRUE + border = { 3, 3, 3, 3 } + orientation = VERTICAL + } + } +} + +style "separator_menu_item" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + border = { 0, 0, 1, 0 } + stretch = TRUE + } + } +} + +style "treeview_header" { + ythickness = 1 + + fg[PRELIGHT] = mix(0.70, @text_color, @base_color) + font_name = "Bold" + + engine "pixmap" { + + image { + function = BOX + file = "assets/tree_header.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +# Treeview Rows + +style "treeview" { + + xthickness = 2 + ythickness = 0 + + +} + +style "scrolled_window" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "frame" { + + xthickness = 1 + ythickness = 1 + + engine "pixmap" { + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = OUT + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_IN + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_IN + } + + image { + function = SHADOW + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + shadow = ETCHED_OUT + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "assets/frame-gap-start.png" + gap_start_border = { 1, 0, 0, 0 } + gap_end_file = "assets/frame-gap-end.png" + gap_end_border = { 0, 1, 0, 0 } + shadow = ETCHED_OUT + } + } +} + +style "gimp_toolbox_frame" { + + engine "pixmap" { + + image { + function = SHADOW + } + } +} + +style "toolbar" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + + image { + function = HANDLE + overlay_file = "assets/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + overlay_file = "assets/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = VLINE + recolorable = TRUE + file = "assets/null.png" + } + + image { + function = HLINE + recolorable = TRUE + file = "assets/null.png" + } + } +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + + image { + function = BOX + file = "assets/inline-toolbar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "notebook_viewport" { + + bg[NORMAL] = @notebook_bg +} + +style "tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "eclipse-tooltips" { + + xthickness = 8 + ythickness = 4 + + bg[NORMAL] = shade(1.05, @bg_color) + fg[NORMAL] = @text_color + bg[SELECTED] = shade(1.05, @bg_color) + +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 100 + XfdesktopIconVIew::ellipsize-icon-labels = 1 + + base[NORMAL] = @selected_bg_color + base[SELECTED] = @selected_bg_color + base[ACTIVE] = @selected_bg_color + + fg[NORMAL] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + + engine "murrine" { + textstyle = 5 + text_shade = 0.05 + } +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @bg_color + bg[SELECTED] = @bg_color + + fg[NORMAL] = @fg_color + + engine "murrine" { + contrast = 0.7 + glazestyle = 0 + glowstyle = 0 + highlight_shade = 1.0 + gradient_shades = {1.0,1.0,1.0,1.0} + border_shades = { 0.8, 0.8 } + } +} + +style "xfwm-tabwin-button" { + + font_name = "bold" + bg[SELECTED] = @selected_bg_color +} + +# Chromium +style "chrome_menu_item" { + + bg[SELECTED] = @selected_bg_color + +} + +# Text Style +style "text" { + engine "murrine" { textstyle = 0 } +} + +style "null" { + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + } + } +} + + +class "GtkWidget" style "default" +class "GtkScrollbar" style "scrollbar" +class "GtkButton" style "button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkNotebook" style "notebook" +class "GtkRange" style "range" +class "GtkProgressBar" style "progressbar" +class "GtkSeparatorMenuItem" style "separator_menu_item" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkTreeView" style "treeview" +class "GtkToolbar" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*<GtkMenu>*" style "menu" +widget_class "*<GtkMenu>*" style "menu_framed_box" +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkCheckButton>*" style "checkbutton" +widget_class "*<GtkComboBox>" style "combobox" +widget_class "*<GtkComboBox>*<GtkButton>" style "combobox_button" +widget_class "*<GtkComboBox>*<GtkSeparator>" style "combobox_separator" +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" +widget_class "*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" +widget_class "*<GtkComboBoxEntry>*<GtkButton>" style "combobox_entry_button" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_viewport" +widget_class "*HandleBox" style "toolbar" + +# Entries in notebooks draw with notebook's base color, but not if there's +# something else in the middle that draws gray again +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "entry" + +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*<GtkEntry>" style "notebook_combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*<GtkEntry>" style "combobox_entry" + +# We also need to avoid changing fg color for the inactive notebook tab labels +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltips" + +# Xchat special cases +widget "*xchat-inputbox" style "entry" + +# GIMP +# Disable gradients completely for GimpSpinScale +#class "GimpSpinScale" style "gimp_spin_scale" + +# Remove borders from "Wilbert frame" in Gimp +widget_class "*<GimpToolbox>*<GtkFrame>" style "gimp_toolbox_frame" + +# Chrome/Chromium +widget_class "*Chrom*Button*" style "button" +widget_class "*<GtkCustomMenu>*<GtkCustomMenuItem>*" style "chrome_menu_item" + +# We use this weird selector to target an offscreen entry as created +# by Chrome/Chromium to derive the style for its toolbar +widget_class "<GtkEntry>" style "standalone_entry" + +# Eclipse/SWT +widget "gtk-tooltips*" style "eclipse-tooltips" +widget "*swt-toolbar-flat" style "null" + +# Openoffice, Libreoffice +class "GtkWindow" style "toplevel_hack" +widget "*openoffice-toplevel*" style "ooo_stepper_hack" +widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" +widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_entry" + +# Xfce +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" + +# Fixes ugly text shadows for insensitive text +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" +widget_class "*<GtkNotebook>*<GtkLabel>" style "text" +widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" diff --git a/common/gtk-2.0/menubar-toolbar/button-active.png b/common/gtk-2.0/menubar-toolbar/button-active.png Binary files differnew file mode 100644 index 0000000..08e5485 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/button-active.png diff --git a/common/gtk-2.0/menubar-toolbar/button-hover.png b/common/gtk-2.0/menubar-toolbar/button-hover.png Binary files differnew file mode 100644 index 0000000..92607af --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/button-hover.png diff --git a/common/gtk-2.0/menubar-toolbar/button-insensitive.png b/common/gtk-2.0/menubar-toolbar/button-insensitive.png Binary files differnew file mode 100644 index 0000000..2a61ef0 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/button-insensitive.png diff --git a/common/gtk-2.0/menubar-toolbar/button.png b/common/gtk-2.0/menubar-toolbar/button.png Binary files differnew file mode 100644 index 0000000..d1dba8b --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/button.png diff --git a/common/gtk-2.0/menubar-toolbar/menubar-dark.png b/common/gtk-2.0/menubar-toolbar/menubar-dark.png Binary files differnew file mode 100644 index 0000000..b7a04f4 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/menubar-dark.png diff --git a/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc new file mode 100644 index 0000000..4f9d83f --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc @@ -0,0 +1,220 @@ +style "menubar" { + + bg[NORMAL] = "#2f343b" + fg[NORMAL] = "#afb8c5" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#afb8c5") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar-dark.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#2f343b" + fg[NORMAL] = "#afb8c5" + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = shade(0.7, "#afb8c5") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + + +style "toolbar_text" { + fg[NORMAL] = "#afb8c5" + fg[PRELIGHT] = "#afb8c5" + fg[INSENSITIVE] = shade(0.7, "#afb8c5") + fg[ACTIVE] = "#afb8c5" + + text[NORMAL] = "#afb8c5" + text[PRELIGHT] = "#afb8c5" + text[INSENSITIVE] = shade(0.7, "#afb8c5") + text[ACTIVE] = "#afb8c5" + +} + +style "toolbar_button" { + + xthickness = 4 + ythickness = 4 + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + file = "menubar-toolbar/button.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/button-hover.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "menubar-toolbar/button-active.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "menubar-toolbar/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#272b31" + base[INSENSITIVE] = "#292e35" + + text[NORMAL] = "#afb8c5" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg-dark.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#2f343b" + ChromeGtkFrame::inactive-frame-color = "#2f343b" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>" style "toolbar_button" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkWidget>" style "toolbar_text" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkButton>*<GtkLabel>" style "menubar-text" + diff --git a/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc new file mode 100644 index 0000000..25fb4dd --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc @@ -0,0 +1,164 @@ +style "menubar" { + + bg[NORMAL] = "#e7e8eb" + fg[NORMAL] = "#70788d" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#70788d") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "menubar-toolbar/menubar.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar-borderless" { + + bg[NORMAL] = "#e7e8eb" + fg[NORMAL] = "#70788d" + fg[SELECTED] = @fg_color + fg[INSENSITIVE] = shade(1.3, "#70788d") + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + + image { + function = BOX + file = "assets/null.png" + stretch = TRUE + border = { 1, 1, 1, 1 } + } + } +} + +style "menubar_item" { + + xthickness = 2 + ythickness = 4 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + state = PRELIGHT + file = "menubar-toolbar/menubar_button.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +# Text Style Menubar +style "menubar-text" { + + engine "murrine" { + text_shade = 0.0 + textstyle = 0 + } +} + +style "toolbar_entry" { + xthickness = 6 + + base[NORMAL] = "#fdfdfd" + base[INSENSITIVE] = "#f4f5f6" + + text[NORMAL] = "#70788d" + + engine "pixmap" { + + image { + function = SHADOW + detail = "entry" + state = NORMAL + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = INSENSITIVE + shadow = IN + file = "menubar-toolbar/toolbar-entry-border-disabled-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + state = ACTIVE + file = "menubar-toolbar/toolbar-entry-border-active-bg.png" + border = { 12, 12, 12, 12 } + stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = NORMAL + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + image { + function = FLAT_BOX + detail = "entry_bg" + state = ACTIVE + overlay_file = "assets/null.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + } +} + +#Chromium +style "chrome-gtk-frame" { + + ChromeGtkFrame::frame-color = "#e7e8eb" + ChromeGtkFrame::inactive-frame-color = "#e7e8eb" + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) + + ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) + ChromeGtkFrame::incognito-inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-gradient-color = @bg_color + + ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) + ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color + +} + +widget_class "*<GtkMenuBar>*" style "menubar" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" + +widget_class "*ThunarWindow*<GtkToolbar>" style "menubar" +widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar" + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text" + +# Whitelist for dark toolbars +widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless" +widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" +widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry" diff --git a/common/gtk-2.0/menubar-toolbar/menubar.png b/common/gtk-2.0/menubar-toolbar/menubar.png Binary files differnew file mode 100644 index 0000000..ff49952 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/menubar.png diff --git a/common/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/common/gtk-2.0/menubar-toolbar/menubar_button-dark.png Binary files differnew file mode 100644 index 0000000..717575a --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/menubar_button-dark.png diff --git a/common/gtk-2.0/menubar-toolbar/menubar_button.png b/common/gtk-2.0/menubar-toolbar/menubar_button.png Binary files differnew file mode 100644 index 0000000..717575a --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/menubar_button.png diff --git a/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png Binary files differnew file mode 100644 index 0000000..f8ce4d8 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png diff --git a/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png Binary files differnew file mode 100644 index 0000000..c978290 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png diff --git a/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png Binary files differnew file mode 100644 index 0000000..3849377 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png diff --git a/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png Binary files differnew file mode 100644 index 0000000..1bef4f5 --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png diff --git a/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png Binary files differnew file mode 100644 index 0000000..227548c --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png diff --git a/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png Binary files differnew file mode 100644 index 0000000..d5dea4a --- /dev/null +++ b/common/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png diff --git a/common/gtk-2.0/render-dark-assets.sh b/common/gtk-2.0/render-dark-assets.sh new file mode 100755 index 0000000..6b9c823 --- /dev/null +++ b/common/gtk-2.0/render-dark-assets.sh @@ -0,0 +1,23 @@ +#! /bin/bash + +INKSCAPE="/usr/bin/inkscape" +OPTIPNG="/usr/bin/optipng" + +SRC_FILE="assets-dark.svg" +ASSETS_DIR="assets-dark" +INDEX="assets.txt" + +for i in `cat $INDEX` +do +if [ -f $ASSETS_DIR/$i.png ]; then + echo $ASSETS_DIR/$i.png exists. +else + echo + echo Rendering $ASSETS_DIR/$i.png + $INKSCAPE --export-id=$i \ + --export-id-only \ + --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null #\ + # && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png +fi +done +exit 0 diff --git a/common/gtk-3.0/3.14/_applications.scss b/common/gtk-3.0/3.14/_applications.scss index f84789e..fdf34be 100644 --- a/common/gtk-3.0/3.14/_applications.scss +++ b/common/gtk-3.0/3.14/_applications.scss @@ -40,8 +40,8 @@ TerminalWindow { .notebook { &.header.top { - box-shadow: inset 0 1px darken(opacify($header_bg, 1), 7%), - inset 0 -1px lighten($borders_color, 5%); + box-shadow: inset 0 1px opacify($header_border, 1), + inset 0 -1px if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); } tab { @@ -51,16 +51,12 @@ TerminalWindow { &:backdrop { color: transparentize($header_fg, 0.3); } } - &.reorderable-page.top:hover { - border-bottom-color: darken(opacify($header_bg, 1), 7%); - } - &.reorderable-page.top:active, &.reorderable-page.top:active:hover { background-color: opacify($header_bg, 1); - border-color: darken(opacify($header_bg, 1), 7%); + border-color: opacify($header_border, 1); - &:backdrop { background-color: lighten($header_bg, 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } } @@ -138,7 +134,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { // // Gedit // -.gedit-headerbar-paned { color: darken($header_bg, 7%); } +.gedit-headerbar-paned { color: $header_border; } .open-document-selector-listbox-row { border-bottom: 1px solid darken($bg_color, 5%); @@ -555,9 +551,9 @@ MarlinViewWindow *:selected:focus { // Gala // .gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); + border: 1px solid if($variant=='light', rgba(0, 0, 0, 0.35), $borders_color); border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); background-image: linear-gradient(to bottom, $base_color); background-color: transparent; @@ -647,8 +643,8 @@ PantheonTerminalPantheonTerminalWindow.background { .notebook { &.header.top { - box-shadow: inset 0 1px darken(opacify($header_bg, 1), 7%), - inset 0 -1px lighten($borders_color, 5%); + box-shadow: inset 0 1px opacify($header_border, 1), + inset 0 -1px if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); } } } diff --git a/common/gtk-3.0/3.14/_colors-public.scss b/common/gtk-3.0/3.14/_colors-public.scss index c281d89..0590a00 100644 --- a/common/gtk-3.0/3.14/_colors-public.scss +++ b/common/gtk-3.0/3.14/_colors-public.scss @@ -31,8 +31,8 @@ @define-color placeholder_text_color #A8A8A8; //WM -$wm_highlight: lighten(opacify($header_bg, 1), 4%); -$wm_bg_unfocused: opacify(lighten($header_bg, 3%), 1); +$wm_highlight: lighten(opacify($header_bg, 1), 3%); +$wm_bg_unfocused: opacify($header_bg_backdrop, 1); @define-color wm_title #{"" + $header_fg}; @define-color wm_unfocused_title alpha(#{"" + $header_fg}, 0.7); @@ -43,6 +43,34 @@ $wm_bg_unfocused: opacify(lighten($header_bg, 3%), 1); @define-color wm_highlight #{"" + $wm_highlight}; @define-color wm_shadow alpha(black, 0.35); +//WM Buttons + +// Close +@define-color wm_button_close_bg #{"" + $wm_button_close_bg}; +@define-color wm_button_close_hover_bg #{"" + $wm_button_close_hover_bg}; +@define-color wm_button_close_active_bg #{"" + $wm_button_close_active_bg}; + +@define-color wm_icon_close_bg #{"" + $wm_icon_close_bg}; +@define-color wm_icon_close_hover_bg #{"" + $wm_icon_close_hover_bg}; +@define-color wm_icon_close_active_bg #{"" + $wm_icon_close_active_bg}; + +// Minimize, Maximize +@define-color wm_button_bg #{"" + $wm_button_bg}; +@define-color wm_button_unfocused_bg #{"" + $wm_button_unfocused_bg}; +@define-color wm_button_hover_bg #{"" + $wm_button_hover_bg}; +@define-color wm_button_active_bg #{"" + $wm_button_active_bg}; + +@define-color wm_button_border #{"" + $wm_button_border}; +@define-color wm_button_unfocused_border #{"" + $wm_button_unfocused_border}; +@define-color wm_button_hover_border #{"" + $wm_button_hover_border}; +@define-color wm_button_active_border #{"" + $wm_button_active_border}; + +@define-color wm_icon_bg #{"" + $wm_icon_bg}; +@define-color wm_icon_unfocused_bg #{"" + $wm_icon_unfocused_bg}; +@define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; +@define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; + + //FIXME this is really an API @define-color content_view_bg #{"" + $base_color}; diff --git a/common/gtk-3.0/3.14/_colors.scss b/common/gtk-3.0/3.14/_colors.scss index a5645ec..77d9d21 100644 --- a/common/gtk-3.0/3.14/_colors.scss +++ b/common/gtk-3.0/3.14/_colors.scss @@ -2,25 +2,27 @@ // it gets @if ed depending on $variant -$base_color: #ffffff; -$text_color: #5c616c; -$bg_color: #f9fafb; -$fg_color: #5c616c; +$base_color: if($variant =='light', #ffffff, #383C45); +$text_color: if($variant == 'light', #5c616c, #D3DAE3); +$bg_color: if($variant =='light', #F5F6F7, #444852); +$fg_color: if($variant =='light', #5c616c, #D3DAE3); $selected_fg_color: #ffffff; $selected_bg_color: #5294E2; $selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: darken($bg_color,9%); +$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,10%)); -$link_color: darken($selected_bg_color,10%); -$link_visited_color: darken($selected_bg_color,20%); +$link_color: if($variant == 'light', darken($selected_bg_color,10%), + lighten($selected_bg_color,20%)); +$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), + lighten($selected_bg_color,10%)); -$selection_mode_bg: transparentize($selected_bg_color, 0.05); +$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); $warning_color: #F27835; $error_color: #FC4138; $success_color: #73d216; $destructive_color: #FA4349; -$suggested_color: #9EA4B5; +$suggested_color: if($variant == 'light', #9EA4B5, #5B5F69); $osd_fg_color: #A8ADB5; $osd_bg_color: transparentize(#3c4049, 0.05); @@ -36,23 +38,65 @@ $tooltip_fg: #edf5fb; $tooltip_borders_color: transparentize(white, 0.9); //insensitive state derived colors -$insensitive_fg_color: transparentize($fg_color, 0.45); -$insensitive_bg_color: mix($bg_color, $base_color, 40%); +$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); +$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); -$entry_bg: $base_color; -$entry_border: #cfd6e6; +$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); +$entry_border: if($variant == 'light', #cfd6e6, darken($borders_color, 0%)); $entry_focus_border: $selected_bg_color; -$button_bg: lighten($bg_color, 1%); +$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); $button_border: $entry_border; -$header_bg: if($transparency == 'true', transparentize(#e7e8eb, 0.05), #e7e8eb); -$header_fg: saturate(transparentize($fg_color, 0.2), 10%); +$header_bg: red; +@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#e7e8eb, 0.05); } +@if $transparency=='false' and $variant=='light' { $header_bg: #e7e8eb; } +@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#2f343b, 0.03); } +@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #2f343b; } + +//$header_bg: if(($darker == 'true' or $variant == 'dark') and $transparency == 'true', transparentize(#2f343b, 0.03), #2f343b); + +$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); + +$header_border: if($variant == 'light', darken($header_bg, 7%), darken($header_bg, 5%)); + +$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); +$header_fg: if($darker == 'true', saturate(transparentize(#D3DAE3, 0.2), 10%), $header_fg); + +$dark_sidebar_bg: if($transparency == 'true' and $variant == 'light', $osd_bg_color, opacify($osd_bg_color, 1)); +@if $variant==dark { $dark_sidebar_bg: if($transparency == 'true', lighten($osd_bg_color, 4%), lighten(opacify($osd_bg_color, 1), 4%)); } -$dark_sidebar_bg: if($transparency == 'true', $osd_bg_color, opacify($osd_bg_color, 1)); $dark_sidebar_fg: $osd_fg_color; -$dark_sidebar_border: $dark_sidebar_bg; +$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 10%)); -$panel_bg: darken($dark_sidebar_bg, 10%); +$panel_bg: darken($osd_bg_color, 10%); $panel_fg: $dark_sidebar_fg; + + +//WM Buttons + +// Close +$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f37076, #e45e65); +$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f79da1, #f48085); +$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #ef4048, #e6262f); + +$wm_icon_close_bg: $selected_fg_color; +$wm_icon_close_hover_bg: $selected_fg_color; +$wm_icon_close_active_bg: $selected_fg_color; + +// Minimize, Maximize +$wm_button_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #272c32); +$wm_button_unfocused_bg: if($variant == 'light' and $darker == 'false', #f6f7f8, #2a3035); +$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #272c32); +$wm_button_active_bg: $selected_bg_color; + +$wm_button_border: if($variant == 'light' and $darker == 'false', #d8dae0, #191C21); +$wm_button_unfocused_border: if($variant == 'light' and $darker == 'false', #dddee2, #1F2328); +$wm_button_hover_border: $selected_bg_color; +$wm_button_active_border: $selected_bg_color; + +$wm_icon_bg: if($variant == 'light' and $darker == 'false', #8d93a4, #939ca8); +$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #b8bcc7, #686f78); +$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #70788d, #afb8c5); +$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gtk-3.0/3.14/_common.scss b/common/gtk-3.0/3.14/_common.scss index 1d58f51..24b79b2 100644 --- a/common/gtk-3.0/3.14/_common.scss +++ b/common/gtk-3.0/3.14/_common.scss @@ -3,6 +3,8 @@ } $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); +$asset_suffix: if($variant=='dark', '-dark', ''); // use dark assets in dark variant +$darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); * { background-clip: padding-box; @@ -230,7 +232,10 @@ GtkFlowBox .grid-child { border-radius: 0; } - &:focus { @include entry(focus); } + &:focus { + background-clip: border-box; + @include entry(focus); + } &:insensitive { @include entry(insensitive); } @@ -408,6 +413,7 @@ $_dot_color: $selected_bg_color; -gtk-image-effect: highlight; } &:active, &:checked { + background-clip: border-box; @include button(active); transition-duration: 50ms; } @@ -600,10 +606,11 @@ $_dot_color: $selected_bg_color; to(transparent)); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; - background-position: right 3px, right 4px; - + @if $variant == 'light' { background-position: right 3px, right 4px; } + @else { background-position: right 3px, right 2px; } &:dir(rtl) { - background-position: left 3px, left 4px; + @if $variant == 'light' { background-position: left 3px, left 4px; } + @else { background-position: left 3px, left 2px; } } } @@ -984,7 +991,7 @@ GtkComboBox { border-image: linear-gradient(to bottom, opacify($header_bg, 1), darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } .separator { @extend %header_separator; } @@ -1022,7 +1029,7 @@ GtkComboBox { border-width: 0 0 1px; border-style: solid; border-radius: 0; - border-color: darken($header_bg, 7%); + border-color: $header_border; color: $header_fg; background-color: opacify($header_bg, 1); @@ -1031,9 +1038,9 @@ GtkComboBox { &:backdrop { color: transparentize($header_fg, 0.3); - background-color: lighten(opacify($header_bg, 1), 3%); + background-color: opacify($header_bg_backdrop, 1); - .csd & { background-color: lighten($header_bg, 3%); } // Transparent header-bars only in csd windows + .csd & { background-color: $header_bg_backdrop; } // Transparent header-bars only in csd windows } .title { @@ -1116,14 +1123,14 @@ GtkComboBox { .maximized & { background-color: opacify($header_bg, 1); - &:backdrop { background-color: opacify(lighten($header_bg, 3%), 1); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } .titlebar { padding-left: 7px; padding-right: 7px; - border-radius: 4px 4px 0 0; + border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); color: $header_fg; background-color: opacify($header_bg, 1); box-shadow: inset 0 1px lighten($header_bg, 3%); @@ -1132,19 +1139,18 @@ GtkComboBox { &:backdrop { color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg, 1); + background-color: opacify($header_bg_backdrop, 1); - .csd & { background-color: lighten($header_bg, 3%); } + .csd & { background-color: $header_bg_backdrop; } } .maximized & { background-color: opacify($header_bg, 1); - &:backdrop { background-color: opacify(lighten($header_bg, 3%), 1); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } - .titlebar .titlebar, .titlebar .titlebar:backdrop { background-color: transparent; } @@ -1317,9 +1323,13 @@ GtkComboBox { &:insensitive { background-image: linear-gradient(to bottom, transparentize($header_fg, 0.7)); } } &.slider { - background-image: linear-gradient(to bottom, mix($base_color, $header_bg, 90%)); + background-image: linear-gradient(to bottom, if($darker == 'false', mix($base_color, $header_bg, 90%), darken($header_bg, 4%))); + + &:insensitive { + background-image: linear-gradient(to bottom, if($darker == 'false', mix($base_color, $header_bg, 40%), darken($header_bg, 1%))); - &:insensitive { background-image: linear-gradient(to bottom, mix($base_color, $header_bg, 40%)); } + @if $darker=='true' { border-color: mix($header_bg, $selected_bg_color, 60%); } + } } } } @@ -1444,10 +1454,10 @@ column-header.button.dnd { // for treeview-like derive widgets border-style: none solid none none; border-radius: 0; border-image: linear-gradient(to bottom, - transparentize(black, 1) 20%, - transparentize(black, 0.89) 20%, - transparentize(black, 0.89) 80%, - transparentize(black, 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; &:active { background-color: $base_color; } &:insensitive { @@ -1465,7 +1475,7 @@ column-header.button.dnd { // for treeview-like derive widgets background-color: opacify($header_bg, 1); color: $header_fg; - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } & > .menuitem { padding: 6px 8px; @@ -1500,8 +1510,8 @@ column-header.button.dnd { // for treeview-like derive widgets padding: 5px; &:hover { color: $fg_color; - background-color: transparentize(black, 0.96); - border: solid transparentize(black, 0.92); + background-color: if($variant == 'light', transparentize(black, 0.96), transparentize(white, 0.95)); + border: solid if($variant == 'light', transparentize(black, 0.92), transparentize(white, 0.93)); border-width: 1px 0 1px 0; } &:insensitive { @@ -1543,7 +1553,7 @@ column-header.button.dnd { // for treeview-like derive widgets background-clip: border-box; background-color: $base_color; - box-shadow: 0 2px 6px 1px transparentize(black, 0.93); + box-shadow: 0 2px 6px 1px if($variant=='light', transparentize(black, 0.93), transparentize(black, 0.65)); & .separator { color: transparentize($base_color, 1); } GtkLabel.separator { @extend GtkLabel.separator; } // Noice @@ -1602,7 +1612,7 @@ column-header.button.dnd { // for treeview-like derive widgets &.header { // FIXME: double borders in some case, can't fix it w/o a class tho // FIXME: doesn't work on dark var - background-color: $base_color; + background-color: mix($base_color, $bg_color, 50%); // this is the shading of the header behind the tabs &.frame { @@ -1613,7 +1623,7 @@ column-header.button.dnd { // for treeview-like derive widgets &.left { border-right-width: 0; } } - $_header_border: lighten($borders_color, 5%); + $_header_border: if($variant == 'light', lighten($borders_color, 5%), $borders_color); &.top { box-shadow: inset 0 -1px $_header_border; // border } @@ -1673,8 +1683,8 @@ column-header.button.dnd { // for treeview-like derive widgets border-width: 1px; border-#{$_tab}-width: 0; border-color: $borders_color; - background-color: transparentize(black, 0.98); - &:hover { background-color: transparentize(black, 0.98); } + background-color: if($variant == 'light', transparentize(black, 0.965), transparentize(black, 0.85)); + &:hover { background-color: if($variant == 'light', transparentize(black, 0.965), transparentize(black, 0.85)); } } } } @@ -1772,6 +1782,7 @@ column-header.button.dnd { // for treeview-like derive widgets GtkSwitch { font: 1; -GtkSwitch-slider-width: 41; + outline-color: transparent; &.trough, &.slider { background-size: 52px 24px; @@ -1787,7 +1798,7 @@ GtkSwitch { } } -@each $i,$j in ('',''), ('.header-bar ','-header'), ('.list-row:selected ','-selected') { +@each $i,$j in ('',''), ('.list-row:selected ','-selected') { @each $k,$l in ('',''), (':active','-active'), @@ -1797,13 +1808,22 @@ GtkSwitch { // load switch troughs from .png files in assets directory #{$i}GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}#{$j}.png"),url("assets/switch#{$l}#{$j}@2.png")); + background-image: -gtk-scaled(url("assets/switch#{$l}#{$asset_suffix}.png"),url("assets/switch#{$l}#{$asset_suffix}@2.png")); + } + + .list-row:selected GtkSwitch.trough#{$k} { + background-image: -gtk-scaled(url("assets/switch#{$l}-selected.png"),url("assets/switch#{$l}-selected@2.png")); + } + + .header-bar GtkSwitch.trough#{$k}, + .primary-toolbar GtkSwitch.trough#{$k} { + background-image: -gtk-scaled(url("assets/switch#{$l}-header#{$darker_asset_suffix}.png"),url("assets/switch#{$l}-header#{$darker_asset_suffix}@2.png")); } // load switch sliders from .png files in assets directory //#{$i}GtkSwitch.slider#{$k} { - // background-image: -gtk-scaled(url("assets/switch-slider#{$l}#{$j}.png"),url("assets/switch-slider#{$l}#{$j}@2.png")); + // background-image: -gtk-scaled(url("assets/switch-slider#{$l}#{$j}#{$asset_suffix}.png"),url("assets/switch-slider#{$l}#{$j}#{$asset_suffix}@2.png")); //} } } @@ -1826,8 +1846,8 @@ GtkSwitch { (':checked', '-checked'), (':checked:insensitive','-checked-insensitive') { .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}.png"), - url("assets/#{$a}#{$as}@2.png")); + -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"), + url("assets/#{$a}#{$as}#{$asset_suffix}@2.png")); } // the borders of checks and radios are // too similar in luminosity to the selected background color, hence @@ -1845,8 +1865,8 @@ GtkSwitch { (':checked', '-checked-selectionmode') { GtkIconView.view.check#{$s}, GtkFlowBox.view.check#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}.png"), - url("assets/checkbox#{$as}@2.png")); + -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}#{$asset_suffix}.png"), + url("assets/checkbox#{$as}#{$asset_suffix}@2.png")); background-color: transparent; } } @@ -1880,7 +1900,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } &.slider { background-clip: border-box; - background-image: linear-gradient(to bottom, $base_color); + background-image: linear-gradient(to bottom, $entry_bg); border: 1px solid $selected_bg_color; border-radius: 50%; box-shadow: none; @@ -1890,7 +1910,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { border-color: $selected_bg_color; } &:insensitive { - background-image: linear-gradient(to bottom, mix($base_color, $bg_color, 55%)); + background-image: linear-gradient(to bottom, mix($entry_bg, $bg_color, 55%)); border-color: mix($selected_bg_color, $bg_color, 55%); } &:active { @@ -1928,9 +1948,12 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } } &.trough { + + $_scale_trough_bg: if($variant == 'light', $button_border, darken($base_color, 4%)); + border: none; border-radius: 2.5px; - background-image: linear-gradient(to bottom, $button_border); + background-image: linear-gradient(to bottom, $_scale_trough_bg); &.highlight { background-image: linear-gradient(to bottom, $selected_bg_color); @@ -1939,7 +1962,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } } &:insensitive { - background-image: linear-gradient(to bottom, transparentize($button_border, 0.45)); + background-image: linear-gradient(to bottom, transparentize($_scale_trough_bg, 0.45)); } //OSD troughs @@ -2005,7 +2028,7 @@ GtkProgressBar { GtkProgressBar.trough { border: none; border-radius: 3px; - background-color: $button_border; + background-color: if($variant == 'light', $button_border, darken($base_color, 4%)); &.osd { border-style: none; @@ -2119,7 +2142,7 @@ GtkScrolledWindow { border-radius: 0; // and no rounded corners box-shadow: none; // and no box-shadow &:hover { - background-color: transparentize(black, 0.95); + background-color: if($variant == 'light', transparentize(black, 0.95), transparentize(white, 0.97)); } &:active { color: $fg_color; @@ -2152,14 +2175,27 @@ GtkScrolledWindow { .app-notification, .app-notification.frame { + @extend %osd; padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: $osd_bg_color; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0,0,0,0.2); - background-color: $base_color; - - background-clip: padding-box; + border-color: darken($osd_bg_color, 10%); + + .button { + @include button(osd); + &.flat { + @extend %undecorated_button; + border-color: transparentize($selected_bg_color, 1); + &:insensitive { @extend %undecorated_button; } + } + &:hover { @include button(osd-hover); } + &:active, &:checked { @include button(osd-active); } + &:insensitive { @include button(osd-insensitive); + } + } } /************* @@ -2518,22 +2554,23 @@ GtkVolumeButton.button { padding: 8px; } *********************/ .window-frame { - border-radius: 4px 4px 0 0; + border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); // lamefun trick to get rounded borders regardless of CSD use border-width: 0px; // this needs to be transparent // see bug #722563 - $_wm_border: transparentize(black, 0.9); - $_wm_border_backdrop: transparentize(black, 0.9); + $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); - box-shadow: 0 0 0 1px $_wm_border, 0 4px 8px 1px $_wm_border; + box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), + 0 4px 8px 1px if($darker == 'false', $_wm_border, opacify($_wm_border, 0.15)); /* this is used for the resize cursor area */ margin: 10px; &:backdrop { - box-shadow: 0 0 0 1px $_wm_border, 0 4px 5px 2px $_wm_border_backdrop; + box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), + 0 4px 5px 2px if($darker == 'false', $_wm_border, opacify($_wm_border, 0.15)); } &.tiled { border-radius: 0; @@ -2541,8 +2578,8 @@ GtkVolumeButton.button { padding: 8px; } &.csd { &.popup, &.menu { border-radius: 3px; - box-shadow: 0 3px 6px $_wm_border, - 0 0 0 1px $_wm_border; + box-shadow: 0 3px 6px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.1)), + 0 0 0 1px if($variant == 'light', $_wm_border, darken($base_color, 10%)); } &.tooltip { border-radius: 2px; @@ -2582,11 +2619,11 @@ GtkVolumeButton.button { padding: 8px; } .right:dir(rtl) .button.titlebutton:nth-child(3), .left .button.titlebutton:nth-child(3), .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url('assets/titlebutton-min.png'),url('assets/titlebutton-min@2.png')); + background-image: -gtk-scaled(url('assets/titlebutton-min#{$darker_asset_suffix}.png'),url('assets/titlebutton-min#{$darker_asset_suffix}@2.png')); - &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-min-hover.png'),url('assets/titlebutton-min-hover@2.png')); } - &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-min-active.png'),url('assets/titlebutton-min-active@2.png')); } - &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-min-backdrop.png'),url('assets/titlebutton-min-backdrop@2.png')); } + &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-min-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-min-hover#{$darker_asset_suffix}@2.png')); } + &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-min-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-min-active#{$darker_asset_suffix}@2.png')); } + &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-min-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-min-backdrop#{$darker_asset_suffix}@2.png')); } } // Maximize @@ -2595,11 +2632,11 @@ GtkVolumeButton.button { padding: 8px; } .right:dir(rtl) .button.titlebutton:nth-child(2), .left .button.titlebutton:nth-child(2), .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url('assets/titlebutton-max.png'),url('assets/titlebutton-max@2.png')); + background-image: -gtk-scaled(url('assets/titlebutton-max#{$darker_asset_suffix}.png'),url('assets/titlebutton-max#{$darker_asset_suffix}@2.png')); - &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-max-hover.png'),url('assets/titlebutton-max-hover@2.png')); } - &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-max-active.png'),url('assets/titlebutton-max-active@2.png')); } - &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-max-backdrop.png'),url('assets/titlebutton-max-backdrop@2.png')); } + &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-max-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-max-hover#{$darker_asset_suffix}@2.png')); } + &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-max-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-max-active#{$darker_asset_suffix}@2.png')); } + &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-max-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-max-backdrop#{$darker_asset_suffix}@2.png')); } } // Close @@ -2608,11 +2645,11 @@ GtkVolumeButton.button { padding: 8px; } .right:dir(rtl) .button.titlebutton:first-child, .left .button.titlebutton:first-child, .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url('assets/titlebutton-close.png'),url('assets/titlebutton-close@2.png')); + background-image: -gtk-scaled(url('assets/titlebutton-close#{$darker_asset_suffix}.png'),url('assets/titlebutton-close#{$darker_asset_suffix}@2.png')); - &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-hover.png'),url('assets/titlebutton-close-hover@2.png')); } - &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-active.png'),url('assets/titlebutton-close-active@2.png')); } - &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-close-backdrop.png'),url('assets/titlebutton-close-backdrop@2.png')); } + &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-hover#{$darker_asset_suffix}@2.png')); } + &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-active#{$darker_asset_suffix}@2.png')); } + &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-close-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-backdrop#{$darker_asset_suffix}@2.png')); } } } diff --git a/common/gtk-3.0/3.14/_drawing.scss b/common/gtk-3.0/3.14/_drawing.scss index 0300ce1..431f03e 100644 --- a/common/gtk-3.0/3.14/_drawing.scss +++ b/common/gtk-3.0/3.14/_drawing.scss @@ -52,13 +52,17 @@ background-image: linear-gradient(to bottom, transparentize($entry_bg, 0.45)); } + $_header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 4%), 0.1), transparentize($base_color, 0.1)); + $_header_entry_border: if($darker == 'true' or $variant == 'dark', darken($header_bg, 10%), transparentize($header_fg, 0.7)); + @if $t==header-normal { // // normal header-bar entry // + color: $header_fg; - border-color: transparentize($header_fg, 0.7); - background-image: linear-gradient(to bottom, transparentize($base_color, 0.1)); + border-color: $_header_entry_border; + background-image: linear-gradient(to bottom, $_header_entry_bg); background-color: transparent; &.image, &.image:hover { color: inherit; } @@ -78,7 +82,7 @@ // insensitive header-bar entry // color: transparentize($header_fg, 0.45); - background-image: linear-gradient(to bottom, transparentize($base_color, 0.45)); + background-image: linear-gradient(to bottom, transparentize($_header_entry_bg, 0.35)); } @if $t==osd { @@ -175,6 +179,9 @@ > GtkLabel { color: inherit; } } + $_header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 3%), 0.1), transparentize($button_bg, 0.1)); + $_header_button_border: if($darker == 'true' or $variant == 'dark', darken($header_bg, 8%), transparentize($header_fg, 0.7)); + @if $t==header-normal { // // normal header-bar button @@ -192,8 +199,8 @@ // color: $header_fg; outline-color: transparentize($header_fg, 0.7); - border-color: transparentize($header_fg, 0.7); - background-color: transparentize($button_bg, 0.1); + border-color: $_header_button_border; + background-color: $_header_button_bg; } @else if $t==header-active { diff --git a/common/gtk-3.0/3.14/_transparent_widgets.scss b/common/gtk-3.0/3.14/_transparent_widgets.scss index a226c38..9b38470 100644 --- a/common/gtk-3.0/3.14/_transparent_widgets.scss +++ b/common/gtk-3.0/3.14/_transparent_widgets.scss @@ -1,5 +1,5 @@ .titlebar .separator { - color: darken($header_bg, 7%); //fixes separator in gnome-tweak-tool + color: $header_border; //fixes separator in gnome-tweak-tool } GtkFileChooserDialog .dialog-action-box { background-color: $bg_color } // fix for non gnome environments @@ -12,6 +12,16 @@ NemoWindow { -GtkPaned-handle-size: 0; } +@if $variant==dark { + GtkFileChooserDialog, + NautilusWindow , + NemoWindow { + .sidebar { border-right: 1px solid $dark_sidebar_border; } + + .sidebar:dir(rtl) { border-left: 1px solid $dark_sidebar_border; } + } +} + // Dark transparent sidebars GtkFileChooserDialog, NautilusWindow, @@ -85,7 +95,25 @@ GeditWindow.background.csd { .pane-separator, .pane-separator:hover { background-color: $dark_sidebar_border; } - .titlebar .pane-separator { background-color: darken($header_bg, 7%); } + .titlebar .pane-separator, + &.maximized .titlebar .pane-separator, + .titlebar .pane-separator:backdrop, + &.maximized .titlebar .pane-separator:backdrop { background-color: $header_border; } + + .titlebar { background-color: transparent; } + + &.maximized .titlebar { + background-color: opacify($header_bg, 1); + + &:backdrop { background-color: $header_bg_backdrop; } + } + + .gedit-titlebar-left.titlebar, + .gedit-titlebar-right.titlebar { + background-color: $header_bg; + + &:backdrop { background-color: $header_bg_backdrop; } + } } .gedit-bottom-panel-paned { background-color: $base_color; } @@ -194,7 +222,7 @@ GeditWindow.background.csd GeditFileBrowserView.view { // Filechooser bottom bar GtkFileChooserDialog .action-bar.frame { background-color: darken($dark_sidebar_bg, 2%); - border-color: darken($dark_sidebar_bg, 7%); + border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%)); GtkLabel { color: $dark_sidebar_fg; } diff --git a/common/gtk-3.0/3.14/_unity.scss b/common/gtk-3.0/3.14/_unity.scss index e50b1d9..34616fc 100644 --- a/common/gtk-3.0/3.14/_unity.scss +++ b/common/gtk-3.0/3.14/_unity.scss @@ -18,7 +18,7 @@ UnityDecoration { -UnityDecoration-title-alignment: 0.0; &.top { - border: 1px solid rgba(0, 0, 0, 0.1); + border: 1px solid if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9)); border-bottom-width: 0; border-radius: 4px 4px 0 0; padding: 1px 6px 0 6px; @@ -30,13 +30,13 @@ UnityDecoration { &:backdrop { border-bottom-width: 0; - background-image: linear-gradient(to bottom, lighten(opacify($header_bg, 1), 3%)); + background-image: linear-gradient(to bottom, opacify($header_bg_backdrop, 1)); color: transparentize($header_fg, 0.3); } } &.left, &.right, &.bottom, &.left:backdrop, &.right:backdrop, &.bottom:backdrop { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); + background-image: linear-gradient(to bottom, if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9))); } } diff --git a/common/gtk-3.0/3.14/assets.svg b/common/gtk-3.0/3.14/assets.svg index 8a9b917..49d3928 100644 --- a/common/gtk-3.0/3.14/assets.svg +++ b/common/gtk-3.0/3.14/assets.svg @@ -9,7 +9,7 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="242" + width="484.00006" height="276" id="svg9892" version="1.1" @@ -24,12 +24,12 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.99999999" - inkscape:cx="226.32185" - inkscape:cy="119.82778" + inkscape:zoom="1" + inkscape:cx="432.53015" + inkscape:cy="241.46841" inkscape:document-units="px" inkscape:current-layer="layer1" - showgrid="true" + showgrid="false" showborder="false" inkscape:window-width="1366" inkscape:window-height="720" @@ -71,7 +71,7 @@ <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> + <dc:title /> </cc:Work> </rdf:RDF> </metadata> @@ -2266,7 +2266,7 @@ inkscape:connector-curvature="0" d="m 1373,254 0,2 6,0 0,-2 z" id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" /> </g> <rect @@ -2695,7 +2695,7 @@ </g> <path id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="display:inline;opacity:0.8;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" sodipodi:nodetypes="csscccsscc" /> @@ -2863,7 +2863,7 @@ sodipodi:nodetypes="csscccsscc" inkscape:connector-curvature="0" d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="opacity:0.99999999;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4293-6" /> </g> </g> @@ -2947,7 +2947,7 @@ id="layer12-45-6"> <path sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.99999999;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" id="rect9057-8" d="m 86.0002,974 0,2 6,0 0,-2 z" inkscape:connector-curvature="0" /> @@ -3277,7 +3277,7 @@ inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" id="path10839-9-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#70788d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> </g> </g> @@ -3335,7 +3335,7 @@ </g> <path id="path4293-5" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="display:inline;opacity:0.65;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" sodipodi:nodetypes="csscccsscc" /> @@ -3382,7 +3382,7 @@ inkscape:connector-curvature="0" d="m 1373,254 0,2 6,0 0,-2 z" id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" /> </g> <rect @@ -3393,5 +3393,2244 @@ x="587" y="-168.63782" /> </g> + <rect + ry="0" + rx="0" + y="147.63782" + x="234" + height="138" + width="121" + id="rect18028-4" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#444852;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" + transform="scale(1,-1)" /> + <g + transform="translate(220.00001,-229.00001)" + style="display:inline;opacity:1" + id="checkbox-checked-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-59" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-54" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-8"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-4" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-5" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-2" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-11" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-68"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-4" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-37" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-97" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-6" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-8" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0.66666085" + rx="0.66666085" + y="1033.3622" + x="8" + height="1.9999826" + width="5" + id="rect3977-39-90" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + ry="0" + y="1027.3622" + x="11" + height="7.9999828" + width="2" + id="rect3979-7-60" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-5" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(239.00001,-229.00001)" + style="display:inline;opacity:1" + id="checkbox-mixed-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-4-5" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-0-0" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-2-0"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-7-81" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-1-7" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-5-0" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-8-6" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-9-3"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-0-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-9-3" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-9-8" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-9-34" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-0-9" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-1-9" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0" + y="-725.95471" + x="-738.80396" + height="7.9999828" + width="2" + id="rect3979-7-3-4" + style="fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-4-5" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(201.00001,-229.00001)" + style="display:inline;opacity:1" + id="radio-checked-dark" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-1" + style="display:inline"> + <g + id="g10964-6-63"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-8" + style="display:inline"> + <g + style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1" + id="g7025-09-0-5" + transform="translate(0,1.0687628)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-6-2" + style="display:inline;fill:#000000;fill-opacity:1"> + <g + id="g5428-8-1-7-5-4-7" + style="fill:#000000;fill-opacity:1" /> + </g> + </g> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-09"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-28" + style="display:inline"> + <g + id="g5428-8-1-7-5-64"> + <rect + rx="14.692495" + y="126.56255" + x="51.610752" + height="28.919107" + width="29.384991" + id="rect5147-9-1-7-2-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459554" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="1.9988754" + y="6.3621826" + x="122" + height="4" + width="4" + id="use15101-5-7-55" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2" /> + </g> + <g + transform="translate(201.00001,-229.00001)" + style="display:inline;opacity:1" + id="radio-mixed-dark" + inkscape:label="#g11194"> + <g + id="g11220-5"> + <g + transform="translate(19,-4.6992607e-6)" + style="display:inline" + id="radio-checked-7-40" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-6-5" + style="display:inline"> + <g + id="g10964-6-0-7"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-0-0" + style="display:inline"> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-7-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-3-3"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-7-19" + style="display:inline"> + <g + id="g5428-8-1-7-5-9-7"> + <rect + rx="14.692497" + y="126.56256" + x="51.610752" + height="28.919115" + width="29.384995" + id="rect5147-9-1-7-2-6-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459558" /> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + ry="0" + y="139" + x="-9.3621826" + height="7.9999828" + width="2" + id="rect3979-7-3-9-5" + style="display:inline;fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(0,-1,1,0,0,0)" /> + </g> + </g> + <g + transform="translate(-767.99998,-618.63782)" + style="display:inline;opacity:1" + id="switch-active-dark" + inkscape:label="#g4829"> + <g + id="layer1-9-0-51" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-8"> + <g + id="g3900-1-87-0" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-3" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-8-7" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-75" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-8"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-13" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-65" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-767.99998,-613.63782)" + style="display:inline;opacity:1" + id="switch-dark" + inkscape:label="#g4820"> + <g + id="layer1-9-13" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-2-2"> + <g + id="g3900-12-8" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-32-7" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5f6578;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-07-4" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-7-4" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-46" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + transform="translate(-704.99998,-618.63782)" + style="display:inline;opacity:0.55" + id="switch-active-insensitive-dark" + inkscape:label="#g4829-8"> + <g + id="layer1-9-0-5-7" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-1-7"> + <g + id="g3900-1-3-1-6" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-9-67" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-2-5-36" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-8-4" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-6-4"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-3-6" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-6-69" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-704.99998,-613.63782)" + style="display:inline;opacity:0.55" + id="switch-insensitive-dark" + inkscape:label="#g4820-8"> + <g + id="layer1-9-1-3" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-88-45"> + <g + id="g3900-4-69" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-5-12" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5f6578;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-02-4" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-1-7-3" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-5-5" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + transform="translate(220.00001,-229.00001)" + style="display:inline;opacity:1" + id="checkbox-unchecked-dark" + inkscape:label="#g22047"> + <g + inkscape:label="#g21853" + id="sdsd-0-1"> + <g + id="scdsdcd-0-4" + inkscape:label="#g14325" + transform="translate(0,-30)"> + <g + style="display:inline" + id="g15812-6-6-1-4-4" + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" + id="g5489-2-9-6-8-8-9-7" + style="display:inline"> + <g + id="g5428-8-1-4-0-0-65-8" /> + </g> + </g> + <rect + y="30.362183" + x="17" + height="16" + width="16" + id="rect13523-4-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g5400-2-47"> + <rect + ry="2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#26282d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-5-7-6-3-70" + width="13" + height="12.999997" + x="18.5" + y="31.862183" + rx="2" /> + </g> + </g> + </g> + </g> + <g + transform="translate(200.00428,-229.00401)" + style="display:inline;opacity:1" + id="radio-unchecked-dark" + inkscape:label="#g10975"> + <g + id="g10964-4-5"> + <g + style="display:inline" + id="radio-unchecked2-6-5" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect14348-4-3-9" + width="17.090866" + height="17.100227" + x="206.99057" + y="261.97873" /> + <g + id="g7025-3-9"> + <g + style="display:inline" + id="g5489-2-9-3-8-0" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-83-7"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#26282d;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-7-61" + width="27.303804" + height="26.835894" + x="52.660122" + y="127.6043" + rx="13.224192" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(220.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="checkbox-checked-insensitive-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-5-1" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-01-6" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-9-7"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-2-8" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-3-7" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-8-8" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-1-24" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-4-3"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-3-9" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-95-4" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-3-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-1-3" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-9-9" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-4-2" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0.66666085" + rx="0.66666085" + y="1033.3622" + x="8" + height="1.9999826" + width="5" + id="rect3977-39-0-3" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + ry="0" + y="1027.3622" + x="11" + height="7.9999828" + width="2" + id="rect3979-7-6-9" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-9-6" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(239.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="checkbox-mixed-insensitive-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-4-1-9" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-0-5-8" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-2-8-5"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-7-8-6" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-1-8-4" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-5-4-6" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-8-8-7" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-9-9-6"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-0-7-33" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-9-57-75" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-9-3-7" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-9-7-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-0-8-4" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-1-4-7" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0" + y="-725.95471" + x="-738.80396" + height="7.9999828" + width="2" + id="rect3979-7-3-91-5" + style="fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-4-2-21" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(201.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="radio-checked-insensitive-dark" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-8-6" + style="display:inline"> + <g + id="g10964-6-7-2"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-4-5" + style="display:inline"> + <g + style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1" + id="g7025-09-0-3-3" + transform="translate(0,1.0687628)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-6-1-7" + style="display:inline;fill:#000000;fill-opacity:1"> + <g + id="g5428-8-1-7-5-4-5-4" + style="fill:#000000;fill-opacity:1" /> + </g> + </g> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-2-7" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-5-0"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-70-6" + style="display:inline"> + <g + id="g5428-8-1-7-5-62-6"> + <rect + rx="14.692495" + y="126.56255" + x="51.610752" + height="28.919107" + width="29.384991" + id="rect5147-9-1-7-2-2-2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459554" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="1.9988754" + y="6.3621826" + x="122" + height="4" + width="4" + id="use15101-5-7-2-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2" /> + </g> + <g + transform="translate(201.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="radio-mixed-insensitive-dark" + inkscape:label="#g11194"> + <g + id="g11220-22-7"> + <g + transform="translate(19,-4.6992607e-6)" + style="display:inline" + id="radio-checked-7-4-10" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-6-0-3" + style="display:inline"> + <g + id="g10964-6-0-1-8"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-0-2-8" + style="display:inline"> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-7-5-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-3-9-4"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-7-7-8" + style="display:inline"> + <g + id="g5428-8-1-7-5-9-2-3"> + <rect + rx="14.692497" + y="126.56256" + x="51.610752" + height="28.919115" + width="29.384995" + id="rect5147-9-1-7-2-6-9-3" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459558" /> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + ry="0" + y="139" + x="-9.3621826" + height="7.9999828" + width="2" + id="rect3979-7-3-9-3-37" + style="display:inline;fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(0,-1,1,0,0,0)" /> + </g> + </g> + <g + transform="translate(220.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="checkbox-unchecked-insensitive-dark" + inkscape:label="#g22047"> + <g + inkscape:label="#g21853" + id="sdsd-0-3-0"> + <g + id="scdsdcd-0-7-1" + inkscape:label="#g14325" + transform="translate(0,-30)"> + <g + style="display:inline" + id="g15812-6-6-1-4-6-3" + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" + id="g5489-2-9-6-8-8-9-1-1" + style="display:inline"> + <g + id="g5428-8-1-4-0-0-65-4-7" /> + </g> + </g> + <rect + y="30.362183" + x="17" + height="16" + width="16" + id="rect13523-4-2-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g5400-2-4-7"> + <rect + ry="2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#26282d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-5-7-6-3-7-2" + width="13" + height="13.000001" + x="18.5" + y="31.862192" + rx="2" /> + </g> + </g> + </g> + </g> + <g + transform="translate(200.00428,-210.00001)" + style="display:inline;opacity:0.55" + id="radio-unchecked-insensitive-dark" + inkscape:label="#g10975"> + <g + id="g10964-4-8-3"> + <g + style="display:inline" + id="radio-unchecked2-6-3-0" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect14348-4-3-7-2" + width="17.090866" + height="17.100227" + x="206.99057" + y="261.97873" /> + <g + id="g7025-3-8-9"> + <g + style="display:inline" + id="g5489-2-9-3-8-9-6" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-83-9-6"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#26282d;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-7-2-6" + width="27.303804" + height="26.835888" + x="52.660122" + y="127.60432" + rx="13.224192" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + style="display:inline" + id="checkbox-checked-selectionmode-dark" + transform="translate(-227.99998,-369)" + inkscape:label="#g14055"> + <rect + ry="2" + y="183.36218" + x="466" + height="32" + width="32" + id="rect13851-5" + style="fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="2" /> + <g + transform="translate(-2.2045153,1.9730481)" + id="g14051-7"> + <path + style="display:inline;fill:#383c45;fill-opacity:1;stroke:none" + d="m 491.36072,188.95163 -9.5312,9.5625 -4.7812,-4.78125 -3.1876,3.1875 4.7813,4.78125 3.1875,3.1875 3.1562,-3.1875 9.5626,-9.5625 -3.1876,-3.1875 z" + id="rect3977-39-35-1-3-50" + inkscape:connector-curvature="0" /> + </g> + <rect + ry="2" + y="179.36218" + x="461.99997" + height="39.999992" + width="39.999989" + id="rect13851-7-3" + style="display:inline;fill:none;fill-opacity:0.55102036;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="1.9999999" /> + </g> + <g + style="display:inline" + id="checkbox-selectionmode-dark" + transform="translate(-182.99998,-369)" + inkscape:label="#g14055"> + <rect + ry="2" + y="183.86218" + x="466.50003" + height="31" + width="30.999969" + id="rect13851-8-3" + style="fill:#32363d;fill-opacity:1;stroke:#26282d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="2" /> + <g + transform="translate(-2.2045153,1.9730481)" + id="g14051-0-8"> + <path + style="display:inline;opacity:0.55;fill:#5f6578;fill-opacity:1;stroke:none" + d="m 491.36072,188.95163 -9.5312,9.5625 -4.7812,-4.78125 -3.1876,3.1875 4.7813,4.78125 3.1875,3.1875 3.1562,-3.1875 9.5626,-9.5625 -3.1876,-3.1875 z" + id="rect3977-39-35-1-3-5-2" + inkscape:connector-curvature="0" /> + </g> + <rect + ry="2" + y="179.36218" + x="461.99997" + height="39.999992" + width="39.999989" + id="rect13851-7-1" + style="display:inline;fill:none;fill-opacity:0.55102036;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="1.9999999" /> + </g> + <rect + style="display:inline;fill:#2f343b;fill-opacity:1;stroke:#222529;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect11783-3-1" + width="120.99998" + height="138" + x="355" + y="-285.63782" /> + <g + transform="translate(-646.99998,-618.63782)" + style="display:inline;opacity:1" + id="switch-active-header-dark" + inkscape:label="#g4829"> + <g + id="layer1-9-0-8-3-1" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-2-5-0"> + <g + id="g3900-1-87-1-7-9" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-7-0-8" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-8-8-7-5" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-9-7-1" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-7-3-7"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-6-0-5" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-5-9-4" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-646.99998,-613.63782)" + style="display:inline;opacity:1" + id="switch-header-dark" + inkscape:label="#g4820"> + <g + id="layer1-9-4-5-1" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-2-5-8-0"> + <g + id="g3900-12-9-5-2" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-32-3-7-9" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#4e535f;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-07-5-3-3" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-7-8-7-8" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-4-1-8" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + transform="translate(-584,-618.63782)" + style="display:inline;opacity:0.55" + id="switch-active-insensitive-header-dark" + inkscape:label="#g4829-8"> + <g + id="layer1-9-0-5-9-3-1" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-1-1-7-4"> + <g + id="g3900-1-3-1-4-9-0" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-9-6-8-2" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-2-5-3-4-9" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-8-5-9-1" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-6-6-5-6"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-3-77-4-7" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-6-4-7-1" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-584,-613.63782)" + style="display:inline;opacity:0.55" + id="switch-insensitive-header-dark" + inkscape:label="#g4820-8"> + <g + id="layer1-9-1-6-2-5" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-88-4-1-3"> + <g + id="g3900-4-6-4-0" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-5-1-5-8" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#4e535f;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-02-7-6-5" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-1-7-5-1-1" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-5-9-7-6" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + style="display:inline" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-229.00002,-43.000019)"> + <ellipse + cy="-177.63782" + cx="595" + style="display:inline;opacity:0.85;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-47-2" + rx="6" + ry="6.0000005" /> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-3-9" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-247.00002,-43.000019)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#e45e65;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-2-7-9" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-238.00002,-43.000019)"> + <ellipse + cy="-177.63782" + cx="624" + style="display:inline;opacity:0.85;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-6-0-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-2-0-6" + inkscape:connector-curvature="0" /> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:0.8;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-144.00001,-9.0000206)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f48085;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-5-0-4" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-135.00001,-9.0000206)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-126.00001,-9.0000206)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-43.000017,7.9999889)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#e6262f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-8-7-6-8" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-34.000017,7.9999889)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-25.000017,7.9999889)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + <g + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6497" + style="display:inline;opacity:0.7" + transform="translate(-247.00002,-43.000019)"> + <g + id="g4927-9-9-36-1" + style="display:inline;opacity:1" + transform="translate(-678,-415.63782)"> + <ellipse + cy="255" + cx="1331" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-2-3-4" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-8-1-4" + inkscape:connector-curvature="0" /> + <g + id="g4778-2-3-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-0-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-7-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-3-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-5-6" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-2-0" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-8-6" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#afb8c5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-9-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-2-4-2" + width="16" + height="16" + x="645" + y="-168.63782" /> + </g> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.7" + transform="translate(-238.00002,-43.000019)"> + <ellipse + cy="-160.63782" + cx="624" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-84-0-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-7-6-7" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:0.65;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.7" + transform="translate(-229.00002,-43.000019)"> + <ellipse + cy="-160.63782" + cx="595" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-60-3-2" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-4-4-4" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> </g> </svg> diff --git a/common/gtk-3.0/3.14/assets.txt b/common/gtk-3.0/3.14/assets.txt index 029d3a8..6746aca 100644 --- a/common/gtk-3.0/3.14/assets.txt +++ b/common/gtk-3.0/3.14/assets.txt @@ -48,3 +48,37 @@ titlebutton-min titlebutton-min-backdrop titlebutton-min-hover titlebutton-min-active +checkbox-checked-dark +checkbox-checked-insensitive-dark +checkbox-unchecked-dark +checkbox-unchecked-insensitive-dark +checkbox-mixed-dark +checkbox-mixed-insensitive-dark +checkbox-checked-selectionmode-dark +checkbox-selectionmode-dark +radio-checked-dark +radio-checked-insensitive-dark +radio-unchecked-dark +radio-unchecked-insensitive-dark +radio-mixed-dark +radio-mixed-insensitive-dark +switch-dark +switch-active-dark +switch-insensitive-dark +switch-active-insensitive-dark +switch-header-dark +switch-active-header-dark +switch-insensitive-header-dark +switch-active-insensitive-header-dark +titlebutton-close-dark +titlebutton-close-backdrop-dark +titlebutton-close-hover-dark +titlebutton-close-active-dark +titlebutton-max-dark +titlebutton-max-backdrop-dark +titlebutton-max-hover-dark +titlebutton-max-active-dark +titlebutton-min-dark +titlebutton-min-backdrop-dark +titlebutton-min-hover-dark +titlebutton-min-active-dark diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.14/assets/checkbox-checked-dark.png Binary files differnew file mode 100644 index 0000000..0c22603 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-checked-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..e9816ec --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-checked-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..3f48d1e --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..e4226d5 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark.png b/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark.png Binary files differnew file mode 100644 index 0000000..6f6517f --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark@2.png Binary files differnew file mode 100644 index 0000000..60487bf --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-dark.png Binary files differnew file mode 100644 index 0000000..6abc474 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-mixed-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..ac02f2c --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-mixed-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..f7c61c6 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..52ab429 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark.png Binary files differnew file mode 100644 index 0000000..3bea14f --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark@2.png Binary files differnew file mode 100644 index 0000000..839d1da --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..01eac8d --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..cc62ffd --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..0a4c5ef --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..fc2fed0 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/radio-checked-dark.png b/common/gtk-3.0/3.14/assets/radio-checked-dark.png Binary files differnew file mode 100644 index 0000000..84fb0c6 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-checked-dark.png diff --git a/common/gtk-3.0/3.14/assets/radio-checked-dark@2.png b/common/gtk-3.0/3.14/assets/radio-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..7ebd4ad --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-checked-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..04e54f9 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..084470a --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-dark.png b/common/gtk-3.0/3.14/assets/radio-mixed-dark.png Binary files differnew file mode 100644 index 0000000..2df6c2a --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-mixed-dark.png diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-dark@2.png b/common/gtk-3.0/3.14/assets/radio-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..ae121a3 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-mixed-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..d7c512b --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..d8a7c95 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.14/assets/radio-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..6f46a61 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-unchecked-dark.png diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.14/assets/radio-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..cd741d3 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-unchecked-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..4d7905a --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..089b4d0 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-dark.png b/common/gtk-3.0/3.14/assets/switch-active-dark.png Binary files differnew file mode 100644 index 0000000..dc16b48 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-dark@2.png Binary files differnew file mode 100644 index 0000000..b992e86 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-header-dark.png b/common/gtk-3.0/3.14/assets/switch-active-header-dark.png Binary files differnew file mode 100644 index 0000000..7cab70f --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-header-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-header-dark@2.png Binary files differnew file mode 100644 index 0000000..e727c33 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-header-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..216f8f9 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..2386907 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark.png Binary files differnew file mode 100644 index 0000000..7856149 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark@2.png Binary files differnew file mode 100644 index 0000000..e1ed561 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-dark.png b/common/gtk-3.0/3.14/assets/switch-dark.png Binary files differnew file mode 100644 index 0000000..e100e5c --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-dark@2.png b/common/gtk-3.0/3.14/assets/switch-dark@2.png Binary files differnew file mode 100644 index 0000000..59be7d1 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-header-dark.png b/common/gtk-3.0/3.14/assets/switch-header-dark.png Binary files differnew file mode 100644 index 0000000..eb37281 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-header-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-header-dark@2.png Binary files differnew file mode 100644 index 0000000..87ef62e --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-header-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-dark.png b/common/gtk-3.0/3.14/assets/switch-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..6ea40d6 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-insensitive-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/switch-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..6348480 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark.png b/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark.png Binary files differnew file mode 100644 index 0000000..3091579 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark.png diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark@2.png Binary files differnew file mode 100644 index 0000000..22e6449 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark.png Binary files differnew file mode 100644 index 0000000..4df4c2f --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark@2.png Binary files differnew file mode 100644 index 0000000..1882b92 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..bf5cba7 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..6c3d5e3 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png Binary files differindex e0e5654..54690f3 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png Binary files differindex dfe5e61..01f61f0 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-close-dark.png Binary files differnew file mode 100644 index 0000000..d471b6d --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-dark@2.png Binary files differnew file mode 100644 index 0000000..5c5eddf --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark.png Binary files differnew file mode 100644 index 0000000..3349844 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..2c7366a --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-active-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-max-active-dark.png Binary files differnew file mode 100644 index 0000000..a6ca483 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-active-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-active-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max-active-dark@2.png Binary files differnew file mode 100644 index 0000000..fba1731 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-active-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..d4f7166 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..1945796 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop.png b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop.png Binary files differindex fc40744..9440671 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop@2.png Binary files differindex 88e3fb5..523fffc 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-backdrop@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-max-dark.png Binary files differnew file mode 100644 index 0000000..dccb307 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max-dark@2.png Binary files differnew file mode 100644 index 0000000..225ca11 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-hover-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-max-hover-dark.png Binary files differnew file mode 100644 index 0000000..4504709 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-hover-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-hover-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..e910d0b --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-hover-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-hover.png b/common/gtk-3.0/3.14/assets/titlebutton-max-hover.png Binary files differindex 3362698..1610b34 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-max-hover.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-hover.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max-hover@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max-hover@2.png Binary files differindex 7b8cb1b..6a467da 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-max-hover@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-max-hover@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max.png b/common/gtk-3.0/3.14/assets/titlebutton-max.png Binary files differindex 6bb22ed..d54043f 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-max.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-max.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-max@2.png b/common/gtk-3.0/3.14/assets/titlebutton-max@2.png Binary files differindex 13d1e73..3e9373e 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-max@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-max@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-active-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-min-active-dark.png Binary files differnew file mode 100644 index 0000000..17f484f --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-active-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-active-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min-active-dark@2.png Binary files differnew file mode 100644 index 0000000..277d401 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-active-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..751f194 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..20bf7c4 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop.png b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop.png Binary files differindex a83a5e5..de62aa1 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop@2.png Binary files differindex 20a41a4..434b817 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-backdrop@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-min-dark.png Binary files differnew file mode 100644 index 0000000..b4ab5f7 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min-dark@2.png Binary files differnew file mode 100644 index 0000000..7cc4467 --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-hover-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-min-hover-dark.png Binary files differnew file mode 100644 index 0000000..a7859cc --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-hover-dark.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-hover-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..57bf18e --- /dev/null +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-hover-dark@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-hover.png b/common/gtk-3.0/3.14/assets/titlebutton-min-hover.png Binary files differindex 24ee141..8d6b6c3 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-min-hover.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-hover.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min-hover@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min-hover@2.png Binary files differindex f6c8c3d..f122bb3 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-min-hover@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-min-hover@2.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min.png b/common/gtk-3.0/3.14/assets/titlebutton-min.png Binary files differindex f4afc8c..029627d 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-min.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-min.png diff --git a/common/gtk-3.0/3.14/assets/titlebutton-min@2.png b/common/gtk-3.0/3.14/assets/titlebutton-min@2.png Binary files differindex 8d683d4..2febb1e 100644 --- a/common/gtk-3.0/3.14/assets/titlebutton-min@2.png +++ b/common/gtk-3.0/3.14/assets/titlebutton-min@2.png diff --git a/common/gtk-3.0/3.14/gtk-contained-dark.css b/common/gtk-3.0/3.14/gtk-contained-dark.css new file mode 100644 index 0000000..7cfcc46 --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-dark.css @@ -0,0 +1,3546 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #a9caf1; + -GtkWidget-visited-link-color: #7eafe9; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(211, 218, 227, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #D3DAE3; + background-color: rgba(68, 72, 82, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #444852; + color: #D3DAE3; } + .gtkstyle-fallback:prelight { + background-color: #5b606e; + color: #D3DAE3; } + .gtkstyle-fallback:active { + background-color: #2d3036; + color: #D3DAE3; } + .gtkstyle-fallback:insensitive { + background-color: #494d58; + color: rgba(211, 218, 227, 0.45); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #D3DAE3; + background-color: #383C45; } + .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { + color: rgba(211, 218, 227, 0.55); } + .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { + color: #D3DAE3; } +GtkLabel:insensitive { + color: rgba(211, 218, 227, 0.45); } + +.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #383C45; + border-top: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #2d3036; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar GtkLabel { + padding: 6px 12px; } +GtkAssistant .sidebar GtkLabel.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #3e424b; } + +GtkFlowBox .grid-child { + padding: 3px; + border-radius: 3px; } + GtkFlowBox .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #D3DAE3; + border-color: #5294E2; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .entry:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(56, 60, 69, 0.55); + background-image: linear-gradient(to bottom, rgba(56, 60, 69, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #d4403a); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #cc6c38); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #b4bac3; } + .entry.image:hover { + color: #D3DAE3; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #343840; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(68, 72, 82, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #5B5F69; + background-color: #5B5F69; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #707582; + background-color: #707582; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #4a4e56; + background-color: #4a4e56; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > GtkLabel, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > GtkLabel, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > GtkLabel, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #4b4f59; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #a9caf1; } + *:link:visited, .button:visited { + color: #7eafe9; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #d5e5f8; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #a9caf1; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(45, 48, 54, 0.6); + border-style: none none none solid; + color: #cbd2db; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(211, 218, 227, 0.45); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(211, 218, 227, 0.45); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(211, 218, 227, 0.6); + background-color: #2d3036; + border-color: #2d3036; } + GtkComboBox.combobox-entry .button:hover { + background-color: #383c44; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #444852; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, rgba(31, 34, 39, 0.97)) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #3d414a; + border-style: solid; + border-color: #2d3036; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #444852; + border-style: solid; + border-color: #2d3036; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #3d414a; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: rgba(36, 39, 45, 0.97); + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: rgba(47, 52, 59, 0.97); } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: rgba(82, 148, 226, 0.95); + border-color: rgba(65, 137, 223, 0.95); + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: rgba(82, 148, 226, 0.95); + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + .csd .titlebar { + background-color: rgba(47, 52, 59, 0.97); } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5B5F69; + background-color: #5B5F69; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; + outline-color: rgba(91, 95, 105, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #707582; + background-color: #707582; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #4a4e56; + background-color: #4a4e56; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(91, 95, 105, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, rgba(55, 59, 68, 0.997)); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, rgba(50, 55, 63, 0.982)); } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-color: rgba(211, 218, 227, 0.2); } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #92b7e2; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #858b94; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #D3DAE3; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #2d3036; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #b4bac3; + background-color: #383C45; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #D3DAE3; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #383C45, inset -1px 0 #383C45; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #383C45; } + column-header .button:insensitive { + border-color: #444852; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383C45; + border: 1px solid #2d3036; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #D3DAE3; + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(211, 218, 227, 0.45); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(56, 60, 69, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #474b54; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #474b54; } + .menu.button:hover, .popup.button:hover { + background-color: #474b54; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + margin: 10px; + padding: 2px; + border: 1px solid #212328; + border-radius: 3px; + background-clip: border-box; + background-color: #383C45; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(56, 60, 69, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #373b44; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #2d3036; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #3e424b; } + .notebook.header.frame { + border: 1px solid #2d3036; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #2d3036; } + .notebook.header.bottom { + box-shadow: inset 0 1px #2d3036; } + .notebook.header.right { + box-shadow: inset 1px 0 #2d3036; } + .notebook.header.left { + box-shadow: inset -1px 0 #2d3036; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(211, 218, 227, 0.45); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(211, 218, 227, 0.725); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #D3DAE3; } + .notebook tab .button { + padding: 0; + color: #a0a6b0; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(211, 218, 227, 0.45); } + .notebook.arrow:hover { + color: rgba(211, 218, 227, 0.725); } + .notebook.arrow:active { + color: #D3DAE3; } + .notebook.arrow:insensitive { + color: rgba(211, 218, 227, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + background-clip: padding-box; + background-image: none; + border-style: solid; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkRange-slider-width: 11; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: #7d828c; } + .scrollbar.slider:hover { + background-color: #a8aeb7; } + .scrollbar.slider:prelight:active { + background-color: #5294E2; } + .scrollbar.slider.fine-tune { + border-width: 4px; } + .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + .scrollbar.slider:insensitive { + background-color: transparent; } + +.scrollbars-junction, .scrollbar.trough, +.scrollbars-junction.frame, +.frame.scrollbar.trough { + border-color: transparent; + background-color: #383C45; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(211, 218, 227, 0.45); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #383c45); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3d414a); + border-color: #4b71a1; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2f323a); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(47, 50, 58, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2f323a; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(211, 218, 227, 0.2); + border-color: rgba(211, 218, 227, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #2d3036; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #383C45; + border-color: #2d3036; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(255, 255, 255, 0.03); } + .list-row.button:active { + color: #D3DAE3; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive GtkLabel { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +GtkExpander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + GtkExpander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkExpander:hover { + color: white; } + GtkExpander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #D3DAE3; + border: 1px solid #2d3036; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #D3DAE3; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(211, 218, 227, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #D3DAE3; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: rgba(47, 52, 59, 0.97); + border-bottom: 1px solid rgba(31, 34, 39, 0.97); } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #444852; + border-color: #2d3036; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #2d3036; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #444852; } + .sidebar .scrollbar.trough { + background-color: transparent; + border-width: 2px; + border-color: transparent; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #D3DAE3; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + +.pane-separator { + background-image: linear-gradient(to bottom, #2d3036); } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + border: none; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } + GtkColorSwatch.color-light:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } + GtkColorSwatch.color-dark:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } + GtkColorSwatch:hover { + border-color: rgba(0, 0, 0, 0.5); } + GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch.left, GtkColorSwatch:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + GtkColorSwatch.right, GtkColorSwatch:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch:only-child { + border-radius: 3px; } + GtkColorSwatch.color-active-badge { + border-width: 2px; } + GtkColorSwatch.color-active-badge:hover { + background-image: none; } + GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { + color: rgba(0, 0, 0, 0.3); + border-color: rgba(0, 0, 0, 0.3); } + GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.5); } + +GtkColorChooserWidget #add-color-button { + border-color: #383c44; + background-color: #383c44; + color: #444852; + box-shadow: none; } + GtkColorChooserWidget #add-color-button:hover { + border-color: #2d3036; + background-color: #2d3036; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 8px 1px rgba(0, 0, 0, 0.55); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 5px 2px rgba(0, 0, 0, 0.55); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #212429; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); } + +.header-bar .button.titlebutton, .titlebar .button.titlebutton, +.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; + color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, + .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { + opacity: 1; } +.header-bar .right .button.titlebutton:nth-last-child(3), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar .left .button.titlebutton:nth-child(3), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar .left .button.titlebutton:nth-child(3), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(3):hover, + .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(3):hover, + .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar .left .button.titlebutton:nth-child(3):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar .left .button.titlebutton:nth-child(3):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar .left .button.titlebutton:nth-child(3):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar .left .button.titlebutton:nth-child(3):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:nth-last-child(2), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar .left .button.titlebutton:nth-child(2), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar .left .button.titlebutton:nth-child(2), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(2):hover, + .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(2):hover, + .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar .left .button.titlebutton:nth-child(2):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar .left .button.titlebutton:nth-child(2):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar .left .button.titlebutton:nth-child(2):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar .left .button.titlebutton:nth-child(2):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:last-child, +.header-bar .right:dir(rtl) .button.titlebutton:first-child, +.header-bar .left .button.titlebutton:first-child, +.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, +.titlebar .right:dir(rtl) .button.titlebutton:first-child, +.titlebar .left .button.titlebutton:first-child, +.titlebar .left:dir(rtl) .button.titlebutton:last-child, +.header-bar.selection-mode .right .button.titlebutton:last-child, +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.header-bar.selection-mode .left .button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.titlebar.selection-mode .left .button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar .left .button.titlebutton:first-child:hover, + .header-bar .left .button.titlebutton:first-child:backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar .left .button.titlebutton:first-child:hover, + .titlebar .left .button.titlebutton:first-child:backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar .left .button.titlebutton:first-child:active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar .left .button.titlebutton:first-child:active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar .left .button.titlebutton:first-child:backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar .left .button.titlebutton:first-child:backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + +.header-bar .left GtkMenuButton.button.titlebutton:first-child, +.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar .left GtkMenuButton.button.titlebutton:first-child, +.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { + padding: 4px 6px 4px 6px; + border-color: transparent; + background-color: transparent; + background-image: none; } + +.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #383C45; + color: #D3DAE3; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #24272d; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #D3DAE3; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +NautilusNotebook.notebook { + background-color: #383C45; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #2d3036; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: rgba(36, 39, 45, 0.97); } + +.open-document-selector-listbox-row { + border-bottom: 1px solid #383c44; + padding: 6px 6px 6px 12px; } + .open-document-selector-listbox-row .path-label { + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + .open-document-selector-listbox-row:selected .path-label { + color: rgba(255, 255, 255, 0.7); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a0a6b0; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #D3DAE3; } + +.gedit-document-panel-dragged-row { + border: 1px solid #2d3036; + background-color: #2d3036; + color: #D3DAE3; } + +GeditStatusbar { + border-top: 1px solid #2d3036; + background-color: #444852; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #2d3036; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(211, 218, 227, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #494d58; + padding: 6px; + border-color: #2d3036; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(61, 65, 75, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #D3DAE3; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #444852; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #2d3036; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #444852; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #D3DAE3; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(211, 218, 227, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid #2d3036; + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #383C45); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #D3DAE3; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #D3DAE3; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid rgba(31, 34, 39, 0.97); + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, rgba(31, 34, 39, 0.97)); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #2d3036; + border-right: 1px solid #2d3036; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #2d3036; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #2d3036; + background-color: #444852; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #444852; + color: #D3DAE3; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: #505460; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction, +.source-list .scrollbar.trough { + border-image: none; + border-color: transparent; + background-color: #444852; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #D3DAE3; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #383C45; } + +GraniteWidgetsWelcome GtkLabel { + color: #8b919a; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(211, 218, 227, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #383C45); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #a8aeb7; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: rgba(36, 39, 45, 0.97); } + +GtkFileChooserDialog .dialog-action-box { + background-color: #444852; } + +NemoWindow GtkEventBox { + background-color: #444852; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid rgba(46, 49, 56, 0.95); } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid rgba(46, 49, 56, 0.95); } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog GtkBox.sidebar, +NautilusWindow GtkBox.sidebar, +NemoWindow GtkBox.sidebar, +MarlinViewWindow GtkBox.sidebar { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, GtkFileChooserDialog NemoPlacesSidebar, +NautilusWindow .sidebar, +NautilusWindow MarlinPlacesSidebar, +NautilusWindow NemoPlacesSidebar, +NemoWindow .sidebar, +NemoWindow MarlinPlacesSidebar, +NemoWindow NemoPlacesSidebar, +MarlinViewWindow .sidebar, +MarlinViewWindow MarlinPlacesSidebar, +MarlinViewWindow NemoPlacesSidebar { + background-color: rgba(69, 74, 84, 0.95); } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, GtkFileChooserDialog NemoPlacesSidebar .view, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar .source-list.sidebar row, + NautilusWindow MarlinPlacesSidebar .view, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, + NautilusWindow NemoPlacesSidebar .view, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row, + NemoWindow .sidebar .view, + NemoWindow .sidebar .source-list.sidebar row, + NemoWindow MarlinPlacesSidebar .view, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row, + NemoWindow NemoPlacesSidebar .view, + NemoWindow NemoPlacesSidebar .source-list.sidebar row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar .source-list.sidebar row, + MarlinViewWindow MarlinPlacesSidebar .view, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row, + MarlinViewWindow NemoPlacesSidebar .view, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, GtkFileChooserDialog NemoPlacesSidebar .view.image, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar .source-list.sidebar row.image, + NautilusWindow MarlinPlacesSidebar .view.image, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NautilusWindow NemoPlacesSidebar .view.image, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar .source-list.sidebar row.image, + NemoWindow MarlinPlacesSidebar .view.image, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NemoWindow NemoPlacesSidebar .view.image, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar .source-list.sidebar row.image, + MarlinViewWindow MarlinPlacesSidebar .view.image, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow NemoPlacesSidebar .view.image, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .view.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar .source-list.sidebar row.cell:selected, + NautilusWindow MarlinPlacesSidebar .view.cell:selected, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow NemoPlacesSidebar .view.cell:selected, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar .source-list.sidebar row.cell:selected, + NemoWindow MarlinPlacesSidebar .view.cell:selected, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow NemoPlacesSidebar .view.cell:selected, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow NemoPlacesSidebar .view.cell:selected, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, GtkFileChooserDialog NemoPlacesSidebar.frame, + NautilusWindow .sidebar.frame, + NautilusWindow MarlinPlacesSidebar.frame, + NautilusWindow NemoPlacesSidebar.frame, + NemoWindow .sidebar.frame, + NemoWindow MarlinPlacesSidebar.frame, + NemoWindow NemoPlacesSidebar.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow MarlinPlacesSidebar.frame, + MarlinViewWindow NemoPlacesSidebar.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, GtkFileChooserDialog NemoPlacesSidebar .separator, GtkFileChooserDialog NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog NemoPlacesSidebar .view.separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow MarlinPlacesSidebar .separator, + NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow MarlinPlacesSidebar .view.separator, + NautilusWindow NemoPlacesSidebar .separator, + NautilusWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow NemoPlacesSidebar .view.separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow MarlinPlacesSidebar .separator, + NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow MarlinPlacesSidebar .view.separator, + NemoWindow NemoPlacesSidebar .separator, + NemoWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow NemoPlacesSidebar .view.separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow MarlinPlacesSidebar .separator, + MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow MarlinPlacesSidebar .view.separator, + MarlinViewWindow NemoPlacesSidebar .separator, + MarlinViewWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow NemoPlacesSidebar .view.separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.trough, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.trough, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.trough, + NautilusWindow .sidebar .scrollbar.trough, + NautilusWindow MarlinPlacesSidebar .scrollbar.trough, + NautilusWindow NemoPlacesSidebar .scrollbar.trough, + NemoWindow .sidebar .scrollbar.trough, + NemoWindow MarlinPlacesSidebar .scrollbar.trough, + NemoWindow NemoPlacesSidebar .scrollbar.trough, + MarlinViewWindow .sidebar .scrollbar.trough, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.trough, + MarlinViewWindow NemoPlacesSidebar .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.slider, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider, + NautilusWindow .sidebar .scrollbar.slider, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider, + NautilusWindow NemoPlacesSidebar .scrollbar.slider, + NemoWindow .sidebar .scrollbar.slider, + NemoWindow MarlinPlacesSidebar .scrollbar.slider, + NemoWindow NemoPlacesSidebar .scrollbar.slider, + MarlinViewWindow .sidebar .scrollbar.slider, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar.slider:hover, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:hover, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:hover, + NautilusWindow .sidebar .scrollbar.slider:hover, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:hover, + NemoWindow .sidebar .scrollbar.slider:hover, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NemoWindow NemoPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow .sidebar .scrollbar.slider:hover, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow .sidebar .scrollbar.slider:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow .sidebar .scrollbar.slider:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow .sidebar .scrollbar.slider.fine-tune, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow .sidebar .scrollbar.slider.fine-tune, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune { + border-width: 4px; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:insensitive, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow .sidebar .scrollbar.slider:insensitive, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow .sidebar .scrollbar.slider:insensitive, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow .sidebar .scrollbar.slider:insensitive, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454a54; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: rgba(46, 49, 56, 0.95); } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #444852; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: rgba(46, 49, 56, 0.95); } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: rgba(36, 39, 45, 0.97); } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: rgba(47, 52, 59, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + +.gedit-bottom-panel-paned { + background-color: #383C45; } + +.gedit-document-panel { + background-color: rgba(69, 74, 84, 0.95); } + .maximized .gedit-document-panel { + background-color: #454a54; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: rgba(69, 74, 84, 0.95); } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #454a54; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune { + border-width: 4px; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction, GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough, + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction.frame, + GeditWindow.background.csd GeditFileBrowserWidget .frame.scrollbar.trough { + border-color: transparent; + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: rgba(53, 57, 65, 0.95); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: rgba(65, 69, 79, 0.95); + border-color: rgba(35, 37, 42, 0.95); } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #D3DAE3; +@define-color theme_text_color #D3DAE3; +@define-color theme_bg_color #444852; +@define-color theme_base_color #383C45; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #D3DAE3; +@define-color text_color #D3DAE3; +@define-color bg_color #444852; +@define-color base_color #383C45; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #494d58; +@define-color insensitive_fg_color rgba(211, 218, 227, 0.45); +@define-color insensitive_base_color #383C45; +@define-color theme_unfocused_fg_color #D3DAE3; +@define-color theme_unfocused_text_color #D3DAE3; +@define-color theme_unfocused_bg_color #444852; +@define-color theme_unfocused_base_color #383C45; +@define-color borders #2d3036; +@define-color unfocused_borders #2d3036; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #383C45; diff --git a/common/gtk-3.0/3.14/gtk-contained-dark.scss b/common/gtk-3.0/3.14/gtk-contained-dark.scss new file mode 100644 index 0000000..e0042ca --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-dark.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'dark'; +$darker: 'false'; +$transparency: 'true'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/gtk-contained-darker.css b/common/gtk-3.0/3.14/gtk-contained-darker.css new file mode 100644 index 0000000..07e7066 --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-darker.css @@ -0,0 +1,3538 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #2679db; + -GtkWidget-visited-link-color: #1e61b0; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(92, 97, 108, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #5c616c; + background-color: rgba(245, 246, 247, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F5F6F7; + color: #5c616c; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #5c616c; } + .gtkstyle-fallback:active { + background-color: #d9dde0; + color: #5c616c; } + .gtkstyle-fallback:insensitive { + background-color: #fbfbfb; + color: rgba(92, 97, 108, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #5c616c; + background-color: #ffffff; } + .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { + color: rgba(92, 97, 108, 0.55); } + .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { + color: #5c616c; } +GtkLabel:insensitive { + color: rgba(92, 97, 108, 0.55); } + +.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #dcdfe3; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar GtkLabel { + padding: 6px 12px; } +GtkAssistant .sidebar GtkLabel.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #fafafb; } + +GtkFlowBox .grid-child { + padding: 3px; + border-radius: 3px; } + GtkFlowBox .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #5c616c; + border-color: #5294E2; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fc665f); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f4935d); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #7c8089; } + .entry.image:hover { + color: #5c616c; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #f4f5f6; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 246, 247, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #9EA4B5; + background-color: #9EA4B5; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #b8bcc9; + background-color: #b8bcc9; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #8a91a6; + background-color: #8a91a6; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > GtkLabel, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > GtkLabel, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > GtkLabel, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #edeef0; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #2679db; } + *:link:visited, .button:visited { + color: #1e61b0; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5294e2; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #2679db; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(220, 223, 227, 0.6); + border-style: none none none solid; + color: #646873; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(92, 97, 108, 0.55); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(92, 97, 108, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(92, 97, 108, 0.6); + background-color: #cfd6e6; + border-color: #cfd6e6; } + GtkComboBox.combobox-entry .button:hover { + background-color: #e0e4ef; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F5F6F7; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, rgba(31, 34, 39, 0.97)) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #eceef0; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F5F6F7; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #eceef0; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: rgba(31, 34, 39, 0.97); + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: rgba(47, 52, 59, 0.97); } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: rgba(82, 148, 226, 0.95); + border-color: rgba(65, 137, 223, 0.95); + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: rgba(82, 148, 226, 0.95); + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + .csd .titlebar { + background-color: rgba(47, 52, 59, 0.97); } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #9EA4B5; + background-color: #9EA4B5; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; + outline-color: rgba(158, 164, 181, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #b8bcc9; + background-color: #b8bcc9; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #8a91a6; + background-color: #8a91a6; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(158, 164, 181, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.97)); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, rgba(45, 49, 56, 0.97)); + border-color: rgba(61, 91, 128, 0.982); } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-color: rgba(92, 97, 108, 0.2); } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #577aa7; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #adb0b5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #5c616c; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #cfd6e6; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #7c8089; + background-color: #ffffff; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #5c616c; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #ffffff; } + column-header .button:insensitive { + border-color: #F5F6F7; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #dcdfe3; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #5c616c; + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(92, 97, 108, 0.55); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #eeeff0; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #eeeff0; } + .menu.button:hover, .popup.button:hover { + background-color: #eeeff0; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + margin: 10px; + padding: 2px; + border: 1px solid #cdd2d7; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #fefefe; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #dcdfe3; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #fafafb; } + .notebook.header.frame { + border: 1px solid #dcdfe3; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #eaecee; } + .notebook.header.bottom { + box-shadow: inset 0 1px #eaecee; } + .notebook.header.right { + box-shadow: inset 1px 0 #eaecee; } + .notebook.header.left { + box-shadow: inset -1px 0 #eaecee; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(92, 97, 108, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(92, 97, 108, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #5c616c; } + .notebook tab .button { + padding: 0; + color: #91959c; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(92, 97, 108, 0.55); } + .notebook.arrow:hover { + color: rgba(92, 97, 108, 0.775); } + .notebook.arrow:active { + color: #5c616c; } + .notebook.arrow:insensitive { + color: rgba(92, 97, 108, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + background-clip: padding-box; + background-image: none; + border-style: solid; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkRange-slider-width: 11; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: #b7babf; } + .scrollbar.slider:hover { + background-color: #898d95; } + .scrollbar.slider:prelight:active { + background-color: #5294E2; } + .scrollbar.slider.fine-tune { + border-width: 4px; } + .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + .scrollbar.slider:insensitive { + background-color: transparent; } + +.scrollbars-junction, .scrollbar.trough, +.scrollbars-junction.frame, +.frame.scrollbar.trough { + border-color: transparent; + background-color: #ffffff; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(92, 97, 108, 0.55); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfd6e6); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 214, 230, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(92, 97, 108, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfd6e6; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(92, 97, 108, 0.2); + border-color: rgba(92, 97, 108, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #dcdfe3; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #ffffff; + border-color: #dcdfe3; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(0, 0, 0, 0.05); } + .list-row.button:active { + color: #5c616c; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive GtkLabel { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +GtkExpander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + GtkExpander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkExpander:hover { + color: #aaaeb7; } + GtkExpander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #5c616c; + border: 1px solid #dcdfe3; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #5c616c; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(92, 97, 108, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #5c616c; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: rgba(47, 52, 59, 0.97); + border-bottom: 1px solid rgba(31, 34, 39, 0.97); } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F5F6F7; + border-color: #dcdfe3; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #dcdfe3; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #F5F6F7; } + .sidebar .scrollbar.trough { + background-color: transparent; + border-width: 2px; + border-color: transparent; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #5c616c; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + +.pane-separator { + background-image: linear-gradient(to bottom, #dcdfe3); } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + border: none; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } + GtkColorSwatch.color-light:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } + GtkColorSwatch.color-dark:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } + GtkColorSwatch:hover { + border-color: rgba(0, 0, 0, 0.5); } + GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch.left, GtkColorSwatch:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + GtkColorSwatch.right, GtkColorSwatch:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch:only-child { + border-radius: 3px; } + GtkColorSwatch.color-active-badge { + border-width: 2px; } + GtkColorSwatch.color-active-badge:hover { + background-image: none; } + GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { + color: rgba(0, 0, 0, 0.3); + border-color: rgba(0, 0, 0, 0.3); } + GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.5); } + +GtkColorChooserWidget #add-color-button { + border-color: #e8eaed; + background-color: #e8eaed; + color: #F5F6F7; + box-shadow: none; } + GtkColorChooserWidget #add-color-button:hover { + border-color: #dcdfe3; + background-color: #dcdfe3; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 8px 1px rgba(0, 0, 0, 0.25); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 5px 2px rgba(0, 0, 0, 0.25); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); } + +.header-bar .button.titlebutton, .titlebar .button.titlebutton, +.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; + color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, + .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { + opacity: 1; } +.header-bar .right .button.titlebutton:nth-last-child(3), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar .left .button.titlebutton:nth-child(3), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar .left .button.titlebutton:nth-child(3), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(3):hover, + .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(3):hover, + .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar .left .button.titlebutton:nth-child(3):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar .left .button.titlebutton:nth-child(3):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar .left .button.titlebutton:nth-child(3):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar .left .button.titlebutton:nth-child(3):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:nth-last-child(2), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar .left .button.titlebutton:nth-child(2), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar .left .button.titlebutton:nth-child(2), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(2):hover, + .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(2):hover, + .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar .left .button.titlebutton:nth-child(2):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar .left .button.titlebutton:nth-child(2):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar .left .button.titlebutton:nth-child(2):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar .left .button.titlebutton:nth-child(2):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:last-child, +.header-bar .right:dir(rtl) .button.titlebutton:first-child, +.header-bar .left .button.titlebutton:first-child, +.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, +.titlebar .right:dir(rtl) .button.titlebutton:first-child, +.titlebar .left .button.titlebutton:first-child, +.titlebar .left:dir(rtl) .button.titlebutton:last-child, +.header-bar.selection-mode .right .button.titlebutton:last-child, +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.header-bar.selection-mode .left .button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.titlebar.selection-mode .left .button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar .left .button.titlebutton:first-child:hover, + .header-bar .left .button.titlebutton:first-child:backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar .left .button.titlebutton:first-child:hover, + .titlebar .left .button.titlebutton:first-child:backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar .left .button.titlebutton:first-child:active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar .left .button.titlebutton:first-child:active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar .left .button.titlebutton:first-child:backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar .left .button.titlebutton:first-child:backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + +.header-bar .left GtkMenuButton.button.titlebutton:first-child, +.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar .left GtkMenuButton.button.titlebutton:first-child, +.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { + padding: 4px 6px 4px 6px; + border-color: transparent; + background-color: transparent; + background-image: none; } + +.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #ffffff; + color: #5c616c; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #1f2227; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #5c616c; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #dcdfe3; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: rgba(31, 34, 39, 0.97); } + +.open-document-selector-listbox-row { + border-bottom: 1px solid #e7e9ec; + padding: 6px 6px 6px 12px; } + .open-document-selector-listbox-row .path-label { + font-size: smaller; + color: rgba(92, 97, 108, 0.7); } + .open-document-selector-listbox-row:selected .path-label { + color: rgba(255, 255, 255, 0.7); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #91959c; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #5c616c; } + +.gedit-document-panel-dragged-row { + border: 1px solid #dcdfe3; + background-color: #d9dde0; + color: #5c616c; } + +GeditStatusbar { + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #dcdfe3; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(92, 97, 108, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #fbfbfc; + padding: 6px; + border-color: #dcdfe3; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(251, 251, 252, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #5c616c; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #F5F6F7; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #dcdfe3; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #F5F6F7; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #5c616c; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(92, 97, 108, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #ffffff); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #5c616c; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid rgba(31, 34, 39, 0.97); + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, rgba(31, 34, 39, 0.97)); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #dcdfe3; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #dcdfe3; + background-color: #F5F6F7; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #F5F6F7; + color: #5c616c; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: white; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction, +.source-list .scrollbar.trough { + border-image: none; + border-color: transparent; + background-color: #F5F6F7; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #5c616c; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #ffffff; } + +GraniteWidgetsWelcome GtkLabel { + color: #a8abb1; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(92, 97, 108, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #898d95; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: rgba(31, 34, 39, 0.97); } + +GtkFileChooserDialog .dialog-action-box { + background-color: #F5F6F7; } + +NemoWindow GtkEventBox { + background-color: #F5F6F7; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog GtkBox.sidebar, +NautilusWindow GtkBox.sidebar, +NemoWindow GtkBox.sidebar, +MarlinViewWindow GtkBox.sidebar { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, GtkFileChooserDialog NemoPlacesSidebar, +NautilusWindow .sidebar, +NautilusWindow MarlinPlacesSidebar, +NautilusWindow NemoPlacesSidebar, +NemoWindow .sidebar, +NemoWindow MarlinPlacesSidebar, +NemoWindow NemoPlacesSidebar, +MarlinViewWindow .sidebar, +MarlinViewWindow MarlinPlacesSidebar, +MarlinViewWindow NemoPlacesSidebar { + background-color: rgba(60, 64, 73, 0.95); } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, GtkFileChooserDialog NemoPlacesSidebar .view, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar .source-list.sidebar row, + NautilusWindow MarlinPlacesSidebar .view, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, + NautilusWindow NemoPlacesSidebar .view, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row, + NemoWindow .sidebar .view, + NemoWindow .sidebar .source-list.sidebar row, + NemoWindow MarlinPlacesSidebar .view, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row, + NemoWindow NemoPlacesSidebar .view, + NemoWindow NemoPlacesSidebar .source-list.sidebar row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar .source-list.sidebar row, + MarlinViewWindow MarlinPlacesSidebar .view, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row, + MarlinViewWindow NemoPlacesSidebar .view, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, GtkFileChooserDialog NemoPlacesSidebar .view.image, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar .source-list.sidebar row.image, + NautilusWindow MarlinPlacesSidebar .view.image, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NautilusWindow NemoPlacesSidebar .view.image, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar .source-list.sidebar row.image, + NemoWindow MarlinPlacesSidebar .view.image, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NemoWindow NemoPlacesSidebar .view.image, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar .source-list.sidebar row.image, + MarlinViewWindow MarlinPlacesSidebar .view.image, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow NemoPlacesSidebar .view.image, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .view.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar .source-list.sidebar row.cell:selected, + NautilusWindow MarlinPlacesSidebar .view.cell:selected, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow NemoPlacesSidebar .view.cell:selected, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar .source-list.sidebar row.cell:selected, + NemoWindow MarlinPlacesSidebar .view.cell:selected, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow NemoPlacesSidebar .view.cell:selected, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow NemoPlacesSidebar .view.cell:selected, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, GtkFileChooserDialog NemoPlacesSidebar.frame, + NautilusWindow .sidebar.frame, + NautilusWindow MarlinPlacesSidebar.frame, + NautilusWindow NemoPlacesSidebar.frame, + NemoWindow .sidebar.frame, + NemoWindow MarlinPlacesSidebar.frame, + NemoWindow NemoPlacesSidebar.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow MarlinPlacesSidebar.frame, + MarlinViewWindow NemoPlacesSidebar.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, GtkFileChooserDialog NemoPlacesSidebar .separator, GtkFileChooserDialog NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog NemoPlacesSidebar .view.separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow MarlinPlacesSidebar .separator, + NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow MarlinPlacesSidebar .view.separator, + NautilusWindow NemoPlacesSidebar .separator, + NautilusWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow NemoPlacesSidebar .view.separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow MarlinPlacesSidebar .separator, + NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow MarlinPlacesSidebar .view.separator, + NemoWindow NemoPlacesSidebar .separator, + NemoWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow NemoPlacesSidebar .view.separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow MarlinPlacesSidebar .separator, + MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow MarlinPlacesSidebar .view.separator, + MarlinViewWindow NemoPlacesSidebar .separator, + MarlinViewWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow NemoPlacesSidebar .view.separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.trough, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.trough, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.trough, + NautilusWindow .sidebar .scrollbar.trough, + NautilusWindow MarlinPlacesSidebar .scrollbar.trough, + NautilusWindow NemoPlacesSidebar .scrollbar.trough, + NemoWindow .sidebar .scrollbar.trough, + NemoWindow MarlinPlacesSidebar .scrollbar.trough, + NemoWindow NemoPlacesSidebar .scrollbar.trough, + MarlinViewWindow .sidebar .scrollbar.trough, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.trough, + MarlinViewWindow NemoPlacesSidebar .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.slider, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider, + NautilusWindow .sidebar .scrollbar.slider, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider, + NautilusWindow NemoPlacesSidebar .scrollbar.slider, + NemoWindow .sidebar .scrollbar.slider, + NemoWindow MarlinPlacesSidebar .scrollbar.slider, + NemoWindow NemoPlacesSidebar .scrollbar.slider, + MarlinViewWindow .sidebar .scrollbar.slider, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar.slider:hover, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:hover, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:hover, + NautilusWindow .sidebar .scrollbar.slider:hover, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:hover, + NemoWindow .sidebar .scrollbar.slider:hover, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NemoWindow NemoPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow .sidebar .scrollbar.slider:hover, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow .sidebar .scrollbar.slider:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow .sidebar .scrollbar.slider:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow .sidebar .scrollbar.slider.fine-tune, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow .sidebar .scrollbar.slider.fine-tune, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune { + border-width: 4px; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:insensitive, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow .sidebar .scrollbar.slider:insensitive, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow .sidebar .scrollbar.slider:insensitive, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow .sidebar .scrollbar.slider:insensitive, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #3c4049; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: rgba(60, 64, 73, 0.95); } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F5F6F7; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: rgba(60, 64, 73, 0.95); } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: rgba(31, 34, 39, 0.97); } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: rgba(47, 52, 59, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: rgba(60, 64, 73, 0.95); } + .maximized .gedit-document-panel { + background-color: #3c4049; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: rgba(60, 64, 73, 0.95); } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #3c4049; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune { + border-width: 4px; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction, GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough, + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction.frame, + GeditWindow.background.csd GeditFileBrowserWidget .frame.scrollbar.trough { + border-color: transparent; + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: rgba(44, 47, 53, 0.95); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: rgba(55, 59, 67, 0.95); + border-color: rgba(44, 47, 53, 0.95); } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #5c616c; +@define-color theme_text_color #5c616c; +@define-color theme_bg_color #F5F6F7; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #5c616c; +@define-color text_color #5c616c; +@define-color bg_color #F5F6F7; +@define-color base_color #ffffff; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #fbfbfb; +@define-color insensitive_fg_color rgba(92, 97, 108, 0.55); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #5c616c; +@define-color theme_unfocused_text_color #5c616c; +@define-color theme_unfocused_bg_color #F5F6F7; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.14/gtk-contained-darker.scss b/common/gtk-3.0/3.14/gtk-contained-darker.scss new file mode 100644 index 0000000..3fe2ffa --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-darker.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'light'; +$darker: 'true'; +$transparency: 'true'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/gtk-contained-solid-dark.css b/common/gtk-3.0/3.14/gtk-contained-solid-dark.css new file mode 100644 index 0000000..8c70628 --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-solid-dark.css @@ -0,0 +1,3546 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #a9caf1; + -GtkWidget-visited-link-color: #7eafe9; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(211, 218, 227, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #D3DAE3; + background-color: rgba(68, 72, 82, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #444852; + color: #D3DAE3; } + .gtkstyle-fallback:prelight { + background-color: #5b606e; + color: #D3DAE3; } + .gtkstyle-fallback:active { + background-color: #2d3036; + color: #D3DAE3; } + .gtkstyle-fallback:insensitive { + background-color: #494d58; + color: rgba(211, 218, 227, 0.45); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #D3DAE3; + background-color: #383C45; } + .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { + color: rgba(211, 218, 227, 0.55); } + .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { + color: #D3DAE3; } +GtkLabel:insensitive { + color: rgba(211, 218, 227, 0.45); } + +.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #383C45; + border-top: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #2d3036; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar GtkLabel { + padding: 6px 12px; } +GtkAssistant .sidebar GtkLabel.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #3e424b; } + +GtkFlowBox .grid-child { + padding: 3px; + border-radius: 3px; } + GtkFlowBox .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #D3DAE3; + border-color: #5294E2; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .entry:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(56, 60, 69, 0.55); + background-image: linear-gradient(to bottom, rgba(56, 60, 69, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #d4403a); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #cc6c38); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #b4bac3; } + .entry.image:hover { + color: #D3DAE3; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #343840; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(68, 72, 82, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #5B5F69; + background-color: #5B5F69; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #707582; + background-color: #707582; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #4a4e56; + background-color: #4a4e56; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > GtkLabel, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > GtkLabel, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > GtkLabel, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #4b4f59; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #a9caf1; } + *:link:visited, .button:visited { + color: #7eafe9; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #d5e5f8; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #a9caf1; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(45, 48, 54, 0.6); + border-style: none none none solid; + color: #cbd2db; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(211, 218, 227, 0.45); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(211, 218, 227, 0.45); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(211, 218, 227, 0.6); + background-color: #2d3036; + border-color: #2d3036; } + GtkComboBox.combobox-entry .button:hover { + background-color: #383c44; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #444852; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, #1f2227) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #3d414a; + border-style: solid; + border-color: #2d3036; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #444852; + border-style: solid; + border-color: #2d3036; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #3d414a; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #24272d; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: #2f343b; } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: #32383f; } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: #5294E2; + border-color: #4189df; + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: #5294E2; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px #363c44; } + .csd .titlebar { + background-color: #2f343b; } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: #32383f; } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5B5F69; + background-color: #5B5F69; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; + outline-color: rgba(91, 95, 105, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #707582; + background-color: #707582; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #4a4e56; + background-color: #4a4e56; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(91, 95, 105, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #373b44); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #32373f); } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-color: rgba(211, 218, 227, 0.2); } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #92b7e2; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #858b94; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #D3DAE3; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #2d3036; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #b4bac3; + background-color: #383C45; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #D3DAE3; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #383C45, inset -1px 0 #383C45; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #383C45; } + column-header .button:insensitive { + border-color: #444852; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383C45; + border: 1px solid #2d3036; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #D3DAE3; + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(211, 218, 227, 0.45); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(56, 60, 69, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #474b54; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #474b54; } + .menu.button:hover, .popup.button:hover { + background-color: #474b54; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + margin: 10px; + padding: 2px; + border: 1px solid #212328; + border-radius: 3px; + background-clip: border-box; + background-color: #383C45; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(56, 60, 69, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #373b44; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #2d3036; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #3e424b; } + .notebook.header.frame { + border: 1px solid #2d3036; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #2d3036; } + .notebook.header.bottom { + box-shadow: inset 0 1px #2d3036; } + .notebook.header.right { + box-shadow: inset 1px 0 #2d3036; } + .notebook.header.left { + box-shadow: inset -1px 0 #2d3036; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(211, 218, 227, 0.45); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(211, 218, 227, 0.725); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #D3DAE3; } + .notebook tab .button { + padding: 0; + color: #a0a6b0; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(211, 218, 227, 0.45); } + .notebook.arrow:hover { + color: rgba(211, 218, 227, 0.725); } + .notebook.arrow:active { + color: #D3DAE3; } + .notebook.arrow:insensitive { + color: rgba(211, 218, 227, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + background-clip: padding-box; + background-image: none; + border-style: solid; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkRange-slider-width: 11; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: #7d828c; } + .scrollbar.slider:hover { + background-color: #a8aeb7; } + .scrollbar.slider:prelight:active { + background-color: #5294E2; } + .scrollbar.slider.fine-tune { + border-width: 4px; } + .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + .scrollbar.slider:insensitive { + background-color: transparent; } + +.scrollbars-junction, .scrollbar.trough, +.scrollbars-junction.frame, +.frame.scrollbar.trough { + border-color: transparent; + background-color: #383C45; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(211, 218, 227, 0.45); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #383c45); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3d414a); + border-color: #4b71a1; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2f323a); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(47, 50, 58, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2f323a; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(211, 218, 227, 0.2); + border-color: rgba(211, 218, 227, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #2d3036; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #383C45; + border-color: #2d3036; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(255, 255, 255, 0.03); } + .list-row.button:active { + color: #D3DAE3; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive GtkLabel { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +GtkExpander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + GtkExpander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkExpander:hover { + color: white; } + GtkExpander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #D3DAE3; + border: 1px solid #2d3036; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #D3DAE3; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(211, 218, 227, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #D3DAE3; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f343b; + border-bottom: 1px solid #1f2227; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #444852; + border-color: #2d3036; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #2d3036; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #444852; } + .sidebar .scrollbar.trough { + background-color: transparent; + border-width: 2px; + border-color: transparent; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #D3DAE3; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + +.pane-separator { + background-image: linear-gradient(to bottom, #2d3036); } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + border: none; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } + GtkColorSwatch.color-light:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } + GtkColorSwatch.color-dark:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } + GtkColorSwatch:hover { + border-color: rgba(0, 0, 0, 0.5); } + GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch.left, GtkColorSwatch:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + GtkColorSwatch.right, GtkColorSwatch:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch:only-child { + border-radius: 3px; } + GtkColorSwatch.color-active-badge { + border-width: 2px; } + GtkColorSwatch.color-active-badge:hover { + background-image: none; } + GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { + color: rgba(0, 0, 0, 0.3); + border-color: rgba(0, 0, 0, 0.3); } + GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.5); } + +GtkColorChooserWidget #add-color-button { + border-color: #383c44; + background-color: #383c44; + color: #444852; + box-shadow: none; } + GtkColorChooserWidget #add-color-button:hover { + border-color: #2d3036; + background-color: #2d3036; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1f2227, 0 4px 8px 1px rgba(0, 0, 0, 0.55); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px #1f2227, 0 4px 5px 2px rgba(0, 0, 0, 0.55); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #212429; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); } + +.header-bar .button.titlebutton, .titlebar .button.titlebutton, +.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; + color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, + .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { + opacity: 1; } +.header-bar .right .button.titlebutton:nth-last-child(3), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar .left .button.titlebutton:nth-child(3), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar .left .button.titlebutton:nth-child(3), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(3):hover, + .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(3):hover, + .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar .left .button.titlebutton:nth-child(3):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar .left .button.titlebutton:nth-child(3):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar .left .button.titlebutton:nth-child(3):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar .left .button.titlebutton:nth-child(3):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:nth-last-child(2), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar .left .button.titlebutton:nth-child(2), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar .left .button.titlebutton:nth-child(2), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(2):hover, + .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(2):hover, + .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar .left .button.titlebutton:nth-child(2):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar .left .button.titlebutton:nth-child(2):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar .left .button.titlebutton:nth-child(2):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar .left .button.titlebutton:nth-child(2):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:last-child, +.header-bar .right:dir(rtl) .button.titlebutton:first-child, +.header-bar .left .button.titlebutton:first-child, +.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, +.titlebar .right:dir(rtl) .button.titlebutton:first-child, +.titlebar .left .button.titlebutton:first-child, +.titlebar .left:dir(rtl) .button.titlebutton:last-child, +.header-bar.selection-mode .right .button.titlebutton:last-child, +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.header-bar.selection-mode .left .button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.titlebar.selection-mode .left .button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar .left .button.titlebutton:first-child:hover, + .header-bar .left .button.titlebutton:first-child:backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar .left .button.titlebutton:first-child:hover, + .titlebar .left .button.titlebutton:first-child:backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar .left .button.titlebutton:first-child:active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar .left .button.titlebutton:first-child:active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar .left .button.titlebutton:first-child:backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar .left .button.titlebutton:first-child:backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + +.header-bar .left GtkMenuButton.button.titlebutton:first-child, +.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar .left GtkMenuButton.button.titlebutton:first-child, +.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { + padding: 4px 6px 4px 6px; + border-color: transparent; + background-color: transparent; + background-image: none; } + +.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #383C45; + color: #D3DAE3; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #24272d; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #D3DAE3; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +NautilusNotebook.notebook { + background-color: #383C45; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #2d3036; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: #24272d; } + +.open-document-selector-listbox-row { + border-bottom: 1px solid #383c44; + padding: 6px 6px 6px 12px; } + .open-document-selector-listbox-row .path-label { + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + .open-document-selector-listbox-row:selected .path-label { + color: rgba(255, 255, 255, 0.7); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a0a6b0; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #D3DAE3; } + +.gedit-document-panel-dragged-row { + border: 1px solid #2d3036; + background-color: #2d3036; + color: #D3DAE3; } + +GeditStatusbar { + border-top: 1px solid #2d3036; + background-color: #444852; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #2d3036; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(211, 218, 227, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #494d58; + padding: 6px; + border-color: #2d3036; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(61, 65, 75, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #D3DAE3; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #444852; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #2d3036; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #444852; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #D3DAE3; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(211, 218, 227, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid #2d3036; + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #383C45); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #D3DAE3; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #D3DAE3; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid #1f2227; + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px #363c44; } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, #1f2227); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #2d3036; + border-right: 1px solid #2d3036; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #2d3036; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #2d3036; + background-color: #444852; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #444852; + color: #D3DAE3; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: #505460; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction, +.source-list .scrollbar.trough { + border-image: none; + border-color: transparent; + background-color: #444852; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #D3DAE3; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #383C45; } + +GraniteWidgetsWelcome GtkLabel { + color: #8b919a; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(211, 218, 227, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #383C45); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #a8aeb7; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: #24272d; } + +GtkFileChooserDialog .dialog-action-box { + background-color: #444852; } + +NemoWindow GtkEventBox { + background-color: #444852; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #2e3138; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #2e3138; } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog GtkBox.sidebar, +NautilusWindow GtkBox.sidebar, +NemoWindow GtkBox.sidebar, +MarlinViewWindow GtkBox.sidebar { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, GtkFileChooserDialog NemoPlacesSidebar, +NautilusWindow .sidebar, +NautilusWindow MarlinPlacesSidebar, +NautilusWindow NemoPlacesSidebar, +NemoWindow .sidebar, +NemoWindow MarlinPlacesSidebar, +NemoWindow NemoPlacesSidebar, +MarlinViewWindow .sidebar, +MarlinViewWindow MarlinPlacesSidebar, +MarlinViewWindow NemoPlacesSidebar { + background-color: #454a54; } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, GtkFileChooserDialog NemoPlacesSidebar .view, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar .source-list.sidebar row, + NautilusWindow MarlinPlacesSidebar .view, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, + NautilusWindow NemoPlacesSidebar .view, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row, + NemoWindow .sidebar .view, + NemoWindow .sidebar .source-list.sidebar row, + NemoWindow MarlinPlacesSidebar .view, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row, + NemoWindow NemoPlacesSidebar .view, + NemoWindow NemoPlacesSidebar .source-list.sidebar row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar .source-list.sidebar row, + MarlinViewWindow MarlinPlacesSidebar .view, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row, + MarlinViewWindow NemoPlacesSidebar .view, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, GtkFileChooserDialog NemoPlacesSidebar .view.image, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar .source-list.sidebar row.image, + NautilusWindow MarlinPlacesSidebar .view.image, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NautilusWindow NemoPlacesSidebar .view.image, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar .source-list.sidebar row.image, + NemoWindow MarlinPlacesSidebar .view.image, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NemoWindow NemoPlacesSidebar .view.image, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar .source-list.sidebar row.image, + MarlinViewWindow MarlinPlacesSidebar .view.image, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow NemoPlacesSidebar .view.image, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .view.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar .source-list.sidebar row.cell:selected, + NautilusWindow MarlinPlacesSidebar .view.cell:selected, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow NemoPlacesSidebar .view.cell:selected, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar .source-list.sidebar row.cell:selected, + NemoWindow MarlinPlacesSidebar .view.cell:selected, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow NemoPlacesSidebar .view.cell:selected, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow NemoPlacesSidebar .view.cell:selected, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, GtkFileChooserDialog NemoPlacesSidebar.frame, + NautilusWindow .sidebar.frame, + NautilusWindow MarlinPlacesSidebar.frame, + NautilusWindow NemoPlacesSidebar.frame, + NemoWindow .sidebar.frame, + NemoWindow MarlinPlacesSidebar.frame, + NemoWindow NemoPlacesSidebar.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow MarlinPlacesSidebar.frame, + MarlinViewWindow NemoPlacesSidebar.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, GtkFileChooserDialog NemoPlacesSidebar .separator, GtkFileChooserDialog NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog NemoPlacesSidebar .view.separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow MarlinPlacesSidebar .separator, + NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow MarlinPlacesSidebar .view.separator, + NautilusWindow NemoPlacesSidebar .separator, + NautilusWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow NemoPlacesSidebar .view.separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow MarlinPlacesSidebar .separator, + NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow MarlinPlacesSidebar .view.separator, + NemoWindow NemoPlacesSidebar .separator, + NemoWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow NemoPlacesSidebar .view.separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow MarlinPlacesSidebar .separator, + MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow MarlinPlacesSidebar .view.separator, + MarlinViewWindow NemoPlacesSidebar .separator, + MarlinViewWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow NemoPlacesSidebar .view.separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.trough, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.trough, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.trough, + NautilusWindow .sidebar .scrollbar.trough, + NautilusWindow MarlinPlacesSidebar .scrollbar.trough, + NautilusWindow NemoPlacesSidebar .scrollbar.trough, + NemoWindow .sidebar .scrollbar.trough, + NemoWindow MarlinPlacesSidebar .scrollbar.trough, + NemoWindow NemoPlacesSidebar .scrollbar.trough, + MarlinViewWindow .sidebar .scrollbar.trough, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.trough, + MarlinViewWindow NemoPlacesSidebar .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.slider, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider, + NautilusWindow .sidebar .scrollbar.slider, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider, + NautilusWindow NemoPlacesSidebar .scrollbar.slider, + NemoWindow .sidebar .scrollbar.slider, + NemoWindow MarlinPlacesSidebar .scrollbar.slider, + NemoWindow NemoPlacesSidebar .scrollbar.slider, + MarlinViewWindow .sidebar .scrollbar.slider, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar.slider:hover, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:hover, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:hover, + NautilusWindow .sidebar .scrollbar.slider:hover, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:hover, + NemoWindow .sidebar .scrollbar.slider:hover, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NemoWindow NemoPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow .sidebar .scrollbar.slider:hover, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow .sidebar .scrollbar.slider:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow .sidebar .scrollbar.slider:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow .sidebar .scrollbar.slider.fine-tune, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow .sidebar .scrollbar.slider.fine-tune, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune { + border-width: 4px; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:insensitive, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow .sidebar .scrollbar.slider:insensitive, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow .sidebar .scrollbar.slider:insensitive, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow .sidebar .scrollbar.slider:insensitive, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454a54; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: #2e3138; } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #444852; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: #2e3138; } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: #24272d; } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: #32383f; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: #2f343b; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: #32383f; } + +.gedit-bottom-panel-paned { + background-color: #383C45; } + +.gedit-document-panel { + background-color: #454a54; } + .maximized .gedit-document-panel { + background-color: #454a54; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #454a54; } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #454a54; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune { + border-width: 4px; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction, GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough, + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction.frame, + GeditWindow.background.csd GeditFileBrowserWidget .frame.scrollbar.trough { + border-color: transparent; + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #353941; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: #41454f; + border-color: #23252a; } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #D3DAE3; +@define-color theme_text_color #D3DAE3; +@define-color theme_bg_color #444852; +@define-color theme_base_color #383C45; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #D3DAE3; +@define-color text_color #D3DAE3; +@define-color bg_color #444852; +@define-color base_color #383C45; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #494d58; +@define-color insensitive_fg_color rgba(211, 218, 227, 0.45); +@define-color insensitive_base_color #383C45; +@define-color theme_unfocused_fg_color #D3DAE3; +@define-color theme_unfocused_text_color #D3DAE3; +@define-color theme_unfocused_bg_color #444852; +@define-color theme_unfocused_base_color #383C45; +@define-color borders #2d3036; +@define-color unfocused_borders #2d3036; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #383C45; diff --git a/common/gtk-3.0/3.14/gtk-contained-solid-dark.scss b/common/gtk-3.0/3.14/gtk-contained-solid-dark.scss new file mode 100644 index 0000000..c6fb71b --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-solid-dark.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'dark'; +$darker: 'false'; +$transparency: 'false'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/gtk-contained-solid-darker.css b/common/gtk-3.0/3.14/gtk-contained-solid-darker.css new file mode 100644 index 0000000..edfc5ec --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-solid-darker.css @@ -0,0 +1,3538 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #2679db; + -GtkWidget-visited-link-color: #1e61b0; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(92, 97, 108, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #5c616c; + background-color: rgba(245, 246, 247, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F5F6F7; + color: #5c616c; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #5c616c; } + .gtkstyle-fallback:active { + background-color: #d9dde0; + color: #5c616c; } + .gtkstyle-fallback:insensitive { + background-color: #fbfbfb; + color: rgba(92, 97, 108, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #5c616c; + background-color: #ffffff; } + .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { + color: rgba(92, 97, 108, 0.55); } + .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { + color: #5c616c; } +GtkLabel:insensitive { + color: rgba(92, 97, 108, 0.55); } + +.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #dcdfe3; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar GtkLabel { + padding: 6px 12px; } +GtkAssistant .sidebar GtkLabel.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #fafafb; } + +GtkFlowBox .grid-child { + padding: 3px; + border-radius: 3px; } + GtkFlowBox .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #5c616c; + border-color: #5294E2; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fc665f); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f4935d); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #7c8089; } + .entry.image:hover { + color: #5c616c; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #f4f5f6; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 246, 247, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #9EA4B5; + background-color: #9EA4B5; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #b8bcc9; + background-color: #b8bcc9; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #8a91a6; + background-color: #8a91a6; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > GtkLabel, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > GtkLabel, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > GtkLabel, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #edeef0; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #2679db; } + *:link:visited, .button:visited { + color: #1e61b0; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5294e2; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #2679db; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(220, 223, 227, 0.6); + border-style: none none none solid; + color: #646873; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(92, 97, 108, 0.55); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(92, 97, 108, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(92, 97, 108, 0.6); + background-color: #cfd6e6; + border-color: #cfd6e6; } + GtkComboBox.combobox-entry .button:hover { + background-color: #e0e4ef; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F5F6F7; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, #1f2227) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #eceef0; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F5F6F7; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #eceef0; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #1f2227; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: #2f343b; } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: #32383f; } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: #5294E2; + border-color: #4189df; + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: #5294E2; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px #363c44; } + .csd .titlebar { + background-color: #2f343b; } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: #32383f; } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); + background-clip: border-box; } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #9EA4B5; + background-color: #9EA4B5; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; + outline-color: rgba(158, 164, 181, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #b8bcc9; + background-color: #b8bcc9; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #8a91a6; + background-color: #8a91a6; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(158, 164, 181, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #262a30); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #2d3138); + border-color: #3d5a7d; } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-color: rgba(92, 97, 108, 0.2); } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #577aa7; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #adb0b5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #5c616c; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #cfd6e6; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #7c8089; + background-color: #ffffff; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #5c616c; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #ffffff; } + column-header .button:insensitive { + border-color: #F5F6F7; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #dcdfe3; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #5c616c; + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(92, 97, 108, 0.55); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #eeeff0; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #eeeff0; } + .menu.button:hover, .popup.button:hover { + background-color: #eeeff0; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + margin: 10px; + padding: 2px; + border: 1px solid #cdd2d7; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #fefefe; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #dcdfe3; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #fafafb; } + .notebook.header.frame { + border: 1px solid #dcdfe3; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #eaecee; } + .notebook.header.bottom { + box-shadow: inset 0 1px #eaecee; } + .notebook.header.right { + box-shadow: inset 1px 0 #eaecee; } + .notebook.header.left { + box-shadow: inset -1px 0 #eaecee; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(92, 97, 108, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(92, 97, 108, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #5c616c; } + .notebook tab .button { + padding: 0; + color: #91959c; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(92, 97, 108, 0.55); } + .notebook.arrow:hover { + color: rgba(92, 97, 108, 0.775); } + .notebook.arrow:active { + color: #5c616c; } + .notebook.arrow:insensitive { + color: rgba(92, 97, 108, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + background-clip: padding-box; + background-image: none; + border-style: solid; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkRange-slider-width: 11; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: #b7babf; } + .scrollbar.slider:hover { + background-color: #898d95; } + .scrollbar.slider:prelight:active { + background-color: #5294E2; } + .scrollbar.slider.fine-tune { + border-width: 4px; } + .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + .scrollbar.slider:insensitive { + background-color: transparent; } + +.scrollbars-junction, .scrollbar.trough, +.scrollbars-junction.frame, +.frame.scrollbar.trough { + border-color: transparent; + background-color: #ffffff; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(92, 97, 108, 0.55); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfd6e6); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 214, 230, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(92, 97, 108, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfd6e6; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(92, 97, 108, 0.2); + border-color: rgba(92, 97, 108, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #dcdfe3; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #ffffff; + border-color: #dcdfe3; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(0, 0, 0, 0.05); } + .list-row.button:active { + color: #5c616c; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive GtkLabel { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +GtkExpander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + GtkExpander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkExpander:hover { + color: #aaaeb7; } + GtkExpander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #5c616c; + border: 1px solid #dcdfe3; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #5c616c; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(92, 97, 108, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #5c616c; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f343b; + border-bottom: 1px solid #1f2227; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F5F6F7; + border-color: #dcdfe3; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #dcdfe3; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #F5F6F7; } + .sidebar .scrollbar.trough { + background-color: transparent; + border-width: 2px; + border-color: transparent; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #5c616c; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + +.pane-separator { + background-image: linear-gradient(to bottom, #dcdfe3); } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + border: none; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } + GtkColorSwatch.color-light:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } + GtkColorSwatch.color-dark:hover { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } + GtkColorSwatch:hover { + border-color: rgba(0, 0, 0, 0.5); } + GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch.left, GtkColorSwatch:first-child { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + GtkColorSwatch.right, GtkColorSwatch:last-child { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + GtkColorSwatch:only-child { + border-radius: 3px; } + GtkColorSwatch.color-active-badge { + border-width: 2px; } + GtkColorSwatch.color-active-badge:hover { + background-image: none; } + GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { + color: rgba(0, 0, 0, 0.3); + border-color: rgba(0, 0, 0, 0.3); } + GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.5); } + +GtkColorChooserWidget #add-color-button { + border-color: #e8eaed; + background-color: #e8eaed; + color: #F5F6F7; + box-shadow: none; } + GtkColorChooserWidget #add-color-button:hover { + border-color: #dcdfe3; + background-color: #dcdfe3; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1f2227, 0 4px 8px 1px rgba(0, 0, 0, 0.25); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px #1f2227, 0 4px 5px 2px rgba(0, 0, 0, 0.25); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); } + +.header-bar .button.titlebutton, .titlebar .button.titlebutton, +.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; + color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, + .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { + opacity: 1; } +.header-bar .right .button.titlebutton:nth-last-child(3), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar .left .button.titlebutton:nth-child(3), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar .left .button.titlebutton:nth-child(3), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left .button.titlebutton:nth-child(3), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left .button.titlebutton:nth-child(3), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(3):hover, + .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(3):hover, + .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar .left .button.titlebutton:nth-child(3):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar .left .button.titlebutton:nth-child(3):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar .left .button.titlebutton:nth-child(3):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar .left .button.titlebutton:nth-child(3):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:nth-last-child(2), +.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar .left .button.titlebutton:nth-child(2), +.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), +.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar .left .button.titlebutton:nth-child(2), +.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left .button.titlebutton:nth-child(2), +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left .button.titlebutton:nth-child(2), +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left .button.titlebutton:nth-child(2):hover, + .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left .button.titlebutton:nth-child(2):hover, + .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar .left .button.titlebutton:nth-child(2):active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar .left .button.titlebutton:nth-child(2):active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar .left .button.titlebutton:nth-child(2):backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar .left .button.titlebutton:nth-child(2):backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } +.header-bar .right .button.titlebutton:last-child, +.header-bar .right:dir(rtl) .button.titlebutton:first-child, +.header-bar .left .button.titlebutton:first-child, +.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, +.titlebar .right:dir(rtl) .button.titlebutton:first-child, +.titlebar .left .button.titlebutton:first-child, +.titlebar .left:dir(rtl) .button.titlebutton:last-child, +.header-bar.selection-mode .right .button.titlebutton:last-child, +.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.header-bar.selection-mode .left .button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, +.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, +.titlebar.selection-mode .left .button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar .left .button.titlebutton:first-child:hover, + .header-bar .left .button.titlebutton:first-child:backdrop:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar .left .button.titlebutton:first-child:hover, + .titlebar .left .button.titlebutton:first-child:backdrop:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:active:hover, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar .left .button.titlebutton:first-child:active:hover, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar .left .button.titlebutton:first-child:active:hover, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .right .button.titlebutton:last-child:backdrop, + .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar .left .button.titlebutton:first-child:backdrop, + .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, + .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar .left .button.titlebutton:first-child:backdrop, + .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, + .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, + .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, + .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, + .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + +.header-bar .left GtkMenuButton.button.titlebutton:first-child, +.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar .left GtkMenuButton.button.titlebutton:first-child, +.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, +.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, +.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { + padding: 4px 6px 4px 6px; + border-color: transparent; + background-color: transparent; + background-image: none; } + +.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #ffffff; + color: #5c616c; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #1f2227; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #5c616c; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #dcdfe3; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: #1f2227; } + +.open-document-selector-listbox-row { + border-bottom: 1px solid #e7e9ec; + padding: 6px 6px 6px 12px; } + .open-document-selector-listbox-row .path-label { + font-size: smaller; + color: rgba(92, 97, 108, 0.7); } + .open-document-selector-listbox-row:selected .path-label { + color: rgba(255, 255, 255, 0.7); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #91959c; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #5c616c; } + +.gedit-document-panel-dragged-row { + border: 1px solid #dcdfe3; + background-color: #d9dde0; + color: #5c616c; } + +GeditStatusbar { + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #dcdfe3; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(92, 97, 108, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #fbfbfc; + padding: 6px; + border-color: #dcdfe3; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(251, 251, 252, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #5c616c; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #F5F6F7; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #dcdfe3; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #F5F6F7; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #5c616c; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(92, 97, 108, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #ffffff); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #5c616c; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid #1f2227; + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px #363c44; } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, #1f2227); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #dcdfe3; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #dcdfe3; + background-color: #F5F6F7; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #F5F6F7; + color: #5c616c; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: white; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction, +.source-list .scrollbar.trough { + border-image: none; + border-color: transparent; + background-color: #F5F6F7; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #5c616c; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #ffffff; } + +GraniteWidgetsWelcome GtkLabel { + color: #a8abb1; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(92, 97, 108, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #898d95; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: #1f2227; } + +GtkFileChooserDialog .dialog-action-box { + background-color: #F5F6F7; } + +NemoWindow GtkEventBox { + background-color: #F5F6F7; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog GtkBox.sidebar, +NautilusWindow GtkBox.sidebar, +NemoWindow GtkBox.sidebar, +MarlinViewWindow GtkBox.sidebar { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, GtkFileChooserDialog NemoPlacesSidebar, +NautilusWindow .sidebar, +NautilusWindow MarlinPlacesSidebar, +NautilusWindow NemoPlacesSidebar, +NemoWindow .sidebar, +NemoWindow MarlinPlacesSidebar, +NemoWindow NemoPlacesSidebar, +MarlinViewWindow .sidebar, +MarlinViewWindow MarlinPlacesSidebar, +MarlinViewWindow NemoPlacesSidebar { + background-color: #3c4049; } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, GtkFileChooserDialog NemoPlacesSidebar .view, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar .source-list.sidebar row, + NautilusWindow MarlinPlacesSidebar .view, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, + NautilusWindow NemoPlacesSidebar .view, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row, + NemoWindow .sidebar .view, + NemoWindow .sidebar .source-list.sidebar row, + NemoWindow MarlinPlacesSidebar .view, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row, + NemoWindow NemoPlacesSidebar .view, + NemoWindow NemoPlacesSidebar .source-list.sidebar row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar .source-list.sidebar row, + MarlinViewWindow MarlinPlacesSidebar .view, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row, + MarlinViewWindow NemoPlacesSidebar .view, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, GtkFileChooserDialog NemoPlacesSidebar .view.image, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar .source-list.sidebar row.image, + NautilusWindow MarlinPlacesSidebar .view.image, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NautilusWindow NemoPlacesSidebar .view.image, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar .source-list.sidebar row.image, + NemoWindow MarlinPlacesSidebar .view.image, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, + NemoWindow NemoPlacesSidebar .view.image, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar .source-list.sidebar row.image, + MarlinViewWindow MarlinPlacesSidebar .view.image, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image, + MarlinViewWindow NemoPlacesSidebar .view.image, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .view.cell:selected, GtkFileChooserDialog NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar .source-list.sidebar row.cell:selected, + NautilusWindow MarlinPlacesSidebar .view.cell:selected, + NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NautilusWindow NemoPlacesSidebar .view.cell:selected, + NautilusWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar .source-list.sidebar row.cell:selected, + NemoWindow MarlinPlacesSidebar .view.cell:selected, + NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + NemoWindow NemoPlacesSidebar .view.cell:selected, + NemoWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, + MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, + MarlinViewWindow NemoPlacesSidebar .view.cell:selected, + MarlinViewWindow NemoPlacesSidebar .source-list.sidebar row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, GtkFileChooserDialog NemoPlacesSidebar.frame, + NautilusWindow .sidebar.frame, + NautilusWindow MarlinPlacesSidebar.frame, + NautilusWindow NemoPlacesSidebar.frame, + NemoWindow .sidebar.frame, + NemoWindow MarlinPlacesSidebar.frame, + NemoWindow NemoPlacesSidebar.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow MarlinPlacesSidebar.frame, + MarlinViewWindow NemoPlacesSidebar.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, GtkFileChooserDialog NemoPlacesSidebar .separator, GtkFileChooserDialog NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog NemoPlacesSidebar .view.separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow MarlinPlacesSidebar .separator, + NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow MarlinPlacesSidebar .view.separator, + NautilusWindow NemoPlacesSidebar .separator, + NautilusWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NautilusWindow NemoPlacesSidebar .view.separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow MarlinPlacesSidebar .separator, + NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow MarlinPlacesSidebar .view.separator, + NemoWindow NemoPlacesSidebar .separator, + NemoWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar NemoWindow NemoPlacesSidebar .view.separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow MarlinPlacesSidebar .separator, + MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow MarlinPlacesSidebar .view.separator, + MarlinViewWindow NemoPlacesSidebar .separator, + MarlinViewWindow NemoPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, + GtkPlacesSidebar.sidebar MarlinViewWindow NemoPlacesSidebar .view.separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.trough, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.trough, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.trough, + NautilusWindow .sidebar .scrollbar.trough, + NautilusWindow MarlinPlacesSidebar .scrollbar.trough, + NautilusWindow NemoPlacesSidebar .scrollbar.trough, + NemoWindow .sidebar .scrollbar.trough, + NemoWindow MarlinPlacesSidebar .scrollbar.trough, + NemoWindow NemoPlacesSidebar .scrollbar.trough, + MarlinViewWindow .sidebar .scrollbar.trough, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.trough, + MarlinViewWindow NemoPlacesSidebar .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.slider, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider, + NautilusWindow .sidebar .scrollbar.slider, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider, + NautilusWindow NemoPlacesSidebar .scrollbar.slider, + NemoWindow .sidebar .scrollbar.slider, + NemoWindow MarlinPlacesSidebar .scrollbar.slider, + NemoWindow NemoPlacesSidebar .scrollbar.slider, + MarlinViewWindow .sidebar .scrollbar.slider, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar.slider:hover, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:hover, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:hover, + NautilusWindow .sidebar .scrollbar.slider:hover, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:hover, + NemoWindow .sidebar .scrollbar.slider:hover, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:hover, + NemoWindow NemoPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow .sidebar .scrollbar.slider:hover, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:hover, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow .sidebar .scrollbar.slider:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow .sidebar .scrollbar.slider:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow .sidebar .scrollbar.slider.fine-tune, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow .sidebar .scrollbar.slider.fine-tune, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune { + border-width: 4px; } + GtkFileChooserDialog .sidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NautilusWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + NemoWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow .sidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider.fine-tune:prelight:active, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar.slider:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .scrollbar.slider:insensitive, GtkFileChooserDialog NemoPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow .sidebar .scrollbar.slider:insensitive, + NautilusWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NautilusWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow .sidebar .scrollbar.slider:insensitive, + NemoWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + NemoWindow NemoPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow .sidebar .scrollbar.slider:insensitive, + MarlinViewWindow MarlinPlacesSidebar .scrollbar.slider:insensitive, + MarlinViewWindow NemoPlacesSidebar .scrollbar.slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #3c4049; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: #3c4049; } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F5F6F7; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: #3c4049; } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: #1f2227; } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: #32383f; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: #2f343b; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: #32383f; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #3c4049; } + .maximized .gedit-document-panel { + background-color: #3c4049; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #3c4049; } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #3c4049; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough { + background-color: transparent; + border-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider { + border-radius: 20px; + border: 3px solid transparent; + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune { + border-width: 4px; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider.fine-tune:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction, GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.trough, + GeditWindow.background.csd GeditFileBrowserWidget .scrollbars-junction.frame, + GeditWindow.background.csd GeditFileBrowserWidget .frame.scrollbar.trough { + border-color: transparent; + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #2c2f35; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: #373b43; + border-color: #2c2f35; } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #5c616c; +@define-color theme_text_color #5c616c; +@define-color theme_bg_color #F5F6F7; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #5c616c; +@define-color text_color #5c616c; +@define-color bg_color #F5F6F7; +@define-color base_color #ffffff; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #fbfbfb; +@define-color insensitive_fg_color rgba(92, 97, 108, 0.55); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #5c616c; +@define-color theme_unfocused_text_color #5c616c; +@define-color theme_unfocused_bg_color #F5F6F7; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.14/gtk-contained-solid-darker.scss b/common/gtk-3.0/3.14/gtk-contained-solid-darker.scss new file mode 100644 index 0000000..161ca2e --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-contained-solid-darker.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'light'; +$darker: 'true'; +$transparency: 'false'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/gtk-contained-solid.css b/common/gtk-3.0/3.14/gtk-contained-solid.css index a2a3194..c4f384f 100644 --- a/common/gtk-3.0/3.14/gtk-contained-solid.css +++ b/common/gtk-3.0/3.14/gtk-contained-solid.css @@ -33,7 +33,7 @@ ***************/ .background { color: #5c616c; - background-color: rgba(249, 250, 251, 0.999); } + background-color: rgba(245, 246, 247, 0.999); } /* These wildcard seems unavoidable, need to investigate. @@ -45,16 +45,16 @@ -gtk-image-effect: dim; } .gtkstyle-fallback { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; } .gtkstyle-fallback:prelight { background-color: white; color: #5c616c; } .gtkstyle-fallback:active { - background-color: #dae1e7; + background-color: #d9dde0; color: #5c616c; } .gtkstyle-fallback:insensitive { - background-color: #fcfdfd; + background-color: #fbfbfb; color: rgba(92, 97, 108, 0.55); } .gtkstyle-fallback:selected { background-color: #5294E2; @@ -83,11 +83,11 @@ GtkLabel:insensitive { GtkAssistant .sidebar { background-color: #ffffff; - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dde3e9; } + border-right: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; } GtkAssistant.csd .sidebar { border-top-style: none; } GtkAssistant .sidebar GtkLabel { @@ -97,7 +97,7 @@ GtkAssistant .sidebar GtkLabel.highlight { color: #ffffff; } GtkTextView { - background-color: #fcfcfd; } + background-color: #fafafb; } GtkFlowBox .grid-child { padding: 3px; @@ -105,7 +105,8 @@ GtkFlowBox .grid-child { GtkFlowBox .grid-child:selected { outline-offset: -2px; } -.popover.osd, .osd { +.popover.osd, .app-notification, +.app-notification.frame, .osd { color: #A8ADB5; border: none; background-color: rgba(60, 64, 73, 0.95); @@ -156,6 +157,7 @@ GtkFlowBox .grid-child { border: none; border-radius: 0; } .entry:focus { + background-clip: border-box; color: #5c616c; border-color: #5294E2; background-color: #ffffff; @@ -215,20 +217,20 @@ GtkFlowBox .grid-child { .entry.image:active { color: #5294E2; } .linked.vertical > .entry { - border-bottom-color: #f4f6f8; + border-bottom-color: #f4f5f6; box-shadow: none; } .linked.vertical > .entry:focus { border-color: #5294E2; box-shadow: 0 -1px 0 0 #5294E2; } .linked.vertical > .entry:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child:focus { border-bottom-color: #5294E2; box-shadow: none; } .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:last-child { border-bottom-color: rgba(0, 0, 0, 0.14); } .linked.vertical > .entry:last-child:focus { @@ -253,14 +255,14 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .header-bar .button { padding: 6px 11px; } .button.flat { border-color: transparent; background-color: transparent; background-image: none; - background-color: rgba(249, 250, 251, 0); + background-color: rgba(245, 246, 247, 0); transition: none; } .button.flat:hover { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); @@ -271,9 +273,10 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; + background-color: #fbfbfc; -gtk-image-effect: highlight; } .button:active, .button:checked { + background-clip: border-box; color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #5294E2; @@ -286,7 +289,7 @@ GtkFlowBox .grid-child { .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .button:insensitive > GtkLabel { color: inherit; } .button:insensitive:active, .button:insensitive:checked { @@ -475,12 +478,12 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:hover { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -489,7 +492,7 @@ GtkFlowBox .grid-child { .inline-toolbar GtkToolButton > .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { color: inherit; } .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { @@ -579,7 +582,9 @@ GtkFlowBox .grid-child { .linked.vertical > GtkComboBox:only-child > .button:hover { box-shadow: none; } -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button { +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { border-color: transparent; background-color: transparent; background-image: none; @@ -591,7 +596,7 @@ GtkFlowBox .grid-child { outline-offset: -1px; border-radius: 2px; } .menuitem.button.flat:hover { - background-color: #f1f2f3; } + background-color: #edeef0; } /********* * Links * @@ -620,7 +625,7 @@ GtkFlowBox .grid-child { border-radius: 3px; } .spinbutton .button { background-image: none; - border: 1px solid rgba(221, 227, 233, 0.6); + border: 1px solid rgba(220, 223, 227, 0.6); border-style: none none none solid; color: #646873; border-radius: 0; @@ -640,7 +645,7 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -650,18 +655,18 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -671,11 +676,11 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { @@ -734,7 +739,7 @@ GtkComboBox { .toolbar, .inline-toolbar { -GtkWidget-window-dragging: true; padding: 4px; - background-color: #f9fafb; } + background-color: #F5F6F7; } .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { padding: 7px; border: none; @@ -752,22 +757,22 @@ GtkComboBox { background-color: #eff0f2; } .inline-toolbar { - background-color: #f0f2f5; + background-color: #eceef0; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 1px 1px; padding: 3px; border-radius: 0 0 3px 3px; } .search-bar { - background-color: #f9fafb; + background-color: #F5F6F7; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 0 1px; padding: 3px; } .action-bar { - background-color: #f0f2f5; } + background-color: #eceef0; } /*************** * Header bars * @@ -794,11 +799,11 @@ GtkComboBox { padding: 0 12px; } .header-bar.selection-mode { color: #ffffff; - background-color: rgba(82, 148, 226, 0.95); - border-color: rgba(65, 137, 223, 0.95); + background-color: #5294E2; + border-color: #4189df; box-shadow: none; } .header-bar.selection-mode:backdrop { - background-color: rgba(82, 148, 226, 0.95); + background-color: #5294E2; color: rgba(255, 255, 255, 0.6); } .header-bar.selection-mode .button { color: #ffffff; @@ -857,7 +862,7 @@ GtkComboBox { background-color: #e7e8eb; } .titlebar:backdrop { color: rgba(82, 93, 118, 0.5); - background-color: #e7e8eb; } + background-color: #eff0f2; } .csd .titlebar:backdrop { background-color: #eff0f2; } .maximized .titlebar { @@ -915,7 +920,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -942,7 +947,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { @@ -1147,7 +1152,7 @@ column-header .button, column-header .button:hover, column-header .button:active column-header .button:active { background-color: #ffffff; } column-header .button:insensitive { - border-color: #f9fafb; + border-color: #F5F6F7; background-image: none; } /********* @@ -1176,7 +1181,7 @@ column-header .button, column-header .button:hover, column-header .button:active padding: 0; border-radius: 0; background-color: #ffffff; - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .csd .menu, .csd .popup { padding: 4px 0px; border-radius: 3px; @@ -1219,7 +1224,7 @@ column-header .button, column-header .button:hover, column-header .button:active .popover { margin: 10px; padding: 2px; - border: 1px solid #ced6de; + border: 1px solid #cdd2d7; border-radius: 3px; background-clip: border-box; background-color: #ffffff; @@ -1262,7 +1267,7 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkWidget-focus-line-width: 0; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } .notebook.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.frame.top { border-top-width: 0; } .notebook.frame.bottom { @@ -1272,9 +1277,9 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.frame.left { border-left-width: 0; } .notebook.header { - background-color: #ffffff; } + background-color: #fafafb; } .notebook.header.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.header.frame.top { border-bottom-width: 0; } .notebook.header.frame.bottom { @@ -1284,13 +1289,13 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.header.frame.left { border-right-width: 0; } .notebook.header.top { - box-shadow: inset 0 -1px #edf0f3; } + box-shadow: inset 0 -1px #eaecee; } .notebook.header.bottom { - box-shadow: inset 0 1px #edf0f3; } + box-shadow: inset 0 1px #eaecee; } .notebook.header.right { - box-shadow: inset 1px 0 #edf0f3; } + box-shadow: inset 1px 0 #eaecee; } .notebook.header.left { - box-shadow: inset -1px 0 #edf0f3; } + box-shadow: inset -1px 0 #eaecee; } .notebook tab { border-width: 0; border-style: solid; @@ -1308,59 +1313,59 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook tab.reorderable-page.top, .notebook tab.top { border-color: transparent; } .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-top-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { border-width: 1px; border-top-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom, .notebook tab.bottom { border-color: transparent; } .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-bottom-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { border-width: 1px; border-bottom-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right, .notebook tab.right { border-color: transparent; } .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-right-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { border-width: 1px; border-right-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left, .notebook tab.left { border-color: transparent; } .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-left-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { border-width: 1px; border-left-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab GtkLabel { padding: 0 2px; color: rgba(92, 97, 108, 0.55); } @@ -1370,7 +1375,7 @@ column-header .button, column-header .button:hover, column-header .button:active color: #5c616c; } .notebook tab .button { padding: 0; - color: #92969e; } + color: #91959c; } .notebook tab .button:hover { color: #ff4d4d; } .notebook tab .button:active { @@ -1405,9 +1410,9 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbar.slider { border-radius: 20px; border: 3px solid transparent; - background-color: #babcc1; } + background-color: #b7babf; } .scrollbar.slider:hover { - background-color: #8b8e96; } + background-color: #898d95; } .scrollbar.slider:prelight:active { background-color: #5294E2; } .scrollbar.slider.fine-tune { @@ -1428,7 +1433,8 @@ column-header .button, column-header .button:hover, column-header .button:active **********/ GtkSwitch { font: 1; - -GtkSwitch-slider-width: 41; } + -GtkSwitch-slider-width: 41; + outline-color: transparent; } GtkSwitch.trough, GtkSwitch.slider { background-size: 52px 24px; background-repeat: no-repeat; @@ -1444,39 +1450,83 @@ GtkSwitch { GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } -.header-bar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } -.header-bar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough:active:insensitive { +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } .list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + .list-row:selected GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + /************************* * Check and Radio items * *************************/ @@ -1604,8 +1654,8 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { background-image: linear-gradient(to bottom, #5294E2); border-color: #5294E2; } .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #fcfcfd); - border-color: #9dc1ed; } + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } .scale.slider:active { background-image: linear-gradient(to bottom, #2679db); border-color: #2679db; } @@ -1722,7 +1772,7 @@ GtkLevelBar.vertical { * Frames * **********/ .frame { - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; padding: 0; } .frame.flat { border-style: none; } @@ -1743,7 +1793,7 @@ GtkScrolledWindow GtkViewport.frame { *********/ .list, .list-row { background-color: #ffffff; - border-color: #dde3e9; } + border-color: #dcdfe3; } .list-row, .grid-child { @@ -1779,12 +1829,40 @@ GtkScrolledWindow GtkViewport.frame { .app-notification, .app-notification.frame { padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0, 0, 0, 0.2); - background-color: #ffffff; - background-clip: padding-box; } + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } /************* * Expanders * @@ -1803,7 +1881,7 @@ GtkExpander { ***********/ GtkCalendar { color: #5c616c; - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; border-radius: 3px; padding: 2px; } GtkCalendar:selected { @@ -1855,18 +1933,18 @@ GtkCalendar { border-bottom-left-radius: 3px; } GtkFileChooserDialog .search-bar { - background-color: #f9fafb; - border-color: #dde3e9; + background-color: #F5F6F7; + border-color: #dcdfe3; box-shadow: none; } GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } /*********** * Sidebar * ***********/ .sidebar { border: none; - background-color: #f9fafb; } + background-color: #F5F6F7; } .sidebar .scrollbar.trough { background-color: transparent; border-width: 2px; @@ -1896,7 +1974,7 @@ GtkPaned { margin-left: 8px; } .pane-separator { - background-image: linear-gradient(to bottom, #dde3e9); } + background-image: linear-gradient(to bottom, #dcdfe3); } /************** * GtkInfoBar * @@ -1997,13 +2075,13 @@ GtkColorSwatch { border-color: rgba(255, 255, 255, 0.5); } GtkColorChooserWidget #add-color-button { - border-color: #ebeef2; - background-color: #ebeef2; - color: #f9fafb; + border-color: #e8eaed; + background-color: #e8eaed; + color: #F5F6F7; box-shadow: none; } GtkColorChooserWidget #add-color-button:hover { - border-color: #dde3e9; - background-color: #dde3e9; } + border-color: #dcdfe3; + background-color: #dcdfe3; } GtkColorButton.button { padding: 4px; } @@ -2019,7 +2097,7 @@ GtkColorButton.button { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkVolumeButton.button { padding: 8px; } @@ -2391,13 +2469,11 @@ TerminalWindow .notebook tab.reorderable-page:hover { padding-top: 4px; padding-bottom: 4px; } TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } TerminalWindow .notebook tab .active-page GtkLabel { color: rgba(82, 93, 118, 0.8); } TerminalWindow .notebook tab .active-page GtkLabel:backdrop { color: rgba(82, 93, 118, 0.5); } -TerminalWindow .notebook tab.reorderable-page.top:hover { - border-bottom-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { background-color: #e7e8eb; border-color: #d4d5db; } @@ -2438,13 +2514,13 @@ NemoWindow .sidebar .frame { border-width: 0; } NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dde3e9; } + color: #dcdfe3; } NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { border-color: #5294E2; } NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { @@ -2457,7 +2533,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: #d4d5db; } .open-document-selector-listbox-row { - border-bottom: 1px solid #eaedf1; + border-bottom: 1px solid #e7e9ec; padding: 6px 6px 6px 12px; } .open-document-selector-listbox-row .path-label { font-size: smaller; @@ -2475,7 +2551,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { .gedit-document-panel .list-row .button GtkImage { color: inherit; } .gedit-document-panel .prelight-row .button { - color: #92969e; } + color: #91959c; } .gedit-document-panel .list-row .button:hover, .gedit-document-panel .prelight-row .button:hover { color: #ff4d4d; } @@ -2491,13 +2567,13 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: #5c616c; } .gedit-document-panel-dragged-row { - border: 1px solid #dde3e9; - background-color: #dae1e7; + border: 1px solid #dcdfe3; + background-color: #d9dde0; color: #5c616c; } GeditStatusbar { - border-top: 1px solid #dde3e9; - background-color: #f9fafb; } + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } GeditStatusMenuButton.button.flat, GeditStatusMenuButton:prelight.button.flat, @@ -2506,7 +2582,7 @@ GeditStatusMenuButton:checked.button.flat { border-radius: 0; } GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { color: rgba(92, 97, 108, 0.6); @@ -2514,9 +2590,9 @@ GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { padding: 2px; } GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: white; + background-color: #fbfbfc; padding: 6px; - border-color: #dde3e9; + border-color: #dcdfe3; border-radius: 0 0 2px 2px; border-width: 0 1px 1px 1px; border-style: solid; } @@ -2524,7 +2600,7 @@ GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { border-color: #5294E2; } @@ -2556,7 +2632,7 @@ GdTaggedEntry { .preferences.sidebar GtkViewport { border: none; } .preferences.sidebar GtkListBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } .preferences.sidebar GtkListBoxRow { padding: 10px; } @@ -2592,10 +2668,10 @@ GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { GbViewStack GtkBox.header.notebook, GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } GbViewStack.focused GtkBox.header.notebook { - background-color: #f9fafb; } + background-color: #F5F6F7; } GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { opacity: 1; } @@ -2656,7 +2732,7 @@ PanelWidget, PanelAppletFrame, PanelApplet { color: #A8ADB5; - background-image: linear-gradient(to bottom, #25272d); } + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } PanelApplet .button, PanelApplet .button:backdrop { padding: 4px; @@ -2699,18 +2775,18 @@ ClockBox { color: #A8ADB5; } .xfce4-panel.panel { - background-color: #25272d; } + background-color: rgba(37, 39, 45, 0.95); } .xfce4-panel.panel .button.flat { color: #A8ADB5; background-color: rgba(37, 39, 45, 0); border-radius: 0; } .xfce4-panel.panel .button.flat:hover { border: none; - background-color: #3c4049; } + background-color: rgba(60, 64, 73, 0.95); } .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { color: #5294E2; border: none; - background-color: #151619; } + background-color: rgba(21, 22, 25, 0.95); } .floating-bar { background-color: #5294E2; @@ -2839,7 +2915,7 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { @@ -2899,8 +2975,8 @@ GraniteWidgetsThinPaned { background-color: transparent; background-image: none; margin: 0; - border-left: 1px solid #dde3e9; - border-right: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } GraniteWidgetsPopOver .frame, GraniteWidgetsStaticNotebook .frame { @@ -2912,7 +2988,7 @@ GraniteWidgetsStaticNotebook .frame { .secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { padding: 3px; - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { padding: 0 3px 0 3px; } @@ -2920,8 +2996,8 @@ GraniteWidgetsStaticNotebook .frame { padding: 5px; border-width: 1px 0 0 0; border-style: solid; - border-color: #dde3e9; - background-color: #f9fafb; } + border-color: #dcdfe3; + background-color: #F5F6F7; } .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { padding: 2px 3px 2px 3px; } @@ -2931,7 +3007,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list, .source-list.view { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; -gtk-icon-style: regular; } @@ -2953,7 +3029,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list .scrollbar.trough { border-image: none; border-color: transparent; - background-color: #f9fafb; + background-color: #F5F6F7; background-image: none; } .source-list.badge, @@ -2992,7 +3068,7 @@ GraniteWidgetsWelcome { background-color: #ffffff; } GraniteWidgetsWelcome GtkLabel { - color: #aaadb3; + color: #a8abb1; font: open sans 11; text-shadow: none; } @@ -3031,7 +3107,7 @@ GraniteWidgetsPopOver * { .h4, .category-label { - color: #8b8e96; + color: #898d95; font-weight: 600; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } @@ -3046,10 +3122,10 @@ GtkListBox .h4 { color: #d4d5db; } GtkFileChooserDialog .dialog-action-box { - background-color: #f9fafb; } + background-color: #F5F6F7; } NemoWindow GtkEventBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } GtkFileChooserDialog *, NautilusWindow *, @@ -3278,15 +3354,28 @@ MarlinViewWindow .pane-separator { background-color: #3c4049; } GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #f9fafb; } + background-color: #F5F6F7; } GeditWindow.background.csd { background-color: transparent; } GeditWindow.background.csd .pane-separator, GeditWindow.background.csd .pane-separator:hover { background-color: #3c4049; } - GeditWindow.background.csd .titlebar .pane-separator { + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { background-color: #d4d5db; } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #e7e8eb; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: #eff0f2; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: #e7e8eb; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: #eff0f2; } .gedit-bottom-panel-paned { background-color: #ffffff; } @@ -3398,25 +3487,25 @@ GtkFileChooserDialog .action-bar.frame { /* GTK NAMED COLORS */ @define-color theme_fg_color #5c616c; @define-color theme_text_color #5c616c; -@define-color theme_bg_color #f9fafb; +@define-color theme_bg_color #F5F6F7; @define-color theme_base_color #ffffff; @define-color theme_selected_bg_color #5294E2; @define-color theme_selected_fg_color #ffffff; @define-color fg_color #5c616c; @define-color text_color #5c616c; -@define-color bg_color #f9fafb; +@define-color bg_color #F5F6F7; @define-color base_color #ffffff; @define-color selected_bg_color #5294E2; @define-color selected_fg_color #ffffff; -@define-color insensitive_bg_color #fcfdfd; +@define-color insensitive_bg_color #fbfbfb; @define-color insensitive_fg_color rgba(92, 97, 108, 0.55); @define-color insensitive_base_color #ffffff; @define-color theme_unfocused_fg_color #5c616c; @define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #f9fafb; +@define-color theme_unfocused_bg_color #F5F6F7; @define-color theme_unfocused_base_color #ffffff; -@define-color borders #dde3e9; -@define-color unfocused_borders #dde3e9; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; @define-color warning_color #F27835; @define-color error_color #FC4138; @define-color success_color #73d216; @@ -3425,6 +3514,24 @@ GtkFileChooserDialog .action-bar.frame { @define-color wm_unfocused_title alpha(rgba(82, 93, 118, 0.8), 0.7); @define-color wm_bg #e7e8eb; @define-color wm_bg_unfocused #eff0f2; -@define-color wm_highlight #f2f3f4; +@define-color wm_highlight #eff0f2; @define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f37076; +@define-color wm_button_close_hover_bg #f79da1; +@define-color wm_button_close_active_bg #ef4048; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #fdfdfd; +@define-color wm_button_unfocused_bg #f6f7f8; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #d8dae0; +@define-color wm_button_unfocused_border #dddee2; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #8d93a4; +@define-color wm_icon_unfocused_bg #b8bcc7; +@define-color wm_icon_hover_bg #70788d; +@define-color wm_icon_active_bg #ffffff; @define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.14/gtk-contained-solid.scss b/common/gtk-3.0/3.14/gtk-contained-solid.scss index 8c5384c..0bd5284 100644 --- a/common/gtk-3.0/3.14/gtk-contained-solid.scss +++ b/common/gtk-3.0/3.14/gtk-contained-solid.scss @@ -3,6 +3,8 @@ // - keep the number of defined colors to a minimum, use the color blending functions if // you need a subtle shade +$variant: 'light'; +$darker: 'false'; $transparency: 'false'; @import 'colors'; diff --git a/common/gtk-3.0/3.14/gtk-contained.css b/common/gtk-3.0/3.14/gtk-contained.css index 9973f8a..c14a1be 100644 --- a/common/gtk-3.0/3.14/gtk-contained.css +++ b/common/gtk-3.0/3.14/gtk-contained.css @@ -33,7 +33,7 @@ ***************/ .background { color: #5c616c; - background-color: rgba(249, 250, 251, 0.999); } + background-color: rgba(245, 246, 247, 0.999); } /* These wildcard seems unavoidable, need to investigate. @@ -45,16 +45,16 @@ -gtk-image-effect: dim; } .gtkstyle-fallback { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; } .gtkstyle-fallback:prelight { background-color: white; color: #5c616c; } .gtkstyle-fallback:active { - background-color: #dae1e7; + background-color: #d9dde0; color: #5c616c; } .gtkstyle-fallback:insensitive { - background-color: #fcfdfd; + background-color: #fbfbfb; color: rgba(92, 97, 108, 0.55); } .gtkstyle-fallback:selected { background-color: #5294E2; @@ -83,11 +83,11 @@ GtkLabel:insensitive { GtkAssistant .sidebar { background-color: #ffffff; - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dde3e9; } + border-right: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; } GtkAssistant.csd .sidebar { border-top-style: none; } GtkAssistant .sidebar GtkLabel { @@ -97,7 +97,7 @@ GtkAssistant .sidebar GtkLabel.highlight { color: #ffffff; } GtkTextView { - background-color: #fcfcfd; } + background-color: #fafafb; } GtkFlowBox .grid-child { padding: 3px; @@ -105,7 +105,8 @@ GtkFlowBox .grid-child { GtkFlowBox .grid-child:selected { outline-offset: -2px; } -.popover.osd, .osd { +.popover.osd, .app-notification, +.app-notification.frame, .osd { color: #A8ADB5; border: none; background-color: rgba(60, 64, 73, 0.95); @@ -156,6 +157,7 @@ GtkFlowBox .grid-child { border: none; border-radius: 0; } .entry:focus { + background-clip: border-box; color: #5c616c; border-color: #5294E2; background-color: #ffffff; @@ -215,20 +217,20 @@ GtkFlowBox .grid-child { .entry.image:active { color: #5294E2; } .linked.vertical > .entry { - border-bottom-color: #f4f6f8; + border-bottom-color: #f4f5f6; box-shadow: none; } .linked.vertical > .entry:focus { border-color: #5294E2; box-shadow: 0 -1px 0 0 #5294E2; } .linked.vertical > .entry:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child:focus { border-bottom-color: #5294E2; box-shadow: none; } .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:last-child { border-bottom-color: rgba(0, 0, 0, 0.14); } .linked.vertical > .entry:last-child:focus { @@ -253,14 +255,14 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .header-bar .button { padding: 6px 11px; } .button.flat { border-color: transparent; background-color: transparent; background-image: none; - background-color: rgba(249, 250, 251, 0); + background-color: rgba(245, 246, 247, 0); transition: none; } .button.flat:hover { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); @@ -271,9 +273,10 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; + background-color: #fbfbfc; -gtk-image-effect: highlight; } .button:active, .button:checked { + background-clip: border-box; color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #5294E2; @@ -286,7 +289,7 @@ GtkFlowBox .grid-child { .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .button:insensitive > GtkLabel { color: inherit; } .button:insensitive:active, .button:insensitive:checked { @@ -475,12 +478,12 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:hover { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -489,7 +492,7 @@ GtkFlowBox .grid-child { .inline-toolbar GtkToolButton > .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { color: inherit; } .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { @@ -579,7 +582,9 @@ GtkFlowBox .grid-child { .linked.vertical > GtkComboBox:only-child > .button:hover { box-shadow: none; } -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button { +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { border-color: transparent; background-color: transparent; background-image: none; @@ -591,7 +596,7 @@ GtkFlowBox .grid-child { outline-offset: -1px; border-radius: 2px; } .menuitem.button.flat:hover { - background-color: #f1f2f3; } + background-color: #edeef0; } /********* * Links * @@ -620,7 +625,7 @@ GtkFlowBox .grid-child { border-radius: 3px; } .spinbutton .button { background-image: none; - border: 1px solid rgba(221, 227, 233, 0.6); + border: 1px solid rgba(220, 223, 227, 0.6); border-style: none none none solid; color: #646873; border-radius: 0; @@ -640,7 +645,7 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -650,18 +655,18 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -671,11 +676,11 @@ GtkFlowBox .grid-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { @@ -734,7 +739,7 @@ GtkComboBox { .toolbar, .inline-toolbar { -GtkWidget-window-dragging: true; padding: 4px; - background-color: #f9fafb; } + background-color: #F5F6F7; } .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { padding: 7px; border: none; @@ -752,22 +757,22 @@ GtkComboBox { background-color: #eff0f2; } .inline-toolbar { - background-color: #f0f2f5; + background-color: #eceef0; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 1px 1px; padding: 3px; border-radius: 0 0 3px 3px; } .search-bar { - background-color: #f9fafb; + background-color: #F5F6F7; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 0 1px; padding: 3px; } .action-bar { - background-color: #f0f2f5; } + background-color: #eceef0; } /*************** * Header bars * @@ -857,7 +862,7 @@ GtkComboBox { background-color: rgba(231, 232, 235, 0.95); } .titlebar:backdrop { color: rgba(82, 93, 118, 0.5); - background-color: #e7e8eb; } + background-color: #eff0f2; } .csd .titlebar:backdrop { background-color: rgba(239, 240, 242, 0.95); } .maximized .titlebar { @@ -915,7 +920,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -942,7 +947,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { @@ -1147,7 +1152,7 @@ column-header .button, column-header .button:hover, column-header .button:active column-header .button:active { background-color: #ffffff; } column-header .button:insensitive { - border-color: #f9fafb; + border-color: #F5F6F7; background-image: none; } /********* @@ -1176,7 +1181,7 @@ column-header .button, column-header .button:hover, column-header .button:active padding: 0; border-radius: 0; background-color: #ffffff; - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .csd .menu, .csd .popup { padding: 4px 0px; border-radius: 3px; @@ -1219,7 +1224,7 @@ column-header .button, column-header .button:hover, column-header .button:active .popover { margin: 10px; padding: 2px; - border: 1px solid #ced6de; + border: 1px solid #cdd2d7; border-radius: 3px; background-clip: border-box; background-color: #ffffff; @@ -1262,7 +1267,7 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkWidget-focus-line-width: 0; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } .notebook.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.frame.top { border-top-width: 0; } .notebook.frame.bottom { @@ -1272,9 +1277,9 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.frame.left { border-left-width: 0; } .notebook.header { - background-color: #ffffff; } + background-color: #fafafb; } .notebook.header.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.header.frame.top { border-bottom-width: 0; } .notebook.header.frame.bottom { @@ -1284,13 +1289,13 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.header.frame.left { border-right-width: 0; } .notebook.header.top { - box-shadow: inset 0 -1px #edf0f3; } + box-shadow: inset 0 -1px #eaecee; } .notebook.header.bottom { - box-shadow: inset 0 1px #edf0f3; } + box-shadow: inset 0 1px #eaecee; } .notebook.header.right { - box-shadow: inset 1px 0 #edf0f3; } + box-shadow: inset 1px 0 #eaecee; } .notebook.header.left { - box-shadow: inset -1px 0 #edf0f3; } + box-shadow: inset -1px 0 #eaecee; } .notebook tab { border-width: 0; border-style: solid; @@ -1308,59 +1313,59 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook tab.reorderable-page.top, .notebook tab.top { border-color: transparent; } .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-top-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { border-width: 1px; border-top-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom, .notebook tab.bottom { border-color: transparent; } .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-bottom-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { border-width: 1px; border-bottom-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right, .notebook tab.right { border-color: transparent; } .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-right-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { border-width: 1px; border-right-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left, .notebook tab.left { border-color: transparent; } .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-left-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { border-width: 1px; border-left-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab GtkLabel { padding: 0 2px; color: rgba(92, 97, 108, 0.55); } @@ -1370,7 +1375,7 @@ column-header .button, column-header .button:hover, column-header .button:active color: #5c616c; } .notebook tab .button { padding: 0; - color: #92969e; } + color: #91959c; } .notebook tab .button:hover { color: #ff4d4d; } .notebook tab .button:active { @@ -1405,9 +1410,9 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbar.slider { border-radius: 20px; border: 3px solid transparent; - background-color: #babcc1; } + background-color: #b7babf; } .scrollbar.slider:hover { - background-color: #8b8e96; } + background-color: #898d95; } .scrollbar.slider:prelight:active { background-color: #5294E2; } .scrollbar.slider.fine-tune { @@ -1428,7 +1433,8 @@ column-header .button, column-header .button:hover, column-header .button:active **********/ GtkSwitch { font: 1; - -GtkSwitch-slider-width: 41; } + -GtkSwitch-slider-width: 41; + outline-color: transparent; } GtkSwitch.trough, GtkSwitch.slider { background-size: 52px 24px; background-repeat: no-repeat; @@ -1444,39 +1450,83 @@ GtkSwitch { GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } -.header-bar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } -.header-bar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough:active:insensitive { +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } .list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + .list-row:selected GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + /************************* * Check and Radio items * *************************/ @@ -1604,8 +1654,8 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { background-image: linear-gradient(to bottom, #5294E2); border-color: #5294E2; } .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #fcfcfd); - border-color: #9dc1ed; } + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } .scale.slider:active { background-image: linear-gradient(to bottom, #2679db); border-color: #2679db; } @@ -1722,7 +1772,7 @@ GtkLevelBar.vertical { * Frames * **********/ .frame { - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; padding: 0; } .frame.flat { border-style: none; } @@ -1743,7 +1793,7 @@ GtkScrolledWindow GtkViewport.frame { *********/ .list, .list-row { background-color: #ffffff; - border-color: #dde3e9; } + border-color: #dcdfe3; } .list-row, .grid-child { @@ -1779,12 +1829,40 @@ GtkScrolledWindow GtkViewport.frame { .app-notification, .app-notification.frame { padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0, 0, 0, 0.2); - background-color: #ffffff; - background-clip: padding-box; } + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } /************* * Expanders * @@ -1803,7 +1881,7 @@ GtkExpander { ***********/ GtkCalendar { color: #5c616c; - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; border-radius: 3px; padding: 2px; } GtkCalendar:selected { @@ -1855,18 +1933,18 @@ GtkCalendar { border-bottom-left-radius: 3px; } GtkFileChooserDialog .search-bar { - background-color: #f9fafb; - border-color: #dde3e9; + background-color: #F5F6F7; + border-color: #dcdfe3; box-shadow: none; } GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } /*********** * Sidebar * ***********/ .sidebar { border: none; - background-color: #f9fafb; } + background-color: #F5F6F7; } .sidebar .scrollbar.trough { background-color: transparent; border-width: 2px; @@ -1896,7 +1974,7 @@ GtkPaned { margin-left: 8px; } .pane-separator { - background-image: linear-gradient(to bottom, #dde3e9); } + background-image: linear-gradient(to bottom, #dcdfe3); } /************** * GtkInfoBar * @@ -1997,13 +2075,13 @@ GtkColorSwatch { border-color: rgba(255, 255, 255, 0.5); } GtkColorChooserWidget #add-color-button { - border-color: #ebeef2; - background-color: #ebeef2; - color: #f9fafb; + border-color: #e8eaed; + background-color: #e8eaed; + color: #F5F6F7; box-shadow: none; } GtkColorChooserWidget #add-color-button:hover { - border-color: #dde3e9; - background-color: #dde3e9; } + border-color: #dcdfe3; + background-color: #dcdfe3; } GtkColorButton.button { padding: 4px; } @@ -2019,7 +2097,7 @@ GtkColorButton.button { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkVolumeButton.button { padding: 8px; } @@ -2391,18 +2469,16 @@ TerminalWindow .notebook tab.reorderable-page:hover { padding-top: 4px; padding-bottom: 4px; } TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } TerminalWindow .notebook tab .active-page GtkLabel { color: rgba(82, 93, 118, 0.8); } TerminalWindow .notebook tab .active-page GtkLabel:backdrop { color: rgba(82, 93, 118, 0.5); } -TerminalWindow .notebook tab.reorderable-page.top:hover { - border-bottom-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { background-color: #e7e8eb; border-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { - background-color: rgba(239, 240, 242, 0.95); } + background-color: #eff0f2; } TerminalWindow .scrollbar.vertical .slider { margin-left: 3px; } TerminalWindow .scrollbar.trough { @@ -2438,13 +2514,13 @@ NemoWindow .sidebar .frame { border-width: 0; } NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dde3e9; } + color: #dcdfe3; } NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { border-color: #5294E2; } NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { @@ -2457,7 +2533,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: rgba(212, 213, 219, 0.95); } .open-document-selector-listbox-row { - border-bottom: 1px solid #eaedf1; + border-bottom: 1px solid #e7e9ec; padding: 6px 6px 6px 12px; } .open-document-selector-listbox-row .path-label { font-size: smaller; @@ -2475,7 +2551,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { .gedit-document-panel .list-row .button GtkImage { color: inherit; } .gedit-document-panel .prelight-row .button { - color: #92969e; } + color: #91959c; } .gedit-document-panel .list-row .button:hover, .gedit-document-panel .prelight-row .button:hover { color: #ff4d4d; } @@ -2491,13 +2567,13 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: #5c616c; } .gedit-document-panel-dragged-row { - border: 1px solid #dde3e9; - background-color: #dae1e7; + border: 1px solid #dcdfe3; + background-color: #d9dde0; color: #5c616c; } GeditStatusbar { - border-top: 1px solid #dde3e9; - background-color: #f9fafb; } + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } GeditStatusMenuButton.button.flat, GeditStatusMenuButton:prelight.button.flat, @@ -2506,7 +2582,7 @@ GeditStatusMenuButton:checked.button.flat { border-radius: 0; } GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { color: rgba(92, 97, 108, 0.6); @@ -2514,9 +2590,9 @@ GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { padding: 2px; } GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: white; + background-color: #fbfbfc; padding: 6px; - border-color: #dde3e9; + border-color: #dcdfe3; border-radius: 0 0 2px 2px; border-width: 0 1px 1px 1px; border-style: solid; } @@ -2524,7 +2600,7 @@ GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { border-color: #5294E2; } @@ -2556,7 +2632,7 @@ GdTaggedEntry { .preferences.sidebar GtkViewport { border: none; } .preferences.sidebar GtkListBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } .preferences.sidebar GtkListBoxRow { padding: 10px; } @@ -2592,10 +2668,10 @@ GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { GbViewStack GtkBox.header.notebook, GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } GbViewStack.focused GtkBox.header.notebook { - background-color: #f9fafb; } + background-color: #F5F6F7; } GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { opacity: 1; } @@ -2839,7 +2915,7 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { @@ -2899,8 +2975,8 @@ GraniteWidgetsThinPaned { background-color: transparent; background-image: none; margin: 0; - border-left: 1px solid #dde3e9; - border-right: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } GraniteWidgetsPopOver .frame, GraniteWidgetsStaticNotebook .frame { @@ -2912,7 +2988,7 @@ GraniteWidgetsStaticNotebook .frame { .secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { padding: 3px; - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { padding: 0 3px 0 3px; } @@ -2920,8 +2996,8 @@ GraniteWidgetsStaticNotebook .frame { padding: 5px; border-width: 1px 0 0 0; border-style: solid; - border-color: #dde3e9; - background-color: #f9fafb; } + border-color: #dcdfe3; + background-color: #F5F6F7; } .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { padding: 2px 3px 2px 3px; } @@ -2931,7 +3007,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list, .source-list.view { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; -gtk-icon-style: regular; } @@ -2953,7 +3029,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list .scrollbar.trough { border-image: none; border-color: transparent; - background-color: #f9fafb; + background-color: #F5F6F7; background-image: none; } .source-list.badge, @@ -2992,7 +3068,7 @@ GraniteWidgetsWelcome { background-color: #ffffff; } GraniteWidgetsWelcome GtkLabel { - color: #aaadb3; + color: #a8abb1; font: open sans 11; text-shadow: none; } @@ -3031,7 +3107,7 @@ GraniteWidgetsPopOver * { .h4, .category-label { - color: #8b8e96; + color: #898d95; font-weight: 600; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } @@ -3046,10 +3122,10 @@ GtkListBox .h4 { color: rgba(212, 213, 219, 0.95); } GtkFileChooserDialog .dialog-action-box { - background-color: #f9fafb; } + background-color: #F5F6F7; } NemoWindow GtkEventBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } GtkFileChooserDialog *, NautilusWindow *, @@ -3278,15 +3354,28 @@ MarlinViewWindow .pane-separator { background-color: rgba(60, 64, 73, 0.95); } GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #f9fafb; } + background-color: #F5F6F7; } GeditWindow.background.csd { background-color: transparent; } GeditWindow.background.csd .pane-separator, GeditWindow.background.csd .pane-separator:hover { background-color: rgba(60, 64, 73, 0.95); } - GeditWindow.background.csd .titlebar .pane-separator { + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { background-color: rgba(212, 213, 219, 0.95); } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #e7e8eb; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: rgba(239, 240, 242, 0.95); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: rgba(231, 232, 235, 0.95); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: rgba(239, 240, 242, 0.95); } .gedit-bottom-panel-paned { background-color: #ffffff; } @@ -3398,25 +3487,25 @@ GtkFileChooserDialog .action-bar.frame { /* GTK NAMED COLORS */ @define-color theme_fg_color #5c616c; @define-color theme_text_color #5c616c; -@define-color theme_bg_color #f9fafb; +@define-color theme_bg_color #F5F6F7; @define-color theme_base_color #ffffff; @define-color theme_selected_bg_color #5294E2; @define-color theme_selected_fg_color #ffffff; @define-color fg_color #5c616c; @define-color text_color #5c616c; -@define-color bg_color #f9fafb; +@define-color bg_color #F5F6F7; @define-color base_color #ffffff; @define-color selected_bg_color #5294E2; @define-color selected_fg_color #ffffff; -@define-color insensitive_bg_color #fcfdfd; +@define-color insensitive_bg_color #fbfbfb; @define-color insensitive_fg_color rgba(92, 97, 108, 0.55); @define-color insensitive_base_color #ffffff; @define-color theme_unfocused_fg_color #5c616c; @define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #f9fafb; +@define-color theme_unfocused_bg_color #F5F6F7; @define-color theme_unfocused_base_color #ffffff; -@define-color borders #dde3e9; -@define-color unfocused_borders #dde3e9; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; @define-color warning_color #F27835; @define-color error_color #FC4138; @define-color success_color #73d216; @@ -3425,6 +3514,24 @@ GtkFileChooserDialog .action-bar.frame { @define-color wm_unfocused_title alpha(rgba(82, 93, 118, 0.8), 0.7); @define-color wm_bg #e7e8eb; @define-color wm_bg_unfocused #eff0f2; -@define-color wm_highlight #f2f3f4; +@define-color wm_highlight #eff0f2; @define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f37076; +@define-color wm_button_close_hover_bg #f79da1; +@define-color wm_button_close_active_bg #ef4048; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #fdfdfd; +@define-color wm_button_unfocused_bg #f6f7f8; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #d8dae0; +@define-color wm_button_unfocused_border #dddee2; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #8d93a4; +@define-color wm_icon_unfocused_bg #b8bcc7; +@define-color wm_icon_hover_bg #70788d; +@define-color wm_icon_active_bg #ffffff; @define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.14/gtk-contained.scss b/common/gtk-3.0/3.14/gtk-contained.scss index 7d5cecf..b067260 100644 --- a/common/gtk-3.0/3.14/gtk-contained.scss +++ b/common/gtk-3.0/3.14/gtk-contained.scss @@ -3,6 +3,8 @@ // - keep the number of defined colors to a minimum, use the color blending functions if // you need a subtle shade +$variant: 'light'; +$darker: 'false'; $transparency: 'true'; @import 'colors'; diff --git a/common/gtk-3.0/3.14/gtk-dark.css b/common/gtk-3.0/3.14/gtk-dark.css new file mode 100644 index 0000000..bc31fe5 --- /dev/null +++ b/common/gtk-3.0/3.14/gtk-dark.css @@ -0,0 +1 @@ +@import url("gtk-contained-dark.css"); diff --git a/common/gtk-3.0/3.16/_applications.scss b/common/gtk-3.0/3.16/_applications.scss index 35b468a..848da06 100644 --- a/common/gtk-3.0/3.16/_applications.scss +++ b/common/gtk-3.0/3.16/_applications.scss @@ -40,8 +40,8 @@ TerminalWindow { .notebook { &.header.top { - box-shadow: inset 0 1px darken(opacify($header_bg, 1), 7%), - inset 0 -1px lighten($borders_color, 5%); + box-shadow: inset 0 1px opacify($header_border, 1), + inset 0 -1px if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); } tab { @@ -51,16 +51,12 @@ TerminalWindow { &:backdrop { color: transparentize($header_fg, 0.3); } } - &.reorderable-page.top:hover { - border-bottom-color: darken(opacify($header_bg, 1), 7%); - } - &.reorderable-page.top:active, &.reorderable-page.top:active:hover { background-color: opacify($header_bg, 1); - border-color: darken(opacify($header_bg, 1), 7%); + border-color: opacify($header_border, 1); - &:backdrop { background-color: lighten($header_bg, 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } } @@ -167,7 +163,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { // // Gedit // -.gedit-headerbar-paned { color: darken($header_bg, 7%); } +.gedit-headerbar-paned { color: $header_border; } .open-document-selector-treeview.view { padding: 3px 6px 3px 6px; @@ -603,9 +599,9 @@ MarlinViewWindow *:selected:focus { // Gala // .gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); + border: 1px solid if($variant=='light', rgba(0, 0, 0, 0.35), $borders_color); border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); background-image: linear-gradient(to bottom, $base_color); background-color: transparent; @@ -692,12 +688,11 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; - .notebook { &.header.top { - box-shadow: inset 0 1px darken(opacify($header_bg, 1), 7%), - inset 0 -1px lighten($borders_color, 5%); + box-shadow: inset 0 1px opacify($header_border, 1), + inset 0 -1px if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); } } } diff --git a/common/gtk-3.0/3.16/_colors-public.scss b/common/gtk-3.0/3.16/_colors-public.scss index c281d89..0590a00 100644 --- a/common/gtk-3.0/3.16/_colors-public.scss +++ b/common/gtk-3.0/3.16/_colors-public.scss @@ -31,8 +31,8 @@ @define-color placeholder_text_color #A8A8A8; //WM -$wm_highlight: lighten(opacify($header_bg, 1), 4%); -$wm_bg_unfocused: opacify(lighten($header_bg, 3%), 1); +$wm_highlight: lighten(opacify($header_bg, 1), 3%); +$wm_bg_unfocused: opacify($header_bg_backdrop, 1); @define-color wm_title #{"" + $header_fg}; @define-color wm_unfocused_title alpha(#{"" + $header_fg}, 0.7); @@ -43,6 +43,34 @@ $wm_bg_unfocused: opacify(lighten($header_bg, 3%), 1); @define-color wm_highlight #{"" + $wm_highlight}; @define-color wm_shadow alpha(black, 0.35); +//WM Buttons + +// Close +@define-color wm_button_close_bg #{"" + $wm_button_close_bg}; +@define-color wm_button_close_hover_bg #{"" + $wm_button_close_hover_bg}; +@define-color wm_button_close_active_bg #{"" + $wm_button_close_active_bg}; + +@define-color wm_icon_close_bg #{"" + $wm_icon_close_bg}; +@define-color wm_icon_close_hover_bg #{"" + $wm_icon_close_hover_bg}; +@define-color wm_icon_close_active_bg #{"" + $wm_icon_close_active_bg}; + +// Minimize, Maximize +@define-color wm_button_bg #{"" + $wm_button_bg}; +@define-color wm_button_unfocused_bg #{"" + $wm_button_unfocused_bg}; +@define-color wm_button_hover_bg #{"" + $wm_button_hover_bg}; +@define-color wm_button_active_bg #{"" + $wm_button_active_bg}; + +@define-color wm_button_border #{"" + $wm_button_border}; +@define-color wm_button_unfocused_border #{"" + $wm_button_unfocused_border}; +@define-color wm_button_hover_border #{"" + $wm_button_hover_border}; +@define-color wm_button_active_border #{"" + $wm_button_active_border}; + +@define-color wm_icon_bg #{"" + $wm_icon_bg}; +@define-color wm_icon_unfocused_bg #{"" + $wm_icon_unfocused_bg}; +@define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; +@define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; + + //FIXME this is really an API @define-color content_view_bg #{"" + $base_color}; diff --git a/common/gtk-3.0/3.16/_colors.scss b/common/gtk-3.0/3.16/_colors.scss index a5645ec..77d9d21 100644 --- a/common/gtk-3.0/3.16/_colors.scss +++ b/common/gtk-3.0/3.16/_colors.scss @@ -2,25 +2,27 @@ // it gets @if ed depending on $variant -$base_color: #ffffff; -$text_color: #5c616c; -$bg_color: #f9fafb; -$fg_color: #5c616c; +$base_color: if($variant =='light', #ffffff, #383C45); +$text_color: if($variant == 'light', #5c616c, #D3DAE3); +$bg_color: if($variant =='light', #F5F6F7, #444852); +$fg_color: if($variant =='light', #5c616c, #D3DAE3); $selected_fg_color: #ffffff; $selected_bg_color: #5294E2; $selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: darken($bg_color,9%); +$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,10%)); -$link_color: darken($selected_bg_color,10%); -$link_visited_color: darken($selected_bg_color,20%); +$link_color: if($variant == 'light', darken($selected_bg_color,10%), + lighten($selected_bg_color,20%)); +$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), + lighten($selected_bg_color,10%)); -$selection_mode_bg: transparentize($selected_bg_color, 0.05); +$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); $warning_color: #F27835; $error_color: #FC4138; $success_color: #73d216; $destructive_color: #FA4349; -$suggested_color: #9EA4B5; +$suggested_color: if($variant == 'light', #9EA4B5, #5B5F69); $osd_fg_color: #A8ADB5; $osd_bg_color: transparentize(#3c4049, 0.05); @@ -36,23 +38,65 @@ $tooltip_fg: #edf5fb; $tooltip_borders_color: transparentize(white, 0.9); //insensitive state derived colors -$insensitive_fg_color: transparentize($fg_color, 0.45); -$insensitive_bg_color: mix($bg_color, $base_color, 40%); +$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); +$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); -$entry_bg: $base_color; -$entry_border: #cfd6e6; +$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); +$entry_border: if($variant == 'light', #cfd6e6, darken($borders_color, 0%)); $entry_focus_border: $selected_bg_color; -$button_bg: lighten($bg_color, 1%); +$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); $button_border: $entry_border; -$header_bg: if($transparency == 'true', transparentize(#e7e8eb, 0.05), #e7e8eb); -$header_fg: saturate(transparentize($fg_color, 0.2), 10%); +$header_bg: red; +@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#e7e8eb, 0.05); } +@if $transparency=='false' and $variant=='light' { $header_bg: #e7e8eb; } +@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#2f343b, 0.03); } +@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #2f343b; } + +//$header_bg: if(($darker == 'true' or $variant == 'dark') and $transparency == 'true', transparentize(#2f343b, 0.03), #2f343b); + +$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); + +$header_border: if($variant == 'light', darken($header_bg, 7%), darken($header_bg, 5%)); + +$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); +$header_fg: if($darker == 'true', saturate(transparentize(#D3DAE3, 0.2), 10%), $header_fg); + +$dark_sidebar_bg: if($transparency == 'true' and $variant == 'light', $osd_bg_color, opacify($osd_bg_color, 1)); +@if $variant==dark { $dark_sidebar_bg: if($transparency == 'true', lighten($osd_bg_color, 4%), lighten(opacify($osd_bg_color, 1), 4%)); } -$dark_sidebar_bg: if($transparency == 'true', $osd_bg_color, opacify($osd_bg_color, 1)); $dark_sidebar_fg: $osd_fg_color; -$dark_sidebar_border: $dark_sidebar_bg; +$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 10%)); -$panel_bg: darken($dark_sidebar_bg, 10%); +$panel_bg: darken($osd_bg_color, 10%); $panel_fg: $dark_sidebar_fg; + + +//WM Buttons + +// Close +$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f37076, #e45e65); +$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f79da1, #f48085); +$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #ef4048, #e6262f); + +$wm_icon_close_bg: $selected_fg_color; +$wm_icon_close_hover_bg: $selected_fg_color; +$wm_icon_close_active_bg: $selected_fg_color; + +// Minimize, Maximize +$wm_button_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #272c32); +$wm_button_unfocused_bg: if($variant == 'light' and $darker == 'false', #f6f7f8, #2a3035); +$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #272c32); +$wm_button_active_bg: $selected_bg_color; + +$wm_button_border: if($variant == 'light' and $darker == 'false', #d8dae0, #191C21); +$wm_button_unfocused_border: if($variant == 'light' and $darker == 'false', #dddee2, #1F2328); +$wm_button_hover_border: $selected_bg_color; +$wm_button_active_border: $selected_bg_color; + +$wm_icon_bg: if($variant == 'light' and $darker == 'false', #8d93a4, #939ca8); +$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #b8bcc7, #686f78); +$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #70788d, #afb8c5); +$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gtk-3.0/3.16/_common.scss b/common/gtk-3.0/3.16/_common.scss index cbb5f42..060acfe 100644 --- a/common/gtk-3.0/3.16/_common.scss +++ b/common/gtk-3.0/3.16/_common.scss @@ -3,6 +3,8 @@ } $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); +$asset_suffix: if($variant=='dark', '-dark', ''); // use dark assets in dark variant +$darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); * { background-clip: padding-box; @@ -230,7 +232,10 @@ GtkTextView { // This will get overridden by .view, needed by gedit line numbers border-radius: 0; } - &:focus { @include entry(focus); } + &:focus { + background-clip: border-box; + @include entry(focus); + } &:insensitive { @include entry(insensitive); } @@ -408,6 +413,7 @@ $_dot_color: $selected_bg_color; -gtk-image-effect: highlight; } &:active, &:checked { + background-clip: border-box; @include button(active); transition-duration: 50ms; } @@ -600,10 +606,11 @@ $_dot_color: $selected_bg_color; to(transparent)); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; - background-position: right 3px, right 4px; - + @if $variant == 'light' { background-position: right 3px, right 4px; } + @else { background-position: right 3px, right 2px; } &:dir(rtl) { - background-position: left 3px, left 4px; + @if $variant == 'light' { background-position: left 3px, left 4px; } + @else { background-position: left 3px, left 2px; } } } @@ -984,7 +991,7 @@ GtkComboBox { border-image: linear-gradient(to bottom, opacify($header_bg, 1), darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } .separator { @extend %header_separator; } @@ -1022,7 +1029,7 @@ GtkComboBox { border-width: 0 0 1px; border-style: solid; border-radius: 0; - border-color: darken($header_bg, 7%); + border-color: $header_border; color: $header_fg; background-color: opacify($header_bg, 1); @@ -1031,9 +1038,9 @@ GtkComboBox { &:backdrop { color: transparentize($header_fg, 0.3); - background-color: lighten(opacify($header_bg, 1), 3%); + background-color: opacify($header_bg_backdrop, 1); - .csd & { background-color: lighten($header_bg, 3%); } // Transparent header-bars only in csd windows + .csd & { background-color: $header_bg_backdrop; } // Transparent header-bars only in csd windows } .title { @@ -1116,7 +1123,7 @@ GtkComboBox { .maximized & { background-color: opacify($header_bg, 1); - &:backdrop { background-color: opacify(lighten($header_bg, 3%), 1); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } &.default-decoration { @@ -1125,14 +1132,14 @@ GtkComboBox { background-color: opacify($header_bg, 1); border-bottom-width: 0; - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } .titlebar { padding-left: 7px; padding-right: 7px; - border-radius: 4px 4px 0 0; + border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); color: $header_fg; background-color: opacify($header_bg, 1); box-shadow: inset 0 1px lighten($header_bg, 3%); @@ -1141,15 +1148,15 @@ GtkComboBox { &:backdrop { color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg, 1); + background-color: opacify($header_bg_backdrop, 1); - .csd & { background-color: lighten($header_bg, 3%); } + .csd & { background-color: $header_bg_backdrop; } } .maximized & { background-color: opacify($header_bg, 1); - &:backdrop { background-color: opacify(lighten($header_bg, 3%), 1); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } @@ -1186,7 +1193,8 @@ GtkComboBox { &:focus { @include entry(header-focus); - background-clip: border-box; + + &.image { color: $selected_fg_color; } } &:insensitive { @include entry(header-insensitive); } @@ -1323,9 +1331,13 @@ GtkComboBox { &:insensitive { background-image: linear-gradient(to bottom, transparentize($header_fg, 0.7)); } } &.slider { - background-image: linear-gradient(to bottom, mix($base_color, $header_bg, 90%)); + background-image: linear-gradient(to bottom, if($darker == 'false', mix($base_color, $header_bg, 90%), darken($header_bg, 4%))); + + &:insensitive { + background-image: linear-gradient(to bottom, if($darker == 'false', mix($base_color, $header_bg, 40%), darken($header_bg, 1%))); - &:insensitive { background-image: linear-gradient(to bottom, mix($base_color, $header_bg, 40%)); } + @if $darker=='true' { border-color: mix($header_bg, $selected_bg_color, 60%); } + } } } } @@ -1464,10 +1476,10 @@ column-header.button.dnd { // for treeview-like derive widgets border-style: none solid none none; border-radius: 0; border-image: linear-gradient(to bottom, - transparentize(black, 1) 20%, - transparentize(black, 0.89) 20%, - transparentize(black, 0.89) 80%, - transparentize(black, 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; + transparentize(if($variant == 'light', black, white), 1) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 20%, + transparentize(if($variant == 'light', black, white), 0.89) 80%, + transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; &:active { background-color: $base_color; } &:insensitive { @@ -1485,7 +1497,7 @@ column-header.button.dnd { // for treeview-like derive widgets background-color: opacify($header_bg, 1); color: $header_fg; - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } & > .menuitem { padding: 6px 8px; @@ -1520,8 +1532,8 @@ column-header.button.dnd { // for treeview-like derive widgets padding: 5px; &:hover { color: $fg_color; - background-color: transparentize(black, 0.96); - border: solid transparentize(black, 0.92); + background-color: if($variant == 'light', transparentize(black, 0.96), transparentize(white, 0.95)); + border: solid if($variant == 'light', transparentize(black, 0.92), transparentize(white, 0.93)); border-width: 1px 0 1px 0; } &:insensitive { @@ -1562,7 +1574,7 @@ column-header.button.dnd { // for treeview-like derive widgets background-clip: border-box; background-color: $base_color; - box-shadow: 0 2px 6px 1px transparentize(black, 0.93); + box-shadow: 0 2px 6px 1px if($variant=='light', transparentize(black, 0.93), transparentize(black, 0.65)); & .separator { color: transparentize($base_color, 1); } .label.separator { @extend .label.separator; } // Noice @@ -1621,7 +1633,7 @@ column-header.button.dnd { // for treeview-like derive widgets &.header { // FIXME: double borders in some case, can't fix it w/o a class tho // FIXME: doesn't work on dark var - background-color: $base_color; + background-color: mix($base_color, $bg_color, 50%); // this is the shading of the header behind the tabs &.frame { @@ -1632,7 +1644,7 @@ column-header.button.dnd { // for treeview-like derive widgets &.left { border-right-width: 0; } } - $_header_border: lighten($borders_color, 5%); + $_header_border: if($variant == 'light', lighten($borders_color, 5%), $borders_color); &.top { box-shadow: inset 0 -1px $_header_border; // border } @@ -1692,8 +1704,8 @@ column-header.button.dnd { // for treeview-like derive widgets border-width: 1px; border-#{$_tab}-width: 0; border-color: $borders_color; - background-color: transparentize(black, 0.98); - &:hover { background-color: transparentize(black, 0.98); } + background-color: if($variant == 'light', transparentize(black, 0.965), transparentize(black, 0.85)); + &:hover { background-color: if($variant == 'light', transparentize(black, 0.965), transparentize(black, 0.85)); } } } } @@ -1768,7 +1780,7 @@ $_scrollbar_bg_color: darken($base_color, 1%); .slider { margin: 0; background-color: mix($fg_color, $bg_color, 70%); - border: 1px solid transparentize(white, 0.4); + border: 1px solid if($variant == 'light', transparentize(white, 0.4), transparentize(black, 0.7)); background-clip: padding-box; } @@ -1878,6 +1890,7 @@ $_scrollbar_bg_color: darken($base_color, 1%); GtkSwitch { font: 1; -GtkSwitch-slider-width: 41; + outline-color: transparent; &.trough, &.slider { background-size: 52px 24px; @@ -1893,7 +1906,7 @@ GtkSwitch { } } -@each $i,$j in ('',''), ('.header-bar ','-header'), ('.list-row:selected ','-selected') { +@each $i,$j in ('',''), ('.list-row:selected ','-selected') { @each $k,$l in ('',''), (':active','-active'), @@ -1903,13 +1916,22 @@ GtkSwitch { // load switch troughs from .png files in assets directory #{$i}GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}#{$j}.png"),url("assets/switch#{$l}#{$j}@2.png")); + background-image: -gtk-scaled(url("assets/switch#{$l}#{$asset_suffix}.png"),url("assets/switch#{$l}#{$asset_suffix}@2.png")); + } + + .list-row:selected GtkSwitch.trough#{$k} { + background-image: -gtk-scaled(url("assets/switch#{$l}-selected.png"),url("assets/switch#{$l}-selected@2.png")); + } + + .header-bar GtkSwitch.trough#{$k}, + .primary-toolbar GtkSwitch.trough#{$k} { + background-image: -gtk-scaled(url("assets/switch#{$l}-header#{$darker_asset_suffix}.png"),url("assets/switch#{$l}-header#{$darker_asset_suffix}@2.png")); } // load switch sliders from .png files in assets directory //#{$i}GtkSwitch.slider#{$k} { - // background-image: -gtk-scaled(url("assets/switch-slider#{$l}#{$j}.png"),url("assets/switch-slider#{$l}#{$j}@2.png")); + // background-image: -gtk-scaled(url("assets/switch-slider#{$l}#{$j}#{$asset_suffix}.png"),url("assets/switch-slider#{$l}#{$j}#{$asset_suffix}@2.png")); //} } } @@ -1932,8 +1954,8 @@ GtkSwitch { (':checked', '-checked'), (':checked:insensitive','-checked-insensitive') { .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}.png"), - url("assets/#{$a}#{$as}@2.png")); + -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"), + url("assets/#{$a}#{$as}#{$asset_suffix}@2.png")); } // the borders of checks and radios are // too similar in luminosity to the selected background color, hence @@ -1951,8 +1973,8 @@ GtkSwitch { (':checked', '-checked-selectionmode') { GtkIconView.view.check#{$s}, GtkFlowBox.view.check#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}.png"), - url("assets/checkbox#{$as}@2.png")); + -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}#{$asset_suffix}.png"), + url("assets/checkbox#{$as}#{$asset_suffix}@2.png")); background-color: transparent; } } @@ -1986,7 +2008,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } &.slider { background-clip: border-box; - background-image: linear-gradient(to bottom, $base_color); + background-image: linear-gradient(to bottom, $entry_bg); border: 1px solid $selected_bg_color; border-radius: 50%; box-shadow: none; @@ -1996,7 +2018,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { border-color: $selected_bg_color; } &:insensitive { - background-image: linear-gradient(to bottom, mix($base_color, $bg_color, 55%)); + background-image: linear-gradient(to bottom, mix($entry_bg, $bg_color, 55%)); border-color: mix($selected_bg_color, $bg_color, 55%); } &:active { @@ -2034,9 +2056,12 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } } &.trough { + + $_scale_trough_bg: if($variant == 'light', $button_border, darken($base_color, 4%)); + border: none; border-radius: 2.5px; - background-image: linear-gradient(to bottom, $button_border); + background-image: linear-gradient(to bottom, $_scale_trough_bg); &.highlight { background-image: linear-gradient(to bottom, $selected_bg_color); @@ -2045,7 +2070,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { } } &:insensitive { - background-image: linear-gradient(to bottom, transparentize($button_border, 0.45)); + background-image: linear-gradient(to bottom, transparentize($_scale_trough_bg, 0.45)); } //OSD troughs @@ -2111,7 +2136,7 @@ GtkProgressBar { GtkProgressBar.trough { border: none; border-radius: 3px; - background-color: $button_border; + background-color: if($variant == 'light', $button_border, darken($base_color, 4%)); &.osd { border-style: none; @@ -2225,7 +2250,7 @@ GtkScrolledWindow { border-radius: 0; // and no rounded corners box-shadow: none; // and no box-shadow &:hover { - background-color: transparentize(black, 0.95); + background-color: if($variant == 'light', transparentize(black, 0.95), transparentize(white, 0.97)); } &:active { color: $fg_color; @@ -2258,14 +2283,27 @@ GtkScrolledWindow { .app-notification, .app-notification.frame { + @extend %osd; padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: $osd_bg_color; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0,0,0,0.2); - background-color: $base_color; - - background-clip: padding-box; + border-color: darken($osd_bg_color, 10%); + + .button { + @include button(osd); + &.flat { + @extend %undecorated_button; + border-color: transparentize($selected_bg_color, 1); + &:insensitive { @extend %undecorated_button; } + } + &:hover { @include button(osd-hover); } + &:active, &:checked { @include button(osd-active); } + &:insensitive { @include button(osd-insensitive); + } + } } /************* @@ -2645,38 +2683,39 @@ GtkVolumeButton.button { padding: 8px; } *********************/ .window-frame { - border-radius: 4px 4px 0 0; + border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); // lamefun trick to get rounded borders regardless of CSD use border-width: 0px; // this needs to be transparent // see bug #722563 - $_wm_border: transparentize(black, 0.9); - $_wm_border_backdrop: transparentize(black, 0.9); + $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); - box-shadow: 0 0 0 1px $_wm_border, 0 4px 8px 1px $_wm_border; + box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), + 0 4px 8px 1px if($darker == 'false', $_wm_border, opacify($_wm_border, 0.15)); /* this is used for the resize cursor area */ margin: 10px; &:backdrop { - box-shadow: 0 0 0 1px $_wm_border, 0 4px 5px 2px $_wm_border_backdrop; + box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), + 0 4px 5px 2px if($darker == 'false', $_wm_border, opacify($_wm_border, 0.15)); } &.tiled { border-radius: 0; } // server-side decorations as used by mutter &.ssd { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px $_wm_border; + border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); + box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border); &.maximized { border-radius: 0; } } &.csd { &.popup, &.menu { border-radius: 3px; - box-shadow: 0 3px 6px $_wm_border, - 0 0 0 1px $_wm_border; + box-shadow: 0 3px 6px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.1)), + 0 0 0 1px if($variant == 'light', $_wm_border, darken($base_color, 10%)); } &.tooltip { border-radius: 2px; @@ -2730,20 +2769,20 @@ GtkVolumeButton.button { padding: 8px; } &:backdrop { opacity: 1; } } - &.close { background-image: -gtk-scaled(url('assets/titlebutton-close.png'),url('assets/titlebutton-close@2.png')); } - &.close:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-close-backdrop.png'),url('assets/titlebutton-close-backdrop@2.png')); } - &.close:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-hover.png'),url('assets/titlebutton-close-hover@2.png')); } - &.close:active { background-image: -gtk-scaled(url('assets/titlebutton-close-active.png'),url('assets/titlebutton-close-active@2.png')); } + &.close { background-image: -gtk-scaled(url('assets/titlebutton-close#{$darker_asset_suffix}.png'),url('assets/titlebutton-close#{$darker_asset_suffix}@2.png')); } + &.close:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-close-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-backdrop#{$darker_asset_suffix}@2.png')); } + &.close:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-hover#{$darker_asset_suffix}@2.png')); } + &.close:active { background-image: -gtk-scaled(url('assets/titlebutton-close-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-active#{$darker_asset_suffix}@2.png')); } - &.maximize { background-image: -gtk-scaled(url('assets/titlebutton-max.png'),url('assets/titlebutton-max@2.png')); } - &.maximize:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-max-backdrop.png'),url('assets/titlebutton-max-backdrop@2.png')); } - &.maximize:hover { background-image: -gtk-scaled(url('assets/titlebutton-max-hover.png'),url('assets/titlebutton-max-hover@2.png')); } - &.maximize:active { background-image: -gtk-scaled(url('assets/titlebutton-max-active.png'),url('assets/titlebutton-max-active@2.png')); } + &.maximize { background-image: -gtk-scaled(url('assets/titlebutton-max#{$darker_asset_suffix}.png'),url('assets/titlebutton-max#{$darker_asset_suffix}@2.png')); } + &.maximize:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-max-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-max-backdrop#{$darker_asset_suffix}@2.png')); } + &.maximize:hover { background-image: -gtk-scaled(url('assets/titlebutton-max-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-max-hover#{$darker_asset_suffix}@2.png')); } + &.maximize:active { background-image: -gtk-scaled(url('assets/titlebutton-max-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-max-active#{$darker_asset_suffix}@2.png')); } - &.minimize { background-image: -gtk-scaled(url('assets/titlebutton-min.png'),url('assets/titlebutton-min@2.png')); } - &.minimize:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-min-backdrop.png'),url('assets/titlebutton-min-backdrop@2.png')); } - &.minimize:hover { background-image: -gtk-scaled(url('assets/titlebutton-min-hover.png'),url('assets/titlebutton-min-hover@2.png')); } - &.minimize:active { background-image: -gtk-scaled(url('assets/titlebutton-min-active.png'),url('assets/titlebutton-min-active@2.png')); } + &.minimize { background-image: -gtk-scaled(url('assets/titlebutton-min#{$darker_asset_suffix}.png'),url('assets/titlebutton-min#{$darker_asset_suffix}@2.png')); } + &.minimize:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-min-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-min-backdrop#{$darker_asset_suffix}@2.png')); } + &.minimize:hover { background-image: -gtk-scaled(url('assets/titlebutton-min-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-min-hover#{$darker_asset_suffix}@2.png')); } + &.minimize:active { background-image: -gtk-scaled(url('assets/titlebutton-min-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-min-active#{$darker_asset_suffix}@2.png')); } } } diff --git a/common/gtk-3.0/3.16/_drawing.scss b/common/gtk-3.0/3.16/_drawing.scss index 0300ce1..431f03e 100644 --- a/common/gtk-3.0/3.16/_drawing.scss +++ b/common/gtk-3.0/3.16/_drawing.scss @@ -52,13 +52,17 @@ background-image: linear-gradient(to bottom, transparentize($entry_bg, 0.45)); } + $_header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 4%), 0.1), transparentize($base_color, 0.1)); + $_header_entry_border: if($darker == 'true' or $variant == 'dark', darken($header_bg, 10%), transparentize($header_fg, 0.7)); + @if $t==header-normal { // // normal header-bar entry // + color: $header_fg; - border-color: transparentize($header_fg, 0.7); - background-image: linear-gradient(to bottom, transparentize($base_color, 0.1)); + border-color: $_header_entry_border; + background-image: linear-gradient(to bottom, $_header_entry_bg); background-color: transparent; &.image, &.image:hover { color: inherit; } @@ -78,7 +82,7 @@ // insensitive header-bar entry // color: transparentize($header_fg, 0.45); - background-image: linear-gradient(to bottom, transparentize($base_color, 0.45)); + background-image: linear-gradient(to bottom, transparentize($_header_entry_bg, 0.35)); } @if $t==osd { @@ -175,6 +179,9 @@ > GtkLabel { color: inherit; } } + $_header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 3%), 0.1), transparentize($button_bg, 0.1)); + $_header_button_border: if($darker == 'true' or $variant == 'dark', darken($header_bg, 8%), transparentize($header_fg, 0.7)); + @if $t==header-normal { // // normal header-bar button @@ -192,8 +199,8 @@ // color: $header_fg; outline-color: transparentize($header_fg, 0.7); - border-color: transparentize($header_fg, 0.7); - background-color: transparentize($button_bg, 0.1); + border-color: $_header_button_border; + background-color: $_header_button_bg; } @else if $t==header-active { diff --git a/common/gtk-3.0/3.16/_transparent_widgets.scss b/common/gtk-3.0/3.16/_transparent_widgets.scss index 1ca434a..f01774b 100644 --- a/common/gtk-3.0/3.16/_transparent_widgets.scss +++ b/common/gtk-3.0/3.16/_transparent_widgets.scss @@ -1,5 +1,5 @@ .titlebar .separator { - color: darken($header_bg, 7%); //fixes separator in gnome-tweak-tool + color: $header_border; //fixes separator in gnome-tweak-tool } GtkFileChooserDialog .dialog-action-box { background-color: $bg_color } // fix for non gnome environments @@ -12,6 +12,16 @@ NemoWindow { -GtkPaned-handle-size: 0; } +@if $variant==dark { + GtkFileChooserDialog, + NautilusWindow , + NemoWindow { + .sidebar { border-right: 1px solid $dark_sidebar_border; } + + .sidebar:dir(rtl) { border-left: 1px solid $dark_sidebar_border; } + } +} + // Dark transparent sidebars GtkFileChooserDialog, NautilusWindow, @@ -84,7 +94,25 @@ GeditWindow.background.csd { .pane-separator, .pane-separator:hover { background-color: $dark_sidebar_border; } - .titlebar .pane-separator { background-color: darken($header_bg, 7%); } + .titlebar .pane-separator, + &.maximized .titlebar .pane-separator, + .titlebar .pane-separator:backdrop, + &.maximized .titlebar .pane-separator:backdrop { background-color: $header_border; } + + .titlebar { background-color: transparent; } + + &.maximized .titlebar { + background-color: opacify($header_bg, 1); + + &:backdrop { background-color: $header_bg_backdrop; } + } + + .gedit-titlebar-left.titlebar, + .gedit-titlebar-right.titlebar { + background-color: $header_bg; + + &:backdrop { background-color: $header_bg_backdrop; } + } } .gedit-bottom-panel-paned { background-color: $base_color; } @@ -188,7 +216,7 @@ GeditWindow.background.csd GeditFileBrowserView.view { // Filechooser bottom bar GtkFileChooserDialog .action-bar.frame { background-color: darken($dark_sidebar_bg, 2%); - border-color: darken($dark_sidebar_bg, 7%); + border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%)); GtkLabel { color: $dark_sidebar_fg; } diff --git a/common/gtk-3.0/3.16/_unity.scss b/common/gtk-3.0/3.16/_unity.scss index e50b1d9..34616fc 100644 --- a/common/gtk-3.0/3.16/_unity.scss +++ b/common/gtk-3.0/3.16/_unity.scss @@ -18,7 +18,7 @@ UnityDecoration { -UnityDecoration-title-alignment: 0.0; &.top { - border: 1px solid rgba(0, 0, 0, 0.1); + border: 1px solid if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9)); border-bottom-width: 0; border-radius: 4px 4px 0 0; padding: 1px 6px 0 6px; @@ -30,13 +30,13 @@ UnityDecoration { &:backdrop { border-bottom-width: 0; - background-image: linear-gradient(to bottom, lighten(opacify($header_bg, 1), 3%)); + background-image: linear-gradient(to bottom, opacify($header_bg_backdrop, 1)); color: transparentize($header_fg, 0.3); } } &.left, &.right, &.bottom, &.left:backdrop, &.right:backdrop, &.bottom:backdrop { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); + background-image: linear-gradient(to bottom, if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9))); } } diff --git a/common/gtk-3.0/3.16/assets.svg b/common/gtk-3.0/3.16/assets.svg index 8a9b917..49d3928 100644 --- a/common/gtk-3.0/3.16/assets.svg +++ b/common/gtk-3.0/3.16/assets.svg @@ -9,7 +9,7 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="242" + width="484.00006" height="276" id="svg9892" version="1.1" @@ -24,12 +24,12 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.99999999" - inkscape:cx="226.32185" - inkscape:cy="119.82778" + inkscape:zoom="1" + inkscape:cx="432.53015" + inkscape:cy="241.46841" inkscape:document-units="px" inkscape:current-layer="layer1" - showgrid="true" + showgrid="false" showborder="false" inkscape:window-width="1366" inkscape:window-height="720" @@ -71,7 +71,7 @@ <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> + <dc:title /> </cc:Work> </rdf:RDF> </metadata> @@ -2266,7 +2266,7 @@ inkscape:connector-curvature="0" d="m 1373,254 0,2 6,0 0,-2 z" id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" /> </g> <rect @@ -2695,7 +2695,7 @@ </g> <path id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="display:inline;opacity:0.8;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" sodipodi:nodetypes="csscccsscc" /> @@ -2863,7 +2863,7 @@ sodipodi:nodetypes="csscccsscc" inkscape:connector-curvature="0" d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="opacity:0.99999999;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4293-6" /> </g> </g> @@ -2947,7 +2947,7 @@ id="layer12-45-6"> <path sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.99999999;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" id="rect9057-8" d="m 86.0002,974 0,2 6,0 0,-2 z" inkscape:connector-curvature="0" /> @@ -3277,7 +3277,7 @@ inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" id="path10839-9-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#70788d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> </g> </g> @@ -3335,7 +3335,7 @@ </g> <path id="path4293-5" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="display:inline;opacity:0.65;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" sodipodi:nodetypes="csscccsscc" /> @@ -3382,7 +3382,7 @@ inkscape:connector-curvature="0" d="m 1373,254 0,2 6,0 0,-2 z" id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" /> </g> <rect @@ -3393,5 +3393,2244 @@ x="587" y="-168.63782" /> </g> + <rect + ry="0" + rx="0" + y="147.63782" + x="234" + height="138" + width="121" + id="rect18028-4" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#444852;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" + transform="scale(1,-1)" /> + <g + transform="translate(220.00001,-229.00001)" + style="display:inline;opacity:1" + id="checkbox-checked-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-59" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-54" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-8"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-4" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-5" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-2" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-11" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-68"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-4" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-37" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-97" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-6" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-8" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0.66666085" + rx="0.66666085" + y="1033.3622" + x="8" + height="1.9999826" + width="5" + id="rect3977-39-90" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + ry="0" + y="1027.3622" + x="11" + height="7.9999828" + width="2" + id="rect3979-7-60" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-5" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(239.00001,-229.00001)" + style="display:inline;opacity:1" + id="checkbox-mixed-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-4-5" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-0-0" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-2-0"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-7-81" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-1-7" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-5-0" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-8-6" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-9-3"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-0-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-9-3" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-9-8" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-9-34" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-0-9" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-1-9" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0" + y="-725.95471" + x="-738.80396" + height="7.9999828" + width="2" + id="rect3979-7-3-4" + style="fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-4-5" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(201.00001,-229.00001)" + style="display:inline;opacity:1" + id="radio-checked-dark" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-1" + style="display:inline"> + <g + id="g10964-6-63"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-8" + style="display:inline"> + <g + style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1" + id="g7025-09-0-5" + transform="translate(0,1.0687628)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-6-2" + style="display:inline;fill:#000000;fill-opacity:1"> + <g + id="g5428-8-1-7-5-4-7" + style="fill:#000000;fill-opacity:1" /> + </g> + </g> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-09"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-28" + style="display:inline"> + <g + id="g5428-8-1-7-5-64"> + <rect + rx="14.692495" + y="126.56255" + x="51.610752" + height="28.919107" + width="29.384991" + id="rect5147-9-1-7-2-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459554" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="1.9988754" + y="6.3621826" + x="122" + height="4" + width="4" + id="use15101-5-7-55" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2" /> + </g> + <g + transform="translate(201.00001,-229.00001)" + style="display:inline;opacity:1" + id="radio-mixed-dark" + inkscape:label="#g11194"> + <g + id="g11220-5"> + <g + transform="translate(19,-4.6992607e-6)" + style="display:inline" + id="radio-checked-7-40" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-6-5" + style="display:inline"> + <g + id="g10964-6-0-7"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-0-0" + style="display:inline"> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-7-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-3-3"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-7-19" + style="display:inline"> + <g + id="g5428-8-1-7-5-9-7"> + <rect + rx="14.692497" + y="126.56256" + x="51.610752" + height="28.919115" + width="29.384995" + id="rect5147-9-1-7-2-6-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459558" /> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + ry="0" + y="139" + x="-9.3621826" + height="7.9999828" + width="2" + id="rect3979-7-3-9-5" + style="display:inline;fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(0,-1,1,0,0,0)" /> + </g> + </g> + <g + transform="translate(-767.99998,-618.63782)" + style="display:inline;opacity:1" + id="switch-active-dark" + inkscape:label="#g4829"> + <g + id="layer1-9-0-51" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-8"> + <g + id="g3900-1-87-0" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-3" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-8-7" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-75" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-8"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-13" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-65" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-767.99998,-613.63782)" + style="display:inline;opacity:1" + id="switch-dark" + inkscape:label="#g4820"> + <g + id="layer1-9-13" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-2-2"> + <g + id="g3900-12-8" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-32-7" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5f6578;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-07-4" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-7-4" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-46" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + transform="translate(-704.99998,-618.63782)" + style="display:inline;opacity:0.55" + id="switch-active-insensitive-dark" + inkscape:label="#g4829-8"> + <g + id="layer1-9-0-5-7" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-1-7"> + <g + id="g3900-1-3-1-6" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-9-67" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-2-5-36" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-8-4" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-6-4"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-3-6" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-6-69" + style="display:inline;opacity:1;fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-704.99998,-613.63782)" + style="display:inline;opacity:0.55" + id="switch-insensitive-dark" + inkscape:label="#g4820-8"> + <g + id="layer1-9-1-3" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-88-45"> + <g + id="g3900-4-69" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-5-12" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5f6578;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-02-4" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11" /> + <circle + style="fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-1-7-3" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-5-5" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + transform="translate(220.00001,-229.00001)" + style="display:inline;opacity:1" + id="checkbox-unchecked-dark" + inkscape:label="#g22047"> + <g + inkscape:label="#g21853" + id="sdsd-0-1"> + <g + id="scdsdcd-0-4" + inkscape:label="#g14325" + transform="translate(0,-30)"> + <g + style="display:inline" + id="g15812-6-6-1-4-4" + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" + id="g5489-2-9-6-8-8-9-7" + style="display:inline"> + <g + id="g5428-8-1-4-0-0-65-8" /> + </g> + </g> + <rect + y="30.362183" + x="17" + height="16" + width="16" + id="rect13523-4-0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g5400-2-47"> + <rect + ry="2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#26282d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-5-7-6-3-70" + width="13" + height="12.999997" + x="18.5" + y="31.862183" + rx="2" /> + </g> + </g> + </g> + </g> + <g + transform="translate(200.00428,-229.00401)" + style="display:inline;opacity:1" + id="radio-unchecked-dark" + inkscape:label="#g10975"> + <g + id="g10964-4-5"> + <g + style="display:inline" + id="radio-unchecked2-6-5" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect14348-4-3-9" + width="17.090866" + height="17.100227" + x="206.99057" + y="261.97873" /> + <g + id="g7025-3-9"> + <g + style="display:inline" + id="g5489-2-9-3-8-0" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-83-7"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#26282d;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-7-61" + width="27.303804" + height="26.835894" + x="52.660122" + y="127.6043" + rx="13.224192" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + transform="translate(220.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="checkbox-checked-insensitive-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-5-1" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-01-6" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-9-7"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-2-8" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-3-7" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-8-8" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-1-24" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-4-3"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-3-9" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-95-4" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-3-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-1-3" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-9-9" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-4-2" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0.66666085" + rx="0.66666085" + y="1033.3622" + x="8" + height="1.9999826" + width="5" + id="rect3977-39-0-3" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + <rect + ry="0" + y="1027.3622" + x="11" + height="7.9999828" + width="2" + id="rect3979-7-6-9" + style="fill:#32363d;fill-opacity:1;stroke:none" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-9-6" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(239.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="checkbox-mixed-insensitive-dark" + inkscape:label="#g10758"> + <g + inkscape:label="#g22047" + id="checkbox-unchecked-5-4-1-9" + style="display:inline" + transform="translate(19,0)"> + <g + id="sdsd-7-0-5-8" + inkscape:label="#g21853"> + <g + transform="translate(0,-30)" + inkscape:label="#g14325" + id="scdsdcd-5-2-8-5"> + <g + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" + id="g15812-6-6-1-5-7-8-6" + style="display:inline"> + <g + style="display:inline" + id="g5489-2-9-6-8-8-53-1-8-4" + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> + <g + id="g5428-8-1-4-0-0-4-5-4-6" /> + </g> + </g> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect13523-7-8-8-7" + width="16" + height="16" + x="17" + y="30.362183" /> + <g + id="g5400-6-9-9-6"> + <rect + rx="1.9999943" + y="31.362196" + x="18.000006" + height="13.99999" + width="13.999989" + id="rect5147-9-1-5-7-6-7-0-7-33" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="1.9999917" /> + </g> + </g> + </g> + </g> + <g + inkscape:label="Ebene 1" + id="checkbox-checked-dark-7-9-57-75" + transform="translate(36,-1036)" + style="display:inline"> + <g + id="g3981-6-4-9-3-7" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" + style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> + <g + id="g4049-2-9-7-5" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> + <g + id="g4056-7-0-8-4" + transform="translate(12.374375,11.531233)"> + <g + id="g3981-0-1-4-7" + transform="translate(-3,-4.9999826)" + style="fill:#3b3c3e;fill-opacity:1"> + <rect + ry="0" + y="-725.95471" + x="-738.80396" + height="7.9999828" + width="2" + id="rect3979-7-3-91-5" + style="fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> + </g> + <rect + style="fill:#eeeeee;fill-opacity:0;stroke:none" + id="rect4047-81-4-2-21" + width="3" + height="1" + x="5" + y="-8" + transform="translate(0,1036.3622)" /> + </g> + </g> + </g> + </g> + <g + transform="translate(201.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="radio-checked-insensitive-dark" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-8-6" + style="display:inline"> + <g + id="g10964-6-7-2"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-4-5" + style="display:inline"> + <g + style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1" + id="g7025-09-0-3-3" + transform="translate(0,1.0687628)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-6-1-7" + style="display:inline;fill:#000000;fill-opacity:1"> + <g + id="g5428-8-1-7-5-4-5-4" + style="fill:#000000;fill-opacity:1" /> + </g> + </g> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-2-7" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-5-0"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-70-6" + style="display:inline"> + <g + id="g5428-8-1-7-5-62-6"> + <rect + rx="14.692495" + y="126.56255" + x="51.610752" + height="28.919107" + width="29.384991" + id="rect5147-9-1-7-2-2-2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459554" /> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + rx="1.9988754" + y="6.3621826" + x="122" + height="4" + width="4" + id="use15101-5-7-2-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + ry="2" /> + </g> + <g + transform="translate(201.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="radio-mixed-insensitive-dark" + inkscape:label="#g11194"> + <g + id="g11220-22-7"> + <g + transform="translate(19,-4.6992607e-6)" + style="display:inline" + id="radio-checked-7-4-10" + inkscape:label="#g11094"> + <g + transform="translate(19.004264,-4.6992607e-6)" + inkscape:label="#g10975" + id="radio-unchecked-2-6-0-3" + style="display:inline"> + <g + id="g10964-6-0-1-8"> + <g + inkscape:label="#g15805" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + id="radio-unchecked2-0-0-2-8" + style="display:inline"> + <rect + y="261.97873" + x="206.99057" + height="17.100227" + width="17.090866" + id="rect14348-4-8-7-5-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g7025-09-3-9-4"> + <g + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)" + id="g5489-2-9-3-2-7-7-8" + style="display:inline"> + <g + id="g5428-8-1-7-5-9-2-3"> + <rect + rx="14.692497" + y="126.56256" + x="51.610752" + height="28.919115" + width="29.384995" + id="rect5147-9-1-7-2-6-9-3" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + ry="14.459558" /> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + <rect + ry="0" + y="139" + x="-9.3621826" + height="7.9999828" + width="2" + id="rect3979-7-3-9-3-37" + style="display:inline;fill:#32363d;fill-opacity:1;stroke:none" + transform="matrix(0,-1,1,0,0,0)" /> + </g> + </g> + <g + transform="translate(220.00001,-210.00002)" + style="display:inline;opacity:0.55" + id="checkbox-unchecked-insensitive-dark" + inkscape:label="#g22047"> + <g + inkscape:label="#g21853" + id="sdsd-0-3-0"> + <g + id="scdsdcd-0-7-1" + inkscape:label="#g14325" + transform="translate(0,-30)"> + <g + style="display:inline" + id="g15812-6-6-1-4-6-3" + transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> + <g + transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" + id="g5489-2-9-6-8-8-9-1-1" + style="display:inline"> + <g + id="g5428-8-1-4-0-0-65-4-7" /> + </g> + </g> + <rect + y="30.362183" + x="17" + height="16" + width="16" + id="rect13523-4-2-5" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> + <g + id="g5400-2-4-7"> + <rect + ry="2" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;stroke:#26282d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-5-7-6-3-7-2" + width="13" + height="13.000001" + x="18.5" + y="31.862192" + rx="2" /> + </g> + </g> + </g> + </g> + <g + transform="translate(200.00428,-210.00001)" + style="display:inline;opacity:0.55" + id="radio-unchecked-insensitive-dark" + inkscape:label="#g10975"> + <g + id="g10964-4-8-3"> + <g + style="display:inline" + id="radio-unchecked2-6-3-0" + transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)" + inkscape:label="#g15805"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect14348-4-3-7-2" + width="17.090866" + height="17.100227" + x="206.99057" + y="261.97873" /> + <g + id="g7025-3-8-9"> + <g + style="display:inline" + id="g5489-2-9-3-8-9-6" + transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"> + <g + id="g5428-8-1-7-83-9-6"> + <rect + ry="13.246163" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#32363d;fill-opacity:1;fill-rule:nonzero;stroke:#26282d;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + id="rect5147-9-1-7-7-2-6" + width="27.303804" + height="26.835888" + x="52.660122" + y="127.60432" + rx="13.224192" /> + </g> + </g> + </g> + </g> + </g> + </g> + <g + style="display:inline" + id="checkbox-checked-selectionmode-dark" + transform="translate(-227.99998,-369)" + inkscape:label="#g14055"> + <rect + ry="2" + y="183.36218" + x="466" + height="32" + width="32" + id="rect13851-5" + style="fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="2" /> + <g + transform="translate(-2.2045153,1.9730481)" + id="g14051-7"> + <path + style="display:inline;fill:#383c45;fill-opacity:1;stroke:none" + d="m 491.36072,188.95163 -9.5312,9.5625 -4.7812,-4.78125 -3.1876,3.1875 4.7813,4.78125 3.1875,3.1875 3.1562,-3.1875 9.5626,-9.5625 -3.1876,-3.1875 z" + id="rect3977-39-35-1-3-50" + inkscape:connector-curvature="0" /> + </g> + <rect + ry="2" + y="179.36218" + x="461.99997" + height="39.999992" + width="39.999989" + id="rect13851-7-3" + style="display:inline;fill:none;fill-opacity:0.55102036;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="1.9999999" /> + </g> + <g + style="display:inline" + id="checkbox-selectionmode-dark" + transform="translate(-182.99998,-369)" + inkscape:label="#g14055"> + <rect + ry="2" + y="183.86218" + x="466.50003" + height="31" + width="30.999969" + id="rect13851-8-3" + style="fill:#32363d;fill-opacity:1;stroke:#26282d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="2" /> + <g + transform="translate(-2.2045153,1.9730481)" + id="g14051-0-8"> + <path + style="display:inline;opacity:0.55;fill:#5f6578;fill-opacity:1;stroke:none" + d="m 491.36072,188.95163 -9.5312,9.5625 -4.7812,-4.78125 -3.1876,3.1875 4.7813,4.78125 3.1875,3.1875 3.1562,-3.1875 9.5626,-9.5625 -3.1876,-3.1875 z" + id="rect3977-39-35-1-3-5-2" + inkscape:connector-curvature="0" /> + </g> + <rect + ry="2" + y="179.36218" + x="461.99997" + height="39.999992" + width="39.999989" + id="rect13851-7-1" + style="display:inline;fill:none;fill-opacity:0.55102036;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="1.9999999" /> + </g> + <rect + style="display:inline;fill:#2f343b;fill-opacity:1;stroke:#222529;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect11783-3-1" + width="120.99998" + height="138" + x="355" + y="-285.63782" /> + <g + transform="translate(-646.99998,-618.63782)" + style="display:inline;opacity:1" + id="switch-active-header-dark" + inkscape:label="#g4829"> + <g + id="layer1-9-0-8-3-1" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-2-5-0"> + <g + id="g3900-1-87-1-7-9" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-7-0-8" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-8-8-7-5" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-9-7-1" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-7-3-7"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-6-0-5" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-5-9-4" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-646.99998,-613.63782)" + style="display:inline;opacity:1" + id="switch-header-dark" + inkscape:label="#g4820"> + <g + id="layer1-9-4-5-1" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-2-5-8-0"> + <g + id="g3900-12-9-5-2" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-32-3-7-9" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#4e535f;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-07-5-3-3" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-7-8-7-8" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-4-1-8" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + transform="translate(-584,-618.63782)" + style="display:inline;opacity:0.55" + id="switch-active-insensitive-header-dark" + inkscape:label="#g4829-8"> + <g + id="layer1-9-0-5-9-3-1" + inkscape:label="Layer 1" + transform="translate(885,450)" + style="display:inline;opacity:1"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-8-1-1-7-4"> + <g + id="g3900-1-3-1-4-9-0" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-3-9-6-8-2" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-0-2-5-3-4-9" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-0-8-5-9-1" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <g + transform="translate(-1.0003162,0)" + id="g4816-6-6-5-6"> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0.66666085" + rx="0.66666085" + y="-456.09485" + x="977.54999" + height="1.9999826" + width="5" + id="rect3977-39-2-3-77-4-7" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + <rect + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" + ry="0" + y="-462.09485" + x="980.54999" + height="7.9999828" + width="2" + id="rect3979-7-0-6-4-7-1" + style="display:inline;opacity:1;fill:#2d3137;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + transform="translate(-584,-613.63782)" + style="display:inline;opacity:0.55" + id="switch-insensitive-header-dark" + inkscape:label="#g4820-8"> + <g + id="layer1-9-1-6-2-5" + inkscape:label="Layer 1" + transform="matrix(-1,0,0,1,1177,420)"> + <g + style="display:inline" + transform="translate(120,-116.99998)" + inkscape:label="Layer 1" + id="switch-active-88-4-1-3"> + <g + id="g3900-4-6-4-0" + transform="translate(0,-1004.3622)"> + <rect + style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5465-3-5-1-5-8" + width="52" + height="24" + x="0" + y="1029.3622" /> + <rect + style="fill:#4e535f;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="rect2987-02-7-6-5" + width="50" + height="20" + x="1" + y="1031.3622" + ry="11" + rx="11.000001" /> + <circle + style="opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path3759-1-7-5-1-1" + cx="41" + cy="1041.3622" + r="9" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" + id="path10839-9-8-2-2-5-5-9-7-6" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2d3137;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + <g + style="display:inline" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-229.00002,-43.000019)"> + <ellipse + cy="-177.63782" + cx="595" + style="display:inline;opacity:0.85;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-47-2" + rx="6" + ry="6.0000005" /> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-3-9" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-247.00002,-43.000019)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#e45e65;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-2-7-9" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-238.00002,-43.000019)"> + <ellipse + cy="-177.63782" + cx="624" + style="display:inline;opacity:0.85;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-6-0-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-2-0-6" + inkscape:connector-curvature="0" /> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:0.8;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-144.00001,-9.0000206)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f48085;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-5-0-4" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-135.00001,-9.0000206)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-126.00001,-9.0000206)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-43.000017,7.9999889)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#e6262f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-8-7-6-8" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-34.000017,7.9999889)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-25.000017,7.9999889)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + <g + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6497" + style="display:inline;opacity:0.7" + transform="translate(-247.00002,-43.000019)"> + <g + id="g4927-9-9-36-1" + style="display:inline;opacity:1" + transform="translate(-678,-415.63782)"> + <ellipse + cy="255" + cx="1331" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-2-3-4" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-8-1-4" + inkscape:connector-curvature="0" /> + <g + id="g4778-2-3-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-0-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-7-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-3-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-5-6" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-2-0" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-8-6" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#afb8c5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-9-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-2-4-2" + width="16" + height="16" + x="645" + y="-168.63782" /> + </g> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.7" + transform="translate(-238.00002,-43.000019)"> + <ellipse + cy="-160.63782" + cx="624" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-84-0-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-7-6-7" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:0.65;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.7" + transform="translate(-229.00002,-43.000019)"> + <ellipse + cy="-160.63782" + cx="595" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-60-3-2" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-4-4-4" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> </g> </svg> diff --git a/common/gtk-3.0/3.16/assets.txt b/common/gtk-3.0/3.16/assets.txt index 029d3a8..6746aca 100644 --- a/common/gtk-3.0/3.16/assets.txt +++ b/common/gtk-3.0/3.16/assets.txt @@ -48,3 +48,37 @@ titlebutton-min titlebutton-min-backdrop titlebutton-min-hover titlebutton-min-active +checkbox-checked-dark +checkbox-checked-insensitive-dark +checkbox-unchecked-dark +checkbox-unchecked-insensitive-dark +checkbox-mixed-dark +checkbox-mixed-insensitive-dark +checkbox-checked-selectionmode-dark +checkbox-selectionmode-dark +radio-checked-dark +radio-checked-insensitive-dark +radio-unchecked-dark +radio-unchecked-insensitive-dark +radio-mixed-dark +radio-mixed-insensitive-dark +switch-dark +switch-active-dark +switch-insensitive-dark +switch-active-insensitive-dark +switch-header-dark +switch-active-header-dark +switch-insensitive-header-dark +switch-active-insensitive-header-dark +titlebutton-close-dark +titlebutton-close-backdrop-dark +titlebutton-close-hover-dark +titlebutton-close-active-dark +titlebutton-max-dark +titlebutton-max-backdrop-dark +titlebutton-max-hover-dark +titlebutton-max-active-dark +titlebutton-min-dark +titlebutton-min-backdrop-dark +titlebutton-min-hover-dark +titlebutton-min-active-dark diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png Binary files differnew file mode 100644 index 0000000..0c22603 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..e9816ec --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..3f48d1e --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..e4226d5 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark.png Binary files differnew file mode 100644 index 0000000..6f6517f --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark@2.png Binary files differnew file mode 100644 index 0000000..60487bf --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png Binary files differnew file mode 100644 index 0000000..6abc474 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..ac02f2c --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..f7c61c6 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..52ab429 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png Binary files differnew file mode 100644 index 0000000..3bea14f --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png Binary files differnew file mode 100644 index 0000000..839d1da --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..01eac8d --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..cc62ffd --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..0a4c5ef --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..fc2fed0 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-dark.png b/common/gtk-3.0/3.16/assets/radio-checked-dark.png Binary files differnew file mode 100644 index 0000000..84fb0c6 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-checked-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png b/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..7ebd4ad --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..04e54f9 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..084470a --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-dark.png b/common/gtk-3.0/3.16/assets/radio-mixed-dark.png Binary files differnew file mode 100644 index 0000000..2df6c2a --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-mixed-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..ae121a3 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..d7c512b --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..d8a7c95 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..6f46a61 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..cd741d3 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..4d7905a --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..089b4d0 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-dark.png b/common/gtk-3.0/3.16/assets/switch-active-dark.png Binary files differnew file mode 100644 index 0000000..dc16b48 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-dark@2.png Binary files differnew file mode 100644 index 0000000..b992e86 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-header-dark.png b/common/gtk-3.0/3.16/assets/switch-active-header-dark.png Binary files differnew file mode 100644 index 0000000..7cab70f --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-header-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-header-dark@2.png Binary files differnew file mode 100644 index 0000000..e727c33 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-header-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..216f8f9 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..2386907 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark.png Binary files differnew file mode 100644 index 0000000..7856149 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark@2.png Binary files differnew file mode 100644 index 0000000..e1ed561 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-dark.png b/common/gtk-3.0/3.16/assets/switch-dark.png Binary files differnew file mode 100644 index 0000000..e100e5c --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-dark@2.png b/common/gtk-3.0/3.16/assets/switch-dark@2.png Binary files differnew file mode 100644 index 0000000..59be7d1 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-header-dark.png b/common/gtk-3.0/3.16/assets/switch-header-dark.png Binary files differnew file mode 100644 index 0000000..eb37281 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-header-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-header-dark@2.png Binary files differnew file mode 100644 index 0000000..87ef62e --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-header-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png b/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png Binary files differnew file mode 100644 index 0000000..6ea40d6 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png Binary files differnew file mode 100644 index 0000000..6348480 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark.png b/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark.png Binary files differnew file mode 100644 index 0000000..3091579 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark@2.png Binary files differnew file mode 100644 index 0000000..22e6449 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png Binary files differnew file mode 100644 index 0000000..4df4c2f --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png Binary files differnew file mode 100644 index 0000000..1882b92 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..bf5cba7 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..6c3d5e3 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png Binary files differindex e0e5654..54690f3 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png Binary files differindex dfe5e61..01f61f0 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png Binary files differnew file mode 100644 index 0000000..d471b6d --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png Binary files differnew file mode 100644 index 0000000..5c5eddf --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png Binary files differnew file mode 100644 index 0000000..3349844 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..2c7366a --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-active-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-active-dark.png Binary files differnew file mode 100644 index 0000000..a6ca483 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-active-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-active-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-active-dark@2.png Binary files differnew file mode 100644 index 0000000..fba1731 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-active-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..d4f7166 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..1945796 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop.png b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop.png Binary files differindex fc40744..9440671 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop@2.png Binary files differindex 88e3fb5..523fffc 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png Binary files differnew file mode 100644 index 0000000..dccb307 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png Binary files differnew file mode 100644 index 0000000..225ca11 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png Binary files differnew file mode 100644 index 0000000..4504709 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..e910d0b --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-hover.png b/common/gtk-3.0/3.16/assets/titlebutton-max-hover.png Binary files differindex 3362698..1610b34 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-hover.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-hover.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-hover@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-hover@2.png Binary files differindex 7b8cb1b..6a467da 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-hover@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-hover@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max.png b/common/gtk-3.0/3.16/assets/titlebutton-max.png Binary files differindex 6bb22ed..d54043f 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max@2.png Binary files differindex 13d1e73..3e9373e 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-active-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-active-dark.png Binary files differnew file mode 100644 index 0000000..17f484f --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-active-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-active-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-active-dark@2.png Binary files differnew file mode 100644 index 0000000..277d401 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-active-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..751f194 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..20bf7c4 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop.png b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop.png Binary files differindex a83a5e5..de62aa1 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop@2.png Binary files differindex 20a41a4..434b817 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png Binary files differnew file mode 100644 index 0000000..b4ab5f7 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png Binary files differnew file mode 100644 index 0000000..7cc4467 --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png Binary files differnew file mode 100644 index 0000000..a7859cc --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..57bf18e --- /dev/null +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-hover.png b/common/gtk-3.0/3.16/assets/titlebutton-min-hover.png Binary files differindex 24ee141..8d6b6c3 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-hover.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-hover.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-hover@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-hover@2.png Binary files differindex f6c8c3d..f122bb3 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-hover@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-hover@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min.png b/common/gtk-3.0/3.16/assets/titlebutton-min.png Binary files differindex f4afc8c..029627d 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min@2.png Binary files differindex 8d683d4..2febb1e 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min@2.png diff --git a/common/gtk-3.0/3.16/gtk-contained-dark.css b/common/gtk-3.0/3.16/gtk-contained-dark.css new file mode 100644 index 0000000..3181949 --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-dark.css @@ -0,0 +1,3409 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #a9caf1; + -GtkWidget-visited-link-color: #7eafe9; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(211, 218, 227, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #D3DAE3; + background-color: rgba(68, 72, 82, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #444852; + color: #D3DAE3; } + .gtkstyle-fallback:prelight { + background-color: #5b606e; + color: #D3DAE3; } + .gtkstyle-fallback:active { + background-color: #2d3036; + color: #D3DAE3; } + .gtkstyle-fallback:insensitive { + background-color: #494d58; + color: rgba(211, 218, 227, 0.45); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #D3DAE3; + background-color: #383C45; } + .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { + color: rgba(211, 218, 227, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { + color: #D3DAE3; } +.label:insensitive { + color: rgba(211, 218, 227, 0.45); } + +.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #383C45; + border-top: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #2d3036; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #3e424b; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #D3DAE3; + border-color: #5294E2; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .entry:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(56, 60, 69, 0.55); + background-image: linear-gradient(to bottom, rgba(56, 60, 69, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #d4403a); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #cc6c38); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #b4bac3; } + .entry.image:hover { + color: #D3DAE3; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #343840; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(68, 72, 82, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #5B5F69; + background-color: #5B5F69; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #707582; + background-color: #707582; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #4a4e56; + background-color: #4a4e56; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #4b4f59; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #a9caf1; } + *:link:visited, .button:visited { + color: #7eafe9; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #d5e5f8; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #a9caf1; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(45, 48, 54, 0.6); + border-style: none none none solid; + color: #cbd2db; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(211, 218, 227, 0.45); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(211, 218, 227, 0.45); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(211, 218, 227, 0.6); + background-color: #2d3036; + border-color: #2d3036; } + GtkComboBox.combobox-entry .button:hover { + background-color: #383c44; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #444852; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, rgba(31, 34, 39, 0.97)) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #3d414a; + border-style: solid; + border-color: #2d3036; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #444852; + border-style: solid; + border-color: #2d3036; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #3d414a; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: rgba(36, 39, 45, 0.97); + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: rgba(47, 52, 59, 0.97); } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: rgba(82, 148, 226, 0.95); + border-color: rgba(65, 137, 223, 0.95); + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: rgba(82, 148, 226, 0.95); + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + .header-bar.default-decoration { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f343b; + border-bottom-width: 0; } + .header-bar.default-decoration:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + .csd .titlebar { + background-color: rgba(47, 52, 59, 0.97); } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5B5F69; + background-color: #5B5F69; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; + outline-color: rgba(91, 95, 105, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #707582; + background-color: #707582; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #4a4e56; + background-color: #4a4e56; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(91, 95, 105, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, rgba(55, 59, 68, 0.997)); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, rgba(50, 55, 63, 0.982)); } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(211, 218, 227, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #a8c9f0; + border-top-color: rgba(211, 218, 227, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(211, 218, 227, 0.45); } + GtkTreeView.view:insensitive:selected { + color: #97beed; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #92b7e2; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #858b94; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #D3DAE3; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #2d3036; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #b4bac3; + background-color: #383C45; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #D3DAE3; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #383C45, inset -1px 0 #383C45; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #383C45; } + column-header .button:insensitive { + border-color: #444852; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383C45; + border: 1px solid #2d3036; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #D3DAE3; + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(211, 218, 227, 0.45); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(56, 60, 69, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #474b54; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #474b54; } + .menu.button:hover, .popup.button:hover { + background-color: #474b54; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + padding: 2px; + border: 1px solid #212328; + border-radius: 3px; + background-clip: border-box; + background-color: #383C45; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(56, 60, 69, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #373b44; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #2d3036; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #3e424b; } + .notebook.header.frame { + border: 1px solid #2d3036; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #2d3036; } + .notebook.header.bottom { + box-shadow: inset 0 1px #2d3036; } + .notebook.header.right { + box-shadow: inset 1px 0 #2d3036; } + .notebook.header.left { + box-shadow: inset -1px 0 #2d3036; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(211, 218, 227, 0.45); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(211, 218, 227, 0.725); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #D3DAE3; } + .notebook tab .button { + padding: 0; + color: #a0a6b0; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(211, 218, 227, 0.45); } + .notebook.arrow:hover { + color: rgba(211, 218, 227, 0.725); } + .notebook.arrow:active { + color: #D3DAE3; } + .notebook.arrow:insensitive { + color: rgba(211, 218, 227, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 1; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #a8aeb7; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #363a42; + border: 1px none #2d3036; } + .scrollbar .slider { + background-color: #7d828c; } + .scrollbar .slider:hover { + background-color: #6e737d; } + .scrollbar .slider:prelight:active { + background-color: #5294E2; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #2d3036 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #363a42; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(211, 218, 227, 0.45); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #383c45); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3d414a); + border-color: #4b71a1; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2f323a); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(47, 50, 58, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2f323a; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(211, 218, 227, 0.2); + border-color: rgba(211, 218, 227, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #2d3036; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #383C45; + border-color: #2d3036; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(255, 255, 255, 0.03); } + .list-row.button:active { + color: #D3DAE3; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #D3DAE3; + border: 1px solid #2d3036; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #D3DAE3; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(211, 218, 227, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #D3DAE3; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: rgba(47, 52, 59, 0.97); + border-bottom: 1px solid rgba(31, 34, 39, 0.97); } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #444852; + border-color: #2d3036; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #2d3036; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #444852; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #D3DAE3; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #2d3036; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: #2d3036; + border-width: 1px; } + GtkPaned.wide.vertical .pane-separator { + border-style: solid none; } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + GtkColorSwatch#add-color-button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 8px 1px rgba(0, 0, 0, 0.55); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 5px 2px rgba(0, 0, 0, 0.55); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #212429; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: rgba(47, 52, 59, 0.97); + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #383C45; + color: #D3DAE3; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #24272d; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #D3DAE3; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #8b919a; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dce9f9; } + +NautilusNotebook.notebook { + background-color: #383C45; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +.nautilus-circular-button { + border-radius: 50%; + outline-radius: 50%; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(211, 218, 227, 0.5); + border-color: rgba(180, 192, 207, 0.5); } + .disk-space-display.used { + background-color: rgba(82, 148, 226, 0.8); + border-color: rgba(38, 121, 219, 0.8); } + .disk-space-display.free { + background-color: #3d414a; + border-color: #26282e; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #2d3036; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: rgba(36, 39, 45, 0.97); } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #383C45; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5294E2; } + +/* Only normal state is handle */ +.open-document-selector-name-label { + color: #D3DAE3; } + +/* Only normal state is handle */ +.open-document-selector-path-label { + color: #858b94; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a0a6b0; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #D3DAE3; } + +.gedit-document-panel-dragged-row { + border: 1px solid #2d3036; + background-color: #2d3036; + color: #D3DAE3; } + +GeditStatusbar { + border-top: 1px solid #2d3036; + background-color: #444852; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #2d3036; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(211, 218, 227, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #494d58; + padding: 6px; + border-color: #2d3036; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(61, 65, 75, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #D3DAE3; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #444852; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #2d3036; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #444852; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #D3DAE3; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(211, 218, 227, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid #2d3036; + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #383C45); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #D3DAE3; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #D3DAE3; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid rgba(31, 34, 39, 0.97); + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, rgba(31, 34, 39, 0.97)); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #2d3036; + border-right: 1px solid #2d3036; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #2d3036; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #2d3036; + background-color: #444852; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #444852; + color: #D3DAE3; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: #505460; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction { + border-image: none; + border-color: transparent; + background-color: #444852; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #D3DAE3; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #383C45; } + +GraniteWidgetsWelcome GtkLabel { + color: #8b919a; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(211, 218, 227, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #383C45); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #a8aeb7; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: rgba(36, 39, 45, 0.97); } + +GtkFileChooserDialog .dialog-action-box { + background-color: #444852; } + +NemoWindow GtkEventBox { + background-color: #444852; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid rgba(46, 49, 56, 0.95); } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid rgba(46, 49, 56, 0.95); } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, +NautilusWindow .sidebar, +NautilusWindow .source-list.sidebar.view, +NemoWindow .sidebar, +NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: rgba(69, 74, 84, 0.95); } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar row, + NautilusWindow .source-list.sidebar.view .view, + NautilusWindow .source-list.sidebar.view row, + NemoWindow .sidebar .view, + NemoWindow .sidebar row, + NemoWindow .source-list.sidebar.view .view, + NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar row.image, + NautilusWindow .source-list.sidebar.view .view.image, + NautilusWindow .source-list.sidebar.view row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar row.image, + NemoWindow .source-list.sidebar.view .view.image, + NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar row.cell:selected, + NautilusWindow .source-list.sidebar.view .view.cell:selected, + NautilusWindow .source-list.sidebar.view row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar row.cell:selected, + NemoWindow .source-list.sidebar.view .view.cell:selected, + NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, + NautilusWindow .sidebar.frame, + NautilusWindow .source-list.sidebar.view.frame, + NemoWindow .sidebar.frame, + NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow .source-list.sidebar.view .separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, + NautilusWindow .sidebar .scrollbar .trough, + NautilusWindow .source-list.sidebar.view .scrollbar .trough, + NemoWindow .sidebar .scrollbar .trough, + NemoWindow .source-list.sidebar.view .scrollbar .trough, + MarlinViewWindow .sidebar .scrollbar .trough, + MarlinViewWindow .source-list.sidebar.view .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, + NautilusWindow .sidebar .scrollbar .slider, + NautilusWindow .source-list.sidebar.view .scrollbar .slider, + NemoWindow .sidebar .scrollbar .slider, + NemoWindow .source-list.sidebar.view .scrollbar .slider, + MarlinViewWindow .sidebar .scrollbar .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar .slider:hover, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:hover, + NautilusWindow .sidebar .scrollbar .slider:hover, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:hover, + NemoWindow .sidebar .scrollbar .slider:hover, + NemoWindow .source-list.sidebar.view .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:prelight:active, + NautilusWindow .sidebar .scrollbar .slider:prelight:active, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + NemoWindow .sidebar .scrollbar .slider:prelight:active, + NemoWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:insensitive, + NautilusWindow .sidebar .scrollbar .slider:insensitive, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + NemoWindow .sidebar .scrollbar .slider:insensitive, + NemoWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454a54; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: rgba(46, 49, 56, 0.95); } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #444852; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: rgba(46, 49, 56, 0.95); } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: rgba(36, 39, 45, 0.97); } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: rgba(47, 52, 59, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + +.gedit-bottom-panel-paned { + background-color: #383C45; } + +.gedit-document-panel { + background-color: rgba(69, 74, 84, 0.95); } + .maximized .gedit-document-panel { + background-color: #454a54; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: rgba(69, 74, 84, 0.95); } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #454a54; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: rgba(53, 57, 65, 0.95); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: rgba(65, 69, 79, 0.95); + border-color: rgba(35, 37, 42, 0.95); } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #D3DAE3; +@define-color theme_text_color #D3DAE3; +@define-color theme_bg_color #444852; +@define-color theme_base_color #383C45; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #D3DAE3; +@define-color text_color #D3DAE3; +@define-color bg_color #444852; +@define-color base_color #383C45; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #494d58; +@define-color insensitive_fg_color rgba(211, 218, 227, 0.45); +@define-color insensitive_base_color #383C45; +@define-color theme_unfocused_fg_color #D3DAE3; +@define-color theme_unfocused_text_color #D3DAE3; +@define-color theme_unfocused_bg_color #444852; +@define-color theme_unfocused_base_color #383C45; +@define-color borders #2d3036; +@define-color unfocused_borders #2d3036; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #383C45; diff --git a/common/gtk-3.0/3.16/gtk-contained-dark.scss b/common/gtk-3.0/3.16/gtk-contained-dark.scss new file mode 100644 index 0000000..e0042ca --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-dark.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'dark'; +$darker: 'false'; +$transparency: 'true'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/gtk-contained-darker.css b/common/gtk-3.0/3.16/gtk-contained-darker.css new file mode 100644 index 0000000..0ba69a9 --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-darker.css @@ -0,0 +1,3401 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #2679db; + -GtkWidget-visited-link-color: #1e61b0; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(92, 97, 108, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #5c616c; + background-color: rgba(245, 246, 247, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F5F6F7; + color: #5c616c; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #5c616c; } + .gtkstyle-fallback:active { + background-color: #d9dde0; + color: #5c616c; } + .gtkstyle-fallback:insensitive { + background-color: #fbfbfb; + color: rgba(92, 97, 108, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #5c616c; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { + color: rgba(92, 97, 108, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { + color: #5c616c; } +.label:insensitive { + color: rgba(92, 97, 108, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #dcdfe3; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #fafafb; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #5c616c; + border-color: #5294E2; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fc665f); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f4935d); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #7c8089; } + .entry.image:hover { + color: #5c616c; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #f4f5f6; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 246, 247, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #9EA4B5; + background-color: #9EA4B5; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #b8bcc9; + background-color: #b8bcc9; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #8a91a6; + background-color: #8a91a6; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #edeef0; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #2679db; } + *:link:visited, .button:visited { + color: #1e61b0; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5294e2; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #2679db; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(220, 223, 227, 0.6); + border-style: none none none solid; + color: #646873; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(92, 97, 108, 0.55); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(92, 97, 108, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(92, 97, 108, 0.6); + background-color: #cfd6e6; + border-color: #cfd6e6; } + GtkComboBox.combobox-entry .button:hover { + background-color: #e0e4ef; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F5F6F7; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, rgba(31, 34, 39, 0.97)) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #eceef0; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F5F6F7; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #eceef0; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: rgba(31, 34, 39, 0.97); + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: rgba(47, 52, 59, 0.97); } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: rgba(82, 148, 226, 0.95); + border-color: rgba(65, 137, 223, 0.95); + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: rgba(82, 148, 226, 0.95); + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + .header-bar.default-decoration { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f343b; + border-bottom-width: 0; } + .header-bar.default-decoration:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + .csd .titlebar { + background-color: rgba(47, 52, 59, 0.97); } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #9EA4B5; + background-color: #9EA4B5; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; + outline-color: rgba(158, 164, 181, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #b8bcc9; + background-color: #b8bcc9; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #8a91a6; + background-color: #8a91a6; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(158, 164, 181, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.97)); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, rgba(45, 49, 56, 0.97)); + border-color: rgba(61, 91, 128, 0.982); } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(92, 97, 108, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #a8c9f0; + border-top-color: rgba(92, 97, 108, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(92, 97, 108, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #97beed; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #577aa7; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #adb0b5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #5c616c; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #cfd6e6; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #7c8089; + background-color: #ffffff; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #5c616c; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #ffffff; } + column-header .button:insensitive { + border-color: #F5F6F7; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #dcdfe3; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #5c616c; + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(92, 97, 108, 0.55); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #eeeff0; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #eeeff0; } + .menu.button:hover, .popup.button:hover { + background-color: #eeeff0; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + padding: 2px; + border: 1px solid #cdd2d7; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #fefefe; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #dcdfe3; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #fafafb; } + .notebook.header.frame { + border: 1px solid #dcdfe3; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #eaecee; } + .notebook.header.bottom { + box-shadow: inset 0 1px #eaecee; } + .notebook.header.right { + box-shadow: inset 1px 0 #eaecee; } + .notebook.header.left { + box-shadow: inset -1px 0 #eaecee; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(92, 97, 108, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(92, 97, 108, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #5c616c; } + .notebook tab .button { + padding: 0; + color: #91959c; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(92, 97, 108, 0.55); } + .notebook.arrow:hover { + color: rgba(92, 97, 108, 0.775); } + .notebook.arrow:active { + color: #5c616c; } + .notebook.arrow:insensitive { + color: rgba(92, 97, 108, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 1; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #898d95; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #dcdfe3; } + .scrollbar .slider { + background-color: #b7babf; } + .scrollbar .slider:hover { + background-color: #c7c9cd; } + .scrollbar .slider:prelight:active { + background-color: #5294E2; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(92, 97, 108, 0.55); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfd6e6); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 214, 230, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(92, 97, 108, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfd6e6; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(92, 97, 108, 0.2); + border-color: rgba(92, 97, 108, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #dcdfe3; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #ffffff; + border-color: #dcdfe3; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(0, 0, 0, 0.05); } + .list-row.button:active { + color: #5c616c; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #aaaeb7; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #5c616c; + border: 1px solid #dcdfe3; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #5c616c; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(92, 97, 108, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #5c616c; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: rgba(47, 52, 59, 0.97); + border-bottom: 1px solid rgba(31, 34, 39, 0.97); } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F5F6F7; + border-color: #dcdfe3; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #dcdfe3; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #F5F6F7; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #5c616c; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #dcdfe3; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: #dcdfe3; + border-width: 1px; } + GtkPaned.wide.vertical .pane-separator { + border-style: solid none; } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + GtkColorSwatch#add-color-button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 8px 1px rgba(0, 0, 0, 0.25); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97), 0 4px 5px 2px rgba(0, 0, 0, 0.25); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px rgba(31, 34, 39, 0.97); } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: rgba(47, 52, 59, 0.97); + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #ffffff; + color: #5c616c; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #1f2227; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #5c616c; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #a8abb1; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dce9f9; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +.nautilus-circular-button { + border-radius: 50%; + outline-radius: 50%; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(92, 97, 108, 0.5); + border-color: rgba(69, 72, 80, 0.5); } + .disk-space-display.used { + background-color: rgba(82, 148, 226, 0.8); + border-color: rgba(38, 121, 219, 0.8); } + .disk-space-display.free { + background-color: #eceef0; + border-color: #d0d5da; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #dcdfe3; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: rgba(29, 32, 36, 0.97); + background-color: rgba(40, 44, 50, 0.87); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: rgba(31, 34, 39, 0.97); } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5294E2; } + +/* Only normal state is handle */ +.open-document-selector-name-label { + color: #5c616c; } + +/* Only normal state is handle */ +.open-document-selector-path-label { + color: #adb0b5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #91959c; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #5c616c; } + +.gedit-document-panel-dragged-row { + border: 1px solid #dcdfe3; + background-color: #d9dde0; + color: #5c616c; } + +GeditStatusbar { + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #dcdfe3; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(92, 97, 108, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #fbfbfc; + padding: 6px; + border-color: #dcdfe3; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(251, 251, 252, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #5c616c; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #F5F6F7; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #dcdfe3; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #F5F6F7; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #5c616c; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(92, 97, 108, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: rgba(24, 27, 31, 0.97); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.87)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.52)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #ffffff); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #5c616c; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid rgba(31, 34, 39, 0.97); + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px rgba(54, 60, 68, 0.97); } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, rgba(31, 34, 39, 0.97)); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #dcdfe3; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #dcdfe3; + background-color: #F5F6F7; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #F5F6F7; + color: #5c616c; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: white; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction { + border-image: none; + border-color: transparent; + background-color: #F5F6F7; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #5c616c; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #ffffff; } + +GraniteWidgetsWelcome GtkLabel { + color: #a8abb1; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(92, 97, 108, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #898d95; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: rgba(31, 34, 39, 0.97); } + +GtkFileChooserDialog .dialog-action-box { + background-color: #F5F6F7; } + +NemoWindow GtkEventBox { + background-color: #F5F6F7; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, +NautilusWindow .sidebar, +NautilusWindow .source-list.sidebar.view, +NemoWindow .sidebar, +NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: rgba(60, 64, 73, 0.95); } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar row, + NautilusWindow .source-list.sidebar.view .view, + NautilusWindow .source-list.sidebar.view row, + NemoWindow .sidebar .view, + NemoWindow .sidebar row, + NemoWindow .source-list.sidebar.view .view, + NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar row.image, + NautilusWindow .source-list.sidebar.view .view.image, + NautilusWindow .source-list.sidebar.view row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar row.image, + NemoWindow .source-list.sidebar.view .view.image, + NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar row.cell:selected, + NautilusWindow .source-list.sidebar.view .view.cell:selected, + NautilusWindow .source-list.sidebar.view row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar row.cell:selected, + NemoWindow .source-list.sidebar.view .view.cell:selected, + NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, + NautilusWindow .sidebar.frame, + NautilusWindow .source-list.sidebar.view.frame, + NemoWindow .sidebar.frame, + NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow .source-list.sidebar.view .separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, + NautilusWindow .sidebar .scrollbar .trough, + NautilusWindow .source-list.sidebar.view .scrollbar .trough, + NemoWindow .sidebar .scrollbar .trough, + NemoWindow .source-list.sidebar.view .scrollbar .trough, + MarlinViewWindow .sidebar .scrollbar .trough, + MarlinViewWindow .source-list.sidebar.view .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, + NautilusWindow .sidebar .scrollbar .slider, + NautilusWindow .source-list.sidebar.view .scrollbar .slider, + NemoWindow .sidebar .scrollbar .slider, + NemoWindow .source-list.sidebar.view .scrollbar .slider, + MarlinViewWindow .sidebar .scrollbar .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar .slider:hover, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:hover, + NautilusWindow .sidebar .scrollbar .slider:hover, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:hover, + NemoWindow .sidebar .scrollbar .slider:hover, + NemoWindow .source-list.sidebar.view .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:prelight:active, + NautilusWindow .sidebar .scrollbar .slider:prelight:active, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + NemoWindow .sidebar .scrollbar .slider:prelight:active, + NemoWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:insensitive, + NautilusWindow .sidebar .scrollbar .slider:insensitive, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + NemoWindow .sidebar .scrollbar .slider:insensitive, + NemoWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #3c4049; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: rgba(60, 64, 73, 0.95); } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F5F6F7; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: rgba(60, 64, 73, 0.95); } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: rgba(31, 34, 39, 0.97); } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: rgba(47, 52, 59, 0.97); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: rgba(50, 56, 63, 0.97); } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: rgba(60, 64, 73, 0.95); } + .maximized .gedit-document-panel { + background-color: #3c4049; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: rgba(60, 64, 73, 0.95); } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #3c4049; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: rgba(44, 47, 53, 0.95); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: rgba(55, 59, 67, 0.95); + border-color: rgba(44, 47, 53, 0.95); } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #5c616c; +@define-color theme_text_color #5c616c; +@define-color theme_bg_color #F5F6F7; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #5c616c; +@define-color text_color #5c616c; +@define-color bg_color #F5F6F7; +@define-color base_color #ffffff; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #fbfbfb; +@define-color insensitive_fg_color rgba(92, 97, 108, 0.55); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #5c616c; +@define-color theme_unfocused_text_color #5c616c; +@define-color theme_unfocused_bg_color #F5F6F7; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.16/gtk-contained-darker.scss b/common/gtk-3.0/3.16/gtk-contained-darker.scss new file mode 100644 index 0000000..3fe2ffa --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-darker.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'light'; +$darker: 'true'; +$transparency: 'true'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-dark.css b/common/gtk-3.0/3.16/gtk-contained-solid-dark.css new file mode 100644 index 0000000..2ffc6e2 --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-solid-dark.css @@ -0,0 +1,3409 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #a9caf1; + -GtkWidget-visited-link-color: #7eafe9; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(211, 218, 227, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #D3DAE3; + background-color: rgba(68, 72, 82, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #444852; + color: #D3DAE3; } + .gtkstyle-fallback:prelight { + background-color: #5b606e; + color: #D3DAE3; } + .gtkstyle-fallback:active { + background-color: #2d3036; + color: #D3DAE3; } + .gtkstyle-fallback:insensitive { + background-color: #494d58; + color: rgba(211, 218, 227, 0.45); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #D3DAE3; + background-color: #383C45; } + .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { + color: rgba(211, 218, 227, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { + color: #D3DAE3; } +.label:insensitive { + color: rgba(211, 218, 227, 0.45); } + +.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #383C45; + border-top: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #2d3036; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #2d3036; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #3e424b; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #D3DAE3; + border-color: #2d3036; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #D3DAE3; + border-color: #5294E2; + background-color: #383c45; + background-image: linear-gradient(to bottom, #383c45); } + .entry:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(56, 60, 69, 0.55); + background-image: linear-gradient(to bottom, rgba(56, 60, 69, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #d4403a); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #cc6c38); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #b4bac3; } + .entry.image:hover { + color: #D3DAE3; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #343840; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child { + border-bottom-color: #343840; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #343840; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(68, 72, 82, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #5B5F69; + background-color: #5B5F69; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #707582; + background-color: #707582; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #4a4e56; + background-color: #4a4e56; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 2px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 2px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #4b4f59; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #a9caf1; } + *:link:visited, .button:visited { + color: #7eafe9; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #d5e5f8; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #a9caf1; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(45, 48, 54, 0.6); + border-style: none none none solid; + color: #cbd2db; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(211, 218, 227, 0.45); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(211, 218, 227, 0.45); + border-color: rgba(45, 48, 54, 0.55); + background-color: rgba(61, 65, 75, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(211, 218, 227, 0.45); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(211, 218, 227, 0.6); + background-color: #2d3036; + border-color: #2d3036; } + GtkComboBox.combobox-entry .button:hover { + background-color: #383c44; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #444852; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, #1f2227) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #3d414a; + border-style: solid; + border-color: #2d3036; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #444852; + border-style: solid; + border-color: #2d3036; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #3d414a; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #24272d; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: #2f343b; } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: #32383f; } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: #5294E2; + border-color: #4189df; + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: #5294E2; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + .header-bar.default-decoration { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f343b; + border-bottom-width: 0; } + .header-bar.default-decoration:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px #363c44; } + .csd .titlebar { + background-color: #2f343b; } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: #32383f; } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5B5F69; + background-color: #5B5F69; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #5B5F69; + outline-color: rgba(91, 95, 105, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #707582; + background-color: #707582; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #4a4e56; + background-color: #4a4e56; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(91, 95, 105, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(91, 95, 105, 0.65); + background-color: rgba(91, 95, 105, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #373b44); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #32373f); } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(211, 218, 227, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #a8c9f0; + border-top-color: rgba(211, 218, 227, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(211, 218, 227, 0.45); } + GtkTreeView.view:insensitive:selected { + color: #97beed; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #92b7e2; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #858b94; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #D3DAE3; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #2d3036; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #b4bac3; + background-color: #383C45; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #D3DAE3; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #383C45, inset -1px 0 #383C45; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #383C45; } + column-header .button:insensitive { + border-color: #444852; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #383C45; + border: 1px solid #2d3036; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #D3DAE3; + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(211, 218, 227, 0.45); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(56, 60, 69, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #474b54; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #474b54; } + .menu.button:hover, .popup.button:hover { + background-color: #474b54; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + padding: 2px; + border: 1px solid #212328; + border-radius: 3px; + background-clip: border-box; + background-color: #383C45; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(56, 60, 69, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #373b44; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #2d3036; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #3e424b; } + .notebook.header.frame { + border: 1px solid #2d3036; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #2d3036; } + .notebook.header.bottom { + box-shadow: inset 0 1px #2d3036; } + .notebook.header.right { + box-shadow: inset 1px 0 #2d3036; } + .notebook.header.left { + box-shadow: inset -1px 0 #2d3036; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(45, 48, 54, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(68, 72, 82, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #2d3036; + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.15); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(211, 218, 227, 0.45); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(211, 218, 227, 0.725); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #D3DAE3; } + .notebook tab .button { + padding: 0; + color: #a0a6b0; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(211, 218, 227, 0.45); } + .notebook.arrow:hover { + color: rgba(211, 218, 227, 0.725); } + .notebook.arrow:active { + color: #D3DAE3; } + .notebook.arrow:insensitive { + color: rgba(211, 218, 227, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 1; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #a8aeb7; + border: 1px solid rgba(0, 0, 0, 0.3); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #363a42; + border: 1px none #2d3036; } + .scrollbar .slider { + background-color: #7d828c; } + .scrollbar .slider:hover { + background-color: #6e737d; } + .scrollbar .slider:prelight:active { + background-color: #5294E2; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #2d3036 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #363a42; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(211, 218, 227, 0.45); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #383c45); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #3d414a); + border-color: #4b71a1; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #2f323a); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(47, 50, 58, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(211, 218, 227, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #2f323a; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(211, 218, 227, 0.2); + border-color: rgba(211, 218, 227, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #2d3036; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #383C45; + border-color: #2d3036; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(255, 255, 255, 0.03); } + .list-row.button:active { + color: #D3DAE3; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: white; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #D3DAE3; + border: 1px solid #2d3036; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #D3DAE3; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(211, 218, 227, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #D3DAE3; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f343b; + border-bottom: 1px solid #1f2227; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #444852; + border-color: #2d3036; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #2d3036; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #444852; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #D3DAE3; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #2d3036; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: #2d3036; + border-width: 1px; } + GtkPaned.wide.vertical .pane-separator { + border-style: solid none; } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #2d3036; + background-color: #3d414b; } + GtkColorSwatch#add-color-button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #D3DAE3; + outline-color: rgba(211, 218, 227, 0.3); + border-color: #5294E2; + background-color: #3d414b; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1f2227, 0 4px 8px 1px rgba(0, 0, 0, 0.55); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px #1f2227, 0 4px 5px 2px rgba(0, 0, 0, 0.55); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px #1f2227; } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #212429; } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.55); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f343b; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #383C45; + color: #D3DAE3; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #24272d; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #D3DAE3; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #8b919a; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dce9f9; } + +NautilusNotebook.notebook { + background-color: #383C45; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +.nautilus-circular-button { + border-radius: 50%; + outline-radius: 50%; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(211, 218, 227, 0.5); + border-color: rgba(180, 192, 207, 0.5); } + .disk-space-display.used { + background-color: rgba(82, 148, 226, 0.8); + border-color: rgba(38, 121, 219, 0.8); } + .disk-space-display.free { + background-color: #3d414a; + border-color: #26282e; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #2d3036; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: #24272d; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #383C45; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5294E2; } + +/* Only normal state is handle */ +.open-document-selector-name-label { + color: #D3DAE3; } + +/* Only normal state is handle */ +.open-document-selector-path-label { + color: #858b94; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #a0a6b0; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #D3DAE3; } + +.gedit-document-panel-dragged-row { + border: 1px solid #2d3036; + background-color: #2d3036; + color: #D3DAE3; } + +GeditStatusbar { + border-top: 1px solid #2d3036; + background-color: #444852; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #2d3036; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(211, 218, 227, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #494d58; + padding: 6px; + border-color: #2d3036; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(61, 65, 75, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #D3DAE3; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #444852; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #2d3036; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #444852; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #D3DAE3; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(211, 218, 227, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid #2d3036; + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #383C45); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #D3DAE3; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #24272d, inset 0 -1px #2f3239; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #D3DAE3; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid #1f2227; + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px #363c44; } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, #1f2227); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #2d3036; + border-right: 1px solid #2d3036; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #2d3036; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #2d3036; + background-color: #444852; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #444852; + color: #D3DAE3; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: #505460; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction { + border-image: none; + border-color: transparent; + background-color: #444852; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #D3DAE3; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #383C45; } + +GraniteWidgetsWelcome GtkLabel { + color: #8b919a; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(211, 218, 227, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #383C45); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #a8aeb7; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: #24272d; } + +GtkFileChooserDialog .dialog-action-box { + background-color: #444852; } + +NemoWindow GtkEventBox { + background-color: #444852; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog .sidebar, +NautilusWindow .sidebar, +NemoWindow .sidebar { + border-right: 1px solid #2e3138; } +GtkFileChooserDialog .sidebar:dir(rtl), +NautilusWindow .sidebar:dir(rtl), +NemoWindow .sidebar:dir(rtl) { + border-left: 1px solid #2e3138; } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, +NautilusWindow .sidebar, +NautilusWindow .source-list.sidebar.view, +NemoWindow .sidebar, +NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #454a54; } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar row, + NautilusWindow .source-list.sidebar.view .view, + NautilusWindow .source-list.sidebar.view row, + NemoWindow .sidebar .view, + NemoWindow .sidebar row, + NemoWindow .source-list.sidebar.view .view, + NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar row.image, + NautilusWindow .source-list.sidebar.view .view.image, + NautilusWindow .source-list.sidebar.view row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar row.image, + NemoWindow .source-list.sidebar.view .view.image, + NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar row.cell:selected, + NautilusWindow .source-list.sidebar.view .view.cell:selected, + NautilusWindow .source-list.sidebar.view row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar row.cell:selected, + NemoWindow .source-list.sidebar.view .view.cell:selected, + NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, + NautilusWindow .sidebar.frame, + NautilusWindow .source-list.sidebar.view.frame, + NemoWindow .sidebar.frame, + NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow .source-list.sidebar.view .separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, + NautilusWindow .sidebar .scrollbar .trough, + NautilusWindow .source-list.sidebar.view .scrollbar .trough, + NemoWindow .sidebar .scrollbar .trough, + NemoWindow .source-list.sidebar.view .scrollbar .trough, + MarlinViewWindow .sidebar .scrollbar .trough, + MarlinViewWindow .source-list.sidebar.view .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, + NautilusWindow .sidebar .scrollbar .slider, + NautilusWindow .source-list.sidebar.view .scrollbar .slider, + NemoWindow .sidebar .scrollbar .slider, + NemoWindow .source-list.sidebar.view .scrollbar .slider, + MarlinViewWindow .sidebar .scrollbar .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar .slider:hover, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:hover, + NautilusWindow .sidebar .scrollbar .slider:hover, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:hover, + NemoWindow .sidebar .scrollbar .slider:hover, + NemoWindow .source-list.sidebar.view .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:prelight:active, + NautilusWindow .sidebar .scrollbar .slider:prelight:active, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + NemoWindow .sidebar .scrollbar .slider:prelight:active, + NemoWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:insensitive, + NautilusWindow .sidebar .scrollbar .slider:insensitive, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + NemoWindow .sidebar .scrollbar .slider:insensitive, + NemoWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #454a54; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: #2e3138; } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #444852; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: #2e3138; } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: #24272d; } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: #32383f; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: #2f343b; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: #32383f; } + +.gedit-bottom-panel-paned { + background-color: #383C45; } + +.gedit-document-panel { + background-color: #454a54; } + .maximized .gedit-document-panel { + background-color: #454a54; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #454a54; } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #454a54; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #353941; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: #41454f; + border-color: #23252a; } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #D3DAE3; +@define-color theme_text_color #D3DAE3; +@define-color theme_bg_color #444852; +@define-color theme_base_color #383C45; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #D3DAE3; +@define-color text_color #D3DAE3; +@define-color bg_color #444852; +@define-color base_color #383C45; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #494d58; +@define-color insensitive_fg_color rgba(211, 218, 227, 0.45); +@define-color insensitive_base_color #383C45; +@define-color theme_unfocused_fg_color #D3DAE3; +@define-color theme_unfocused_text_color #D3DAE3; +@define-color theme_unfocused_bg_color #444852; +@define-color theme_unfocused_base_color #383C45; +@define-color borders #2d3036; +@define-color unfocused_borders #2d3036; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #383C45; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-dark.scss b/common/gtk-3.0/3.16/gtk-contained-solid-dark.scss new file mode 100644 index 0000000..c6fb71b --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-solid-dark.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'dark'; +$darker: 'false'; +$transparency: 'false'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-darker.css b/common/gtk-3.0/3.16/gtk-contained-solid-darker.css new file mode 100644 index 0000000..e4819fb --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-solid-darker.css @@ -0,0 +1,3401 @@ +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #FC4138; + -GtkPaned-handle-size: 1; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #2679db; + -GtkWidget-visited-link-color: #1e61b0; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(92, 97, 108, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #5c616c; + background-color: rgba(245, 246, 247, 0.999); } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F5F6F7; + color: #5c616c; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #5c616c; } + .gtkstyle-fallback:active { + background-color: #d9dde0; + color: #5c616c; } + .gtkstyle-fallback:insensitive { + background-color: #fbfbfb; + color: rgba(92, 97, 108, 0.55); } + .gtkstyle-fallback:selected { + background-color: #5294E2; + color: #ffffff; } + +.view { + color: #5c616c; + background-color: #ffffff; } + .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { + color: rgba(92, 97, 108, 0.55); } + .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { + color: rgba(255, 255, 255, 0.65); + text-shadow: none; } + +.rubberband { + border: 1px solid #5294E2; + background-color: rgba(82, 148, 226, 0.2); } + +.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { + color: #5c616c; } +.label:insensitive { + color: rgba(92, 97, 108, 0.55); } + +.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { + opacity: 0.55; } + +GtkAssistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #dcdfe3; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #dcdfe3; } +GtkAssistant.csd .sidebar { + border-top-style: none; } +GtkAssistant .sidebar .label { + padding: 6px 12px; } +GtkAssistant .sidebar .label.highlight { + background-color: #5294E2; + color: #ffffff; } + +GtkTextView { + background-color: #fafafb; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.popover.osd, .app-notification, +.app-notification.frame, .osd { + color: #A8ADB5; + border: none; + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; + outline-color: rgba(168, 173, 181, 0.3); + box-shadow: none; } + +/********************** + * Spinner Animations * + **********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 15px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .header-bar .entry { + padding: 6px 11px; } + .entry.image { + padding-left: 3px; + padding-right: 3px; } + .entry.flat, .entry.flat:focus { + padding: 2px; + color: #5c616c; + border-color: #cfd6e6; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); + border: none; + border-radius: 0; } + .entry:focus { + background-clip: border-box; + color: #5c616c; + border-color: #5294E2; + background-color: #ffffff; + background-image: linear-gradient(to bottom, #ffffff); } + .entry:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(255, 255, 255, 0.55); + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } + .entry:selected, .entry:selected:focus { + background-color: #5294E2; + color: #ffffff; } + .entry.progressbar { + margin: 2px 12px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #5294E2; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .linked > .entry:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .linked > .entry:first-child:dir(rtl) { + border-right-style: none; } + .linked > .entry:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + .linked > .entry:last-child:dir(rtl) { + border-left-style: solid; } + .entry.error { + color: white; + border-color: #FC4138; + background-image: linear-gradient(to bottom, #fc665f); } + .entry.error:focus { + background-image: linear-gradient(to bottom, #FC4138); + color: white; } + .entry.error:selected, .entry.error:selected:focus { + background-color: white; + color: #FC4138; } + .entry.warning { + color: white; + border-color: #F27835; + background-image: linear-gradient(to bottom, #f4935d); } + .entry.warning:focus { + background-image: linear-gradient(to bottom, #F27835); + color: white; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: white; + color: #F27835; } + .entry.image { + color: #7c8089; } + .entry.image:hover { + color: #5c616c; } + .entry.image:active { + color: #5294E2; } + .linked.vertical > .entry { + border-bottom-color: #f4f5f6; + box-shadow: none; } + .linked.vertical > .entry:focus { + border-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:first-child:focus { + border-bottom-color: #5294E2; + box-shadow: none; } + .linked.vertical > .entry:first-child:insensitive { + border-bottom-color: #f4f5f6; } + .linked.vertical > .entry:last-child { + border-bottom-color: rgba(0, 0, 0, 0.14); } + .linked.vertical > .entry:last-child:focus { + border-bottom-color: #5294E2; + box-shadow: 0 -1px 0 0 #5294E2; } + .linked.vertical > .entry:last-child:insensitive { + border-bottom-color: rgba(0, 0, 0, 0.14); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5294E2), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); } } +.button { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + border: 1px solid; + border-radius: 3px; + padding: 5px 8px; + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .header-bar .button { + padding: 6px 11px; } + .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(245, 246, 247, 0); + transition: none; } + .button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 350ms; } + .button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + background-clip: border-box; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; + transition-duration: 50ms; } + .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; } + .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .button:insensitive > GtkLabel { + color: inherit; } + .button:insensitive:active, .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { + color: inherit; } + .button.osd { + outline-color: rgba(168, 173, 181, 0.3); + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + background-color: rgba(60, 64, 73, 0.95); } + .button.osd.image-button { + padding: 10px; } + .button.osd:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-color: rgba(168, 173, 181, 0.3); } + .button.osd:active, .button.osd:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.osd:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: none; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:dir(rtl) { + border-left-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button:active, .osd .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .osd .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + .osd .button.flat:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .osd .button.flat:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); + background-image: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .button.suggested-action { + color: #ffffff; + border-color: #9EA4B5; + background-color: #9EA4B5; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; } + .button.suggested-action:hover { + color: #ffffff; + border-color: #b8bcc9; + background-color: #b8bcc9; } + .button.suggested-action:active, .button.suggested-action:checked { + color: #ffffff; + border-color: #8a91a6; + background-color: #8a91a6; } + .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } + .button.destructive-action { + color: #ffffff; + border-color: #FA4349; + background-color: #FA4349; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; } + .button.destructive-action:hover { + color: #ffffff; + border-color: #fb7074; + background-color: #fb7074; } + .button.destructive-action:active, .button.destructive-action:checked { + color: #ffffff; + border-color: #f92027; + background-color: #f92027; } + .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } + .button.image-button { + padding: 8px; } + .header-bar .button.image-button { + padding: 6px 9px; } + .button.text-button { + padding-left: 16px; + padding-right: 16px; } + .header-bar .button.text-button { + padding: 6px 16px; } + .button.text-button.image-button { + padding: 4px 8px 5px; } + .button.text-button.image-button GtkLabel:first-child { + padding-left: 8px; } + .button.text-button.image-button GtkLabel:last-child { + padding-right: 8px; } + .header-bar .button.text-button.image-button { + padding: 6px 16px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 5px; + padding-bottom: 5px; } + .stack-switcher > .button .header-bar > GtkLabel { + padding: 6px 10px; } + .stack-switcher > .button.text-button { + padding: 5px 10px; } + .header-bar .stack-switcher > .button.text-button { + padding: 6px 10px; } + .stack-switcher > .button.image-button { + padding: 1px 3px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5294E2), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { + background-position: left 3px, left 4px; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + +.inline-toolbar GtkToolButton > .button { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .inline-toolbar GtkToolButton > .button:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { + color: inherit; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(82, 148, 226, 0.55); + background-color: rgba(82, 148, 226, 0.55); + opacity: 0.6; } + .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { + color: inherit; } + +.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { + border-radius: 0; + border-left-style: none; + border-right-style: none; } + .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { + box-shadow: inset 1px 0 #5294E2, inset -1px 0 #5294E2; } + .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .linked > .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), + .primary-toolbar .linked.path-bar > .button:dir(rtl), + .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { + border-radius: 0; } + +.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, +.primary-toolbar .linked.path-bar > .button:first-child, +.header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, + .primary-toolbar .linked.path-bar > .button:first-child:hover, + .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { + box-shadow: inset -1px 0 #5294E2; } +.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, +.primary-toolbar .linked.path-bar > .button:last-child, +.header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { + border-radius: 0 3px 3px 0; + border-right-style: solid; } + .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, + .primary-toolbar .linked.path-bar > .button:last-child:hover, + .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { + box-shadow: inset 1px 0 #5294E2; } + .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), + .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), + .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { + border-bottom-left-radius: 0; } +.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, +.primary-toolbar .linked.path-bar > .button:only-child, +.header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, + .primary-toolbar .linked.path-bar > .button:only-child:hover, + .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { + box-shadow: none; } + +.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, +.linked.vertical > GtkComboBox > .button { + border-style: solid; + border-bottom-style: none; + border-top-style: none; + border-radius: 0; } + .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, + .linked.vertical > GtkComboBox > .button:hover { + box-shadow: inset 0 1px #5294E2, inset 0 -1px #5294E2; } + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, +.linked.vertical > GtkComboBox:first-child > .button { + border-radius: 3px 3px 0 0; + border-top-style: solid; } + .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, + .linked.vertical > GtkComboBox:first-child > .button:hover { + box-shadow: inset 0 -1px #5294E2; } +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, +.linked.vertical > GtkComboBox:last-child > .button { + border-radius: 0 0 3px 3px; + border-bottom-style: solid; } + .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, + .linked.vertical > GtkComboBox:last-child > .button:hover { + box-shadow: inset 0 1px #5294E2; } +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, +.linked.vertical > GtkComboBox:only-child > .button { + border-radius: 3px; + border-style: solid; } + .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, + .linked.vertical > GtkComboBox:only-child > .button:hover { + box-shadow: none; } + +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + transition: none; + outline-offset: -1px; + border-radius: 2px; } + .menuitem.button.flat:hover { + background-color: #edeef0; } + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #2679db; } + *:link:visited, .button:visited { + color: #1e61b0; } + *:selected *:link:visited, *:selected .button:visited { + color: #b9d4f3; } + *:link:hover, .button:hover:link, .button:hover:visited { + color: #5294e2; } + *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { + color: #edf4fc; } + *:link:active, .button:active:link, .button:active:visited { + color: #2679db; } + *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { + color: #dce9f9; } + *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #dce9f9; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton { + border-radius: 3px; } + .spinbutton .button { + background-image: none; + border: 1px solid rgba(220, 223, 227, 0.6); + border-style: none none none solid; + color: #646873; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:first-child { + color: red; } + .spinbutton .button:hover { + color: #5294E2; } + .spinbutton .button:insensitive { + color: rgba(92, 97, 108, 0.55); } + .spinbutton .button:active { + background-color: #5294E2; + color: #ffffff; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: rgba(92, 97, 108, 0.55); + border-color: rgba(207, 214, 230, 0.55); + background-color: rgba(251, 251, 252, 0.55); } + .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { + color: inherit; } + .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 5px; + padding-right: 5px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + border-radius: 2px 2px 0 0; + border-style: solid solid none solid; } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + border-radius: 0 0 2px 2px; + border-style: none solid solid solid; } + GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #5294E2; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; } + GtkComboBox > .button { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: rgba(92, 97, 108, 0.55); } + GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry { + border-right-style: none; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-left-style: none; } + GtkComboBox.combobox-entry .button { + color: rgba(92, 97, 108, 0.6); + background-color: #cfd6e6; + border-color: #cfd6e6; } + GtkComboBox.combobox-entry .button:hover { + background-color: #e0e4ef; + border-color: #5294E2; + box-shadow: -1px 0 #5294E2; } + GtkComboBox.combobox-entry .button:active, GtkComboBox.combobox-entry .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GtkComboBox.combobox-entry .button:insensitive { + opacity: 0.5; } + +/************ + * Toolbars * + ************/ +.toolbar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F5F6F7; } + .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { + padding: 7px; + border: none; + border-radius: 4px; + background-color: rgba(60, 64, 73, 0.95); } + +.primary-toolbar { + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: none; + border-width: 0 0 1px 0; + border-style: solid; + border-image: linear-gradient(to bottom, #2f343b, #1f2227) 1 0 1 0; } + .primary-toolbar:backdrop { + background-color: #32383f; } + +.inline-toolbar { + background-color: #eceef0; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 3px 3px; } + +.search-bar { + background-color: #F5F6F7; + border-style: solid; + border-color: #dcdfe3; + border-width: 0 0 1px; + padding: 3px; } + +.action-bar { + background-color: #eceef0; } + +/*************** + * Header bars * + ***************/ +.header-bar { + padding: 7px 7px 6px 7px; + border-width: 0 0 1px; + border-style: solid; + border-radius: 0; + border-color: #1f2227; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; } + .csd .header-bar { + background-color: #2f343b; } + .header-bar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .header-bar:backdrop { + background-color: #32383f; } + .header-bar .title { + padding: 0px 12px; } + .header-bar .subtitle { + font-size: smaller; + padding: 0 12px; } + .header-bar.selection-mode { + color: #ffffff; + background-color: #5294E2; + border-color: #4189df; + box-shadow: none; } + .header-bar.selection-mode:backdrop { + background-color: #5294E2; + color: rgba(255, 255, 255, 0.6); } + .header-bar.selection-mode .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.05); + border-color: rgba(255, 255, 255, 0.5); } + .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(0, 0, 0, 0.2); } + .header-bar.selection-mode .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); } + .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.15); + border-color: rgba(0, 0, 0, 0.15); } + .header-bar.selection-mode .selection-menu { + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + .maximized .header-bar.selection-mode { + background-color: #5294e2; } + .tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop { + border-radius: 0; } + .maximized .header-bar { + background-color: #2f343b; } + .maximized .header-bar:backdrop { + background-color: #32383f; } + .header-bar.default-decoration { + padding-top: 5px; + padding-bottom: 5px; + background-color: #2f343b; + border-bottom-width: 0; } + .header-bar.default-decoration:backdrop { + background-color: #32383f; } + +.titlebar { + padding-left: 7px; + padding-right: 7px; + border-radius: 3px 3px 0 0; + color: rgba(207, 218, 231, 0.8); + background-color: #2f343b; + box-shadow: inset 0 1px #363c44; } + .csd .titlebar { + background-color: #2f343b; } + .titlebar:backdrop { + color: rgba(207, 218, 231, 0.5); + background-color: #32383f; } + .csd .titlebar:backdrop { + background-color: #32383f; } + .maximized .titlebar { + background-color: #2f343b; } + .maximized .titlebar:backdrop { + background-color: #32383f; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } + +.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-width: 0 1px; + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { + opacity: 0.6; } + +.primary-toolbar .entry, .header-bar .entry { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { + color: inherit; } + .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { + opacity: 0.85; } + .primary-toolbar .entry:focus, .header-bar .entry:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } + .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { + background-color: #ffffff; + color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } +.primary-toolbar .button, .header-bar .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + outline-offset: -3px; + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:backdrop, .header-bar .button:backdrop { + opacity: 0.7; } + .primary-toolbar .button:hover, .header-bar .button:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .primary-toolbar .button:insensitive, .header-bar .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-color: rgba(47, 52, 59, 0); + border-color: rgba(47, 52, 59, 0); } + .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { + color: inherit; } + .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.75); + border-color: rgba(82, 148, 226, 0.65); + background-color: rgba(82, 148, 226, 0.65); } +.primary-toolbar .linked > .button, .header-bar .linked > .button { + border-radius: 3px; + border-style: solid; } +.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { + box-shadow: none; } +.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, +.primary-toolbar .linked.path-bar > .button, +.header-bar .linked.path-bar > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, + .primary-toolbar .linked.path-bar > .button:hover, + .header-bar .linked.path-bar > .button:hover { + border-color: #5294E2; } + .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, + .primary-toolbar .linked.path-bar > .button:active, + .header-bar .linked.path-bar > .button:active, + .primary-toolbar .linked.path-bar > .button:checked, + .header-bar .linked.path-bar > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } +.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #9EA4B5; + background-color: #9EA4B5; } + .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #9EA4B5; + outline-color: rgba(158, 164, 181, 0.3); } + .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #b8bcc9; + background-color: #b8bcc9; } + .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #8a91a6; + background-color: #8a91a6; } + .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive { + color: rgba(158, 164, 181, 0.45); } + .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(158, 164, 181, 0.65); + background-color: rgba(158, 164, 181, 0.65); } +.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, +.primary-toolbar .button.suggested-action:backdrop, +.header-bar .button.suggested-action:backdrop { + opacity: 0.8; } +.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #FA4349; + background-color: #FA4349; } + .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #FA4349; + outline-color: rgba(250, 67, 73, 0.3); } + .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #fb7074; + background-color: #fb7074; } + .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #f92027; + background-color: #f92027; } + .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive { + color: rgba(250, 67, 73, 0.45); } + .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { + color: rgba(255, 255, 255, 0.6); + border-color: rgba(250, 67, 73, 0.65); + background-color: rgba(250, 67, 73, 0.65); } +.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, +.primary-toolbar .button.destructive-action:backdrop, +.header-bar .button.destructive-action:backdrop { + opacity: 0.8; } +.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { + color: #ffffff; } +.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { + color: rgba(207, 218, 231, 0.8); } + .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; } + .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { + color: rgba(207, 218, 231, 0.5); } + .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { + background-color: rgba(0, 0, 0, 0.1); } +.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { + color: rgba(207, 218, 231, 0.2); } +.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { + color: inherit; } + .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } +.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { + opacity: 0.75; } +.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { + background-color: rgba(207, 218, 231, 0.15); } +.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { + opacity: 0.75; } +.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { + opacity: 0.75; } +.primary-toolbar .scale.trough, .header-bar .scale.trough { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } +.primary-toolbar .scale.slider, .header-bar .scale.slider { + background-image: linear-gradient(to bottom, #262a30); } + .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #2d3138); + border-color: #3d5a7d; } + +/************ + * Pathbars * + ************/ +.path-bar .button:first-child { + padding-left: 8px; } +.path-bar .button:last-child { + padding-right: 8px; } +.path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } +.path-bar .button GtkLabel:last-child { + padding-left: 2px; } +.path-bar .button GtkLabel:first-child { + padding-right: 2px; } +.path-bar .button GtkLabel:only-child { + padding-right: 0; + padding-left: 0; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: rgba(92, 97, 108, 0.15); + border-top-color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:selected { + border-radius: 0; + border-left-color: #a8c9f0; + border-top-color: rgba(92, 97, 108, 0.1); } + GtkTreeView.view:insensitive { + color: rgba(92, 97, 108, 0.55); } + GtkTreeView.view:insensitive:selected { + color: #97beed; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #577aa7; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #adb0b5; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #5c616c; } + GtkTreeView.view.expander:selected { + color: #cbdef6; } + GtkTreeView.view.expander:selected:hover { + color: #ffffff; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.progressbar { + color: #ffffff; + border-radius: 3px; } + GtkTreeView.view.progressbar:selected { + color: #5294E2; + box-shadow: none; + background-color: #ffffff; } + GtkTreeView.view.trough, GtkTreeView.view.trough:selected { + background-color: #cfd6e6; + border-radius: 3px; + border-width: 0; } + +column-header .button { + color: #7c8089; + background-color: #ffffff; } + column-header .button:hover { + color: #5294E2; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #5c616c; + transition: none; } +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; + border-image: none; } + +column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { + transition: none; + color: #5294E2; + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #ffffff, inset -1px 0 #ffffff; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + background-image: none; + border-style: none solid none none; + border-radius: 0; + border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } + column-header .button:active { + background-color: #ffffff; } + column-header .button:insensitive { + border-color: #F5F6F7; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + background-color: #2f343b; + color: rgba(207, 218, 231, 0.8); } + .menubar:backdrop { + background-color: #32383f; } + .menubar > .menuitem { + padding: 6px 8px; + border: solid transparent; + border-width: 0; } + .menubar > .menuitem:hover { + background-color: #5294E2; + color: #ffffff; } + .menubar > .menuitem:insensitive { + color: rgba(207, 218, 231, 0.2); + border-color: transparent; } + +.menu, .popup { + margin: 4px; + padding: 0; + border-radius: 0; + background-color: #ffffff; + border: 1px solid #dcdfe3; } + .csd .menu, .csd .popup { + padding: 4px 0px; + border-radius: 3px; + border: none; } + .menu .menuitem, .popup .menuitem { + padding: 5px; } + .menu .menuitem:hover, .popup .menuitem:hover { + color: #5c616c; + background-color: rgba(0, 0, 0, 0.04); + border: solid rgba(0, 0, 0, 0.08); + border-width: 1px 0 1px 0; } + .menu .menuitem:insensitive, .popup .menuitem:insensitive { + color: rgba(92, 97, 108, 0.55); } + .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { + color: rgba(255, 255, 255, 0); } + .menu .menuitem.arrow, .popup .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button, .popup.button { + border-style: none; + border-radius: 0; } + .menu.button.top, .popup.button.top { + border-bottom: 1px solid #eeeff0; } + .menu.button.bottom, .popup.button.bottom { + border-top: 1px solid #eeeff0; } + .menu.button:hover, .popup.button:hover { + background-color: #eeeff0; } + .menu.button:insensitive, .popup.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/************ + * Popovers * + ************/ +.popover { + padding: 2px; + border: 1px solid #cdd2d7; + border-radius: 3px; + background-clip: border-box; + background-color: #ffffff; + box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } + .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { + color: rgba(255, 255, 255, 0); } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, .popover.osd > .toolbar, .popover.osd > .inline-toolbar { + border-style: none; + background-color: transparent; } + +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top, + .cursor-handle.top { + -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } + .entry.cursor-handle.bottom, + .cursor-handle.bottom { + -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #fefefe; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook.frame { + border: 1px solid #dcdfe3; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.header { + background-color: #fafafb; } + .notebook.header.frame { + border: 1px solid #dcdfe3; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.top { + box-shadow: inset 0 -1px #eaecee; } + .notebook.header.bottom { + box-shadow: inset 0 1px #eaecee; } + .notebook.header.right { + box-shadow: inset 1px 0 #eaecee; } + .notebook.header.left { + box-shadow: inset -1px 0 #eaecee; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-color: transparent; + outline-offset: 0; } + .notebook tab.top, .notebook tab.bottom { + padding: 5px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; } + .notebook tab.reorderable-page.top, .notebook tab.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-top-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { + border-width: 1px; + border-top-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom, .notebook tab.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-bottom-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { + border-width: 1px; + border-bottom-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right, .notebook tab.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-right-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { + border-width: 1px; + border-right-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left, .notebook tab.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { + border-color: rgba(220, 223, 227, 0.5); + border-width: 1px; + border-left-width: 0; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { + border-width: 1px; + border-left-width: 0; + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { + background-color: rgba(0, 0, 0, 0.035); } + .notebook tab GtkLabel { + padding: 0 2px; + color: rgba(92, 97, 108, 0.55); } + .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { + color: rgba(92, 97, 108, 0.775); } + .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { + color: #5c616c; } + .notebook tab .button { + padding: 0; + color: #91959c; } + .notebook tab .button:hover { + color: #ff4d4d; } + .notebook tab .button:active { + color: #5294E2; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: rgba(92, 97, 108, 0.55); } + .notebook.arrow:hover { + color: rgba(92, 97, 108, 0.775); } + .notebook.arrow:active { + color: #5c616c; } + .notebook.arrow:insensitive { + color: rgba(92, 97, 108, 0); } + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 1; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 6px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #898d95; + border: 1px solid rgba(255, 255, 255, 0.6); + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.99; } + .scrollbar .trough { + background-color: #fcfcfc; + border: 1px none #dcdfe3; } + .scrollbar .slider { + background-color: #b7babf; } + .scrollbar .slider:hover { + background-color: #c7c9cd; } + .scrollbar .slider:prelight:active { + background-color: #5294E2; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #fcfcfc; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + +/********** + * Switch * + **********/ +GtkSwitch { + font: 1; + -GtkSwitch-slider-width: 41; + outline-color: transparent; } + GtkSwitch.trough, GtkSwitch.slider { + background-size: 52px 24px; + background-repeat: no-repeat; + background-position: right center; + color: transparent; + border-color: transparent; + border-image: none; + border-style: none; + box-shadow: none; } + GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { + background-position: left center; } + +GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } + +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +GtkTreeView.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +GtkTreeView.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +GtkTreeView.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +GtkTreeView.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +GtkTreeView.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +GtkTreeView.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +GtkTreeView.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +GtkTreeView.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +GtkTreeView.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +GtkTreeView.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +GtkTreeView.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +GtkTreeView.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } + +GtkIconView.view.check, +GtkFlowBox.view.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +GtkIconView.view.check:checked, +GtkFlowBox.view.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: rgba(92, 97, 108, 0.55); } + +/************ + * GtkScale * + ************/ +.scale { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 15; + -GtkRange-trough-border: 0; + outline-offset: -1px; + outline-radius: 2px; } + .scale.trough { + margin: 5px; } + .scale.fine-tune.trough { + border-radius: 5px; + margin: 3px; } + .scale.slider { + background-clip: border-box; + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid #5294E2; + border-radius: 50%; + box-shadow: none; } + .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); + border-color: #5294E2; } + .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } + .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .osd .scale.slider { + background-image: linear-gradient(to bottom, rgba(60, 64, 73, 0.95)); + border-color: #5294E2; } + .osd .scale.slider:hover { + background-image: linear-gradient(to bottom, #5294E2); } + .osd .scale.slider:active { + background-image: linear-gradient(to bottom, #2679db); + border-color: #2679db; } + .list-row:selected .scale.slider { + background-image: linear-gradient(to bottom, #ffffff); + border-color: #ffffff; } + .list-row:selected .scale.slider:hover { + background-image: linear-gradient(to bottom, #e5eefa); + border-color: #e5eefa; } + .list-row:selected .scale.slider:active { + background-image: linear-gradient(to bottom, #a8c9f0); + border-color: #a8c9f0; } + .list-row:selected .scale.slider:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); + border-color: #b1cef1; } + .scale.trough { + border: none; + border-radius: 2.5px; + background-image: linear-gradient(to bottom, #cfd6e6); } + .scale.trough.highlight { + background-image: linear-gradient(to bottom, #5294E2); } + .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, rgba(82, 148, 226, 0.55)); } + .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(207, 214, 230, 0.55)); } + .osd .scale.trough { + background-image: linear-gradient(to bottom, rgba(76, 81, 93, 0.95)); + outline-color: rgba(168, 173, 181, 0.2); } + .osd .scale.trough.highlight { + background-image: none; + background-image: linear-gradient(to bottom, #5294E2); } + .list-row:selected .scale.trough { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } + .list-row:selected .scale.trough.highlight { + background-image: linear-gradient(to bottom, #ffffff); } + .list-row:selected .scale.trough.highlight:insensitive { + background-image: linear-gradient(to bottom, #b1cef1); } + .list-row:selected .scale.trough:insensitive { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + padding: 0; + font-size: smaller; + color: rgba(92, 97, 108, 0.7); } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + +.progressbar { + background-color: #5294E2; + border: none; + border-radius: 3px; + box-shadow: none; } + .progressbar.osd { + background-color: #5294E2; } + +.osd .scale.progressbar { + background-color: #5294E2; } + +GtkProgressBar.trough, .level-bar.trough { + border: none; + border-radius: 3px; + background-color: #cfd6e6; } + GtkProgressBar.trough.osd, .osd.level-bar.trough { + border-style: none; + background-color: transparent; + box-shadow: none; } + +/************* + * Level Bar * + *************/ +GtkLevelBar { + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + +GtkLevelBar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + +.level-bar.trough { + padding: 3px; + border-radius: 4px; } +.level-bar.fill-block { + border: 1px solid #5294E2; + background-color: #5294E2; + border-radius: 2px; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + border-color: #73d216; + background-color: #73d216; } + .level-bar.fill-block.level-low { + border-color: #F27835; + background-color: #F27835; } + .level-bar.fill-block.empty-fill-block { + background-color: rgba(92, 97, 108, 0.2); + border-color: rgba(92, 97, 108, 0.2); } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #dcdfe3; + padding: 0; } + .frame.flat { + border-style: none; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator, GtkPlacesSidebar.sidebar .view.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, GtkFontButton .separator, GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFontButton .view.separator, GtkFileChooserButton .separator.vertical, GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .vertical.view.separator, GtkFontButton .separator.vertical, GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkFontButton .vertical.view.separator { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list, .list-row { + background-color: #ffffff; + border-color: #dcdfe3; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.button { + background-color: transparent; + border-style: none; + border-radius: 0; + box-shadow: none; } + .list-row.button:hover { + background-color: rgba(0, 0, 0, 0.05); } + .list-row.button:active { + color: #5c616c; } + .list-row.button:selected:active { + color: #ffffff; } + .list-row.button:selected:hover { + background-color: #4985cb; } + .list-row.button:selected:insensitive { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(82, 148, 226, 0.7); } + .list-row.button:selected:insensitive .label { + color: inherit; } + +.list-row, list-row.button { + transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover, list-row.button:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } + +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #aaaeb7; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #5c616c; + border: 1px solid #dcdfe3; + border-radius: 3px; + padding: 2px; } + GtkCalendar:selected { + background-color: #5294E2; + color: #ffffff; + border-radius: 1.5px; } + GtkCalendar.header { + color: #5c616c; + border: none; + border-radius: 0; } + GtkCalendar.button, GtkCalendar.button:focus { + color: rgba(92, 97, 108, 0.45); + box-shadow: none; + border: none; } + GtkCalendar.button:hover, GtkCalendar.button:focus:hover { + color: #5c616c; } + GtkCalendar.highlight { + color: alpha(currentColor,0.55); } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog { + -GtkDialog-button-spacing: 0; } + .message-dialog .titlebar { + background-color: #2f343b; + border-bottom: 1px solid #1f2227; } + .message-dialog.csd.background { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border: none; } + .message-dialog.csd .dialog-action-area .button { + padding: 8px; + border-radius: 0; } + .message-dialog.csd .dialog-action-area .button:focus { + color: #5294E2; } + .message-dialog.csd .dialog-action-area .button:focus:active, .message-dialog.csd .dialog-action-area .button:focus:checked { + color: #ffffff; } + .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive { + border-right-style: none; + border-bottom-style: none; } + .message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 3px; } + .message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 3px; } + +GtkFileChooserDialog .search-bar { + background-color: #F5F6F7; + border-color: #dcdfe3; + box-shadow: none; } +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #dcdfe3; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #F5F6F7; } + .sidebar:selected { + background-color: #5294E2; } + +GtkPlacesSidebar.sidebar .view { + color: #5c616c; + background-color: transparent; } + GtkPlacesSidebar.sidebar .view:selected { + color: #ffffff; + background-color: #5294E2; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > GtkLabel { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > GtkLabel { + background-size: 6px 6px, 0 0; } + +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #dcdfe3; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: #dcdfe3; + border-width: 1px; } + GtkPaned.wide.vertical .pane-separator { + border-style: solid none; } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +.info, +.question, +.warning, +.error, +GtkInfoBar { + background-color: #5294E2; + color: #ffffff; } + +.list-row:selected .button, GtkInfoBar .button { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.5); } + .list-row:selected .flat.button, GtkInfoBar .flat.button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #ffffff; + background-color: rgba(255, 255, 255, 0); } + .list-row:selected .button:hover, GtkInfoBar .button:hover { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + background-color: rgba(0, 0, 0, 0.2); + border-color: rgba(255, 255, 255, 0.8); } + .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0.2); } + .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { + color: rgba(255, 255, 255, 0.4); + background-color: rgba(0, 0, 0, 0.1); + border-color: rgba(255, 255, 255, 0.2); } + +/************ + * Tooltips * + ************/ +.tooltip { + color: #edf5fb; + border-radius: 2px; } + .tooltip.background { + background-color: rgba(60, 64, 73, 0.95); + background-clip: padding-box; } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +:selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #ffffff; } +GtkColorSwatch.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } +GtkColorSwatch.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } +GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { + border-radius: 3px; } +GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } +GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; } +GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(0, 0, 0, 0.3); } +GtkColorSwatch.color-light { + color: black; + outline-color: rgba(255, 255, 255, 0.5); } +GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.15); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.25); } +GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #cfd6e6; + background-color: #fbfbfc; } + GtkColorSwatch#add-color-button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; } + +GtkColorButton.button { + padding: 4px; } + GtkColorButton.button GtkColorSwatch { + border-radius: 0; } + +/******** + * Misc * + ********/ +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #5294E2; + background-color: #fbfbfc; } + +GtkVolumeButton.button { + padding: 8px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 3px 3px 0 0; + border-width: 0px; + box-shadow: 0 0 0 1px #1f2227, 0 4px 8px 1px rgba(0, 0, 0, 0.25); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 0 0 1px #1f2227, 0 4px 5px 2px rgba(0, 0, 0, 0.25); } + .window-frame.tiled { + border-radius: 0; } + .window-frame.ssd { + border-radius: 3px 3px 0 0; + box-shadow: 0 0 0 1px #1f2227; } + .window-frame.ssd.maximized { + border-radius: 0; } + .window-frame.csd.popup, .window-frame.csd.menu { + border-radius: 3px; + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.tooltip { + border-radius: 2px; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + .window-frame.csd.message-dialog { + border-radius: 3px; + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); } + .window-frame.solid-csd { + border-radius: 0; + margin: 1px; + background-color: #2f343b; + box-shadow: none; } + +.header-bar.default-decoration .button.titlebutton, +.titlebar.default-decoration .button.titlebutton { + padding-top: 0px; + padding-bottom: 0px; } +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + padding: 7px 4px; + border-color: transparent; + background-color: transparent; + background-image: none; + background-color: rgba(47, 52, 59, 0); + border-width: 0; } + .header-bar .button.titlebutton:hover, + .titlebar .button.titlebutton:hover { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, + .titlebar .button.titlebutton:active, + .titlebar .button.titlebutton:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.close, + .titlebar .button.titlebutton.maximize, + .titlebar .button.titlebutton.minimize { + color: transparent; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; } + .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + opacity: 1; } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } + .header-bar .button.titlebutton.maximize, + .titlebar .button.titlebutton.maximize { + background-image: -gtk-scaled(url("assets/titlebutton-max-dark.png"), url("assets/titlebutton-max-dark@2.png")); } + .header-bar .button.titlebutton.maximize:backdrop, + .titlebar .button.titlebutton.maximize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-max-backdrop-dark.png"), url("assets/titlebutton-max-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.maximize:hover, + .titlebar .button.titlebutton.maximize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-max-hover-dark.png"), url("assets/titlebutton-max-hover-dark@2.png")); } + .header-bar .button.titlebutton.maximize:active, + .titlebar .button.titlebutton.maximize:active { + background-image: -gtk-scaled(url("assets/titlebutton-max-active-dark.png"), url("assets/titlebutton-max-active-dark@2.png")); } + .header-bar .button.titlebutton.minimize, + .titlebar .button.titlebutton.minimize { + background-image: -gtk-scaled(url("assets/titlebutton-min-dark.png"), url("assets/titlebutton-min-dark@2.png")); } + .header-bar .button.titlebutton.minimize:backdrop, + .titlebar .button.titlebutton.minimize:backdrop { + background-image: -gtk-scaled(url("assets/titlebutton-min-backdrop-dark.png"), url("assets/titlebutton-min-backdrop-dark@2.png")); } + .header-bar .button.titlebutton.minimize:hover, + .titlebar .button.titlebutton.minimize:hover { + background-image: -gtk-scaled(url("assets/titlebutton-min-hover-dark.png"), url("assets/titlebutton-min-hover-dark@2.png")); } + .header-bar .button.titlebutton.minimize:active, + .titlebar .button.titlebutton.minimize:active { + background-image: -gtk-scaled(url("assets/titlebutton-min-active-dark.png"), url("assets/titlebutton-min-active-dark@2.png")); } + +.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:selected, .menuitem.button.flat:checked, .menuitem.button.flat:active, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected:focus { + background-image: none; + background-color: #5294E2; + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); } + +/* Decouple the font of context menus from their entry/textview */ +.touch-selection, +.context-menu { + font: initial; } + +.monospace { + font: Monospace; } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 100% 60%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(82, 148, 226, 0.2)), to(rgba(82, 148, 226, 0))); + background-size: 60% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +GtkHTML { + background-color: #ffffff; + color: #5c616c; } + GtkHTML:active { + color: #ffffff; + background-color: #5294E2; } + +SushiFontWidget { + padding: 6px 12px; } + +TerminalWindow .background { + background-color: transparent; } +TerminalWindow .notebook tab.reorderable-page, +TerminalWindow .notebook tab.reorderable-page:hover { + padding-top: 4px; + padding-bottom: 4px; } +TerminalWindow .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } +TerminalWindow .notebook tab .active-page GtkLabel { + color: rgba(207, 218, 231, 0.8); } + TerminalWindow .notebook tab .active-page GtkLabel:backdrop { + color: rgba(207, 218, 231, 0.5); } +TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { + background-color: #2f343b; + border-color: #1f2227; } + TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { + background-color: #32383f; } +TerminalWindow .scrollbar.vertical .slider { + margin-left: 3px; } +TerminalWindow .scrollbar.trough { + border-width: 0; } + +NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { + border-radius: 3px; } + +.nautilus-canvas-item { + border-radius: 2px; } + +.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { + color: #ffffff; + text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } + .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { + color: #5c616c; } + .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { + color: #ffffff; } + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: #a8abb1; } + .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, + .nautilus-list-dim-label:selected, + .nautilus-list-dim-label:selected:focus { + color: #dce9f9; } + +NautilusNotebook.notebook { + background-color: #ffffff; } + NautilusNotebook.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; } + +NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { + padding: 5px; + box-shadow: none; } + +.nautilus-circular-button { + border-radius: 50%; + outline-radius: 50%; } + +.disk-space-display { + border-style: solid; + border-width: 1px; } + .disk-space-display.unknown { + background-color: rgba(92, 97, 108, 0.5); + border-color: rgba(69, 72, 80, 0.5); } + .disk-space-display.used { + background-color: rgba(82, 148, 226, 0.8); + border-color: rgba(38, 121, 219, 0.8); } + .disk-space-display.free { + background-color: #eceef0; + border-color: #d0d5da; } + +NemoWindow .sidebar .frame { + border-width: 0; } + +NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { + color: #dcdfe3; } + +NemoWindow .primary-toolbar NemoPathBar.linked > .button { + color: rgba(207, 218, 231, 0.8); + outline-color: rgba(207, 218, 231, 0.1); + border-color: #1d2024; + background-color: rgba(40, 44, 50, 0.9); } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { + border-color: #5294E2; } + NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + +.gedit-headerbar-paned { + color: #1f2227; } + +.open-document-selector-treeview.view { + padding: 3px 6px 3px 6px; + border-color: #ffffff; } + .open-document-selector-treeview.view:prelight { + background-color: rgba(0, 0, 0, 0.05); } + .open-document-selector-treeview.view:prelight:selected { + color: #ffffff; + background-color: #5294E2; } + +/* Only normal state is handle */ +.open-document-selector-name-label { + color: #5c616c; } + +/* Only normal state is handle */ +.open-document-selector-path-label { + color: #adb0b5; + font-size: smaller; } + .open-document-selector-path-label:selected { + color: rgba(255, 255, 255, 0.9); } + +.gedit-document-panel .list-row .button { + color: transparent; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; + padding: 4px; } + .gedit-document-panel .list-row .button GtkImage { + color: inherit; } +.gedit-document-panel .prelight-row .button { + color: #91959c; } +.gedit-document-panel .list-row .button:hover, +.gedit-document-panel .prelight-row .button:hover { + color: #ff4d4d; } +.gedit-document-panel .prelight-row:selected .button:hover { + color: #ff6666; + background-image: none; + background-color: transparent; + border: none; + box-shadow: none; } + .gedit-document-panel .prelight-row:selected .button:hover:active { + color: #ffffff; } +.gedit-document-panel .prelight-row .button:active { + color: #5c616c; } + +.gedit-document-panel-dragged-row { + border: 1px solid #dcdfe3; + background-color: #d9dde0; + color: #5c616c; } + +GeditStatusbar { + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } + +GeditStatusMenuButton.button.flat, +GeditStatusMenuButton:prelight.button.flat, +GeditStatusMenuButton:checked.button.flat { + border-bottom-style: none; + border-radius: 0; } + +GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { + border-bottom: 1px solid #dcdfe3; } + +.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { + color: rgba(92, 97, 108, 0.6); + margin: 2px; + padding: 2px; } + +GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { + background-color: #fbfbfc; + padding: 6px; + border-color: #dcdfe3; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; + border-style: solid; } + +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-color: rgba(207, 218, 231, 0.1); + background-color: rgba(251, 251, 252, 0.9); } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + border-color: #5294E2; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { + color: #ffffff; + background-color: #5294E2; + border-color: #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { + border-left-style: none; + border-radius: 0 14.5px 14.5px 0; + outline-radius: 0 12.5px 12.5px 0; } + GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { + box-shadow: -1px 0 #5294E2; } +GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { + border-right-style: none; + border-radius: 14.5px 0 0 14.5px; + outline-radius: 12.5px 0 0 12.5px; } + GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { + box-shadow: 1px 0 #5294E2; } + +GbEditorFrame .gb-search-slider { + padding: 2px; } + +GdTaggedEntry { + color: #5c616c; } + +.preferences.sidebar GtkViewport { + border: none; } +.preferences.sidebar GtkListBox { + background-color: #F5F6F7; } +.preferences.sidebar GtkListBoxRow { + padding: 10px; } + +GbPreferencesPageLanguage GtkSearchEntry { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +GbPreferencesPageLanguage GtkScrolledWindow { + border-top-width: 0; } + +GtkBox.gb-command-bar-box { + border: none; + background-color: #3c4049; } + GtkBox.gb-command-bar-box GtkLabel { + color: #A8ADB5; } + +GtkEntry.gb-command-bar-entry.entry.flat, +GtkEntry.gb-command-bar-entry.entry.flat:focus { + font-family: Monospace; + color: #A8ADB5; + background-image: none; + background-color: #3c4049; + padding: 6px 6px 6px 6px; + border: none; } + +GbSourceStyleSchemeWidget GtkSourceView { + font-family: Monospace; } + +GtkScrolledWindow.gb-linked-scroller { + border-top: none; } + +GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { + transition: none; } + +GbViewStack GtkBox.header.notebook, +GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { + border-bottom: 1px solid #dcdfe3; } + +GbViewStack.focused GtkBox.header.notebook { + background-color: #F5F6F7; } + GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { + opacity: 1; } + +EphyWindow .floating-bar { + color: #5c616c; } + +.documents-load-more.button { + border-width: 1px 0 0; + border-radius: 0; } + +.documents-icon-bg { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; } + +.documents-collection-icon { + background-color: rgba(92, 97, 108, 0.3); + border-radius: 2px; } + +.documents-favorite.button:active, +.documents-favorite.button:active:hover { + color: #a9caf1; } + +.documents-entry-tag { + background-color: #5294E2; + color: #ffffff; + border-radius: 2px; + border-width: 0; + margin: 2px; + padding: 4px; } + .documents-entry-tag:hover { + background-color: #639fe5; } + .documents-entry-tag:active { + background-color: #4189df; } + .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { + background: none; + border: none; + box-shadow: none; + icon-shadow: none; } + .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { + color: rgba(255, 255, 255, 0.7); } + +.content-view.document-page { + border-style: solid; + border-width: 3px 3px 6px 4px; + border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } + +TotemGrilo.vertical GdMainView.frame { + border-width: 0; } + +SynapseGuiViewDefault *:selected { + background-color: #5294E2; } + +.gnome-panel-menu-bar, +PanelApplet > GtkMenuBar.menubar, +PanelToplevel, +PanelWidget, +PanelAppletFrame, +PanelApplet { + color: #A8ADB5; + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } + +PanelApplet .button, PanelApplet .button:backdrop { + padding: 4px; + border: 2px solid transparent; + border-radius: 0; + background-image: none; + background-color: transparent; + color: #A8ADB5; } + +PanelApplet .button:hover { + color: #c4c7cc; + background-color: rgba(0, 0, 0, 0.17); + border-color: rgba(0, 0, 0, 0.17); } + +PanelApplet .button:active, PanelApplet .button:active:backdrop, +PanelApplet .button:checked, PanelApplet .button:checked:backdrop { + color: #ffffff; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 0; + border-color: rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -2px #5294E2; } + +PanelApplet:hover { + color: #ffffff; } + +PanelApplet:active, +PanelApplet:hover:active { + color: #5294E2; } + +WnckPager { + color: #54565a; } + WnckPager:selected { + color: #5294E2; } + +NaTrayApplet { + -NaTrayApplet-icon-padding: 12; + -NaTrayApplet-icon-size: 16; } + +ClockBox { + color: #A8ADB5; } + +.xfce4-panel.panel { + background-color: rgba(37, 39, 45, 0.95); } + .xfce4-panel.panel .button.flat { + color: #A8ADB5; + background-color: rgba(37, 39, 45, 0); + border-radius: 0; } + .xfce4-panel.panel .button.flat:hover { + border: none; + background-color: rgba(60, 64, 73, 0.95); } + .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { + color: #5294E2; + border: none; + background-color: rgba(21, 22, 25, 0.95); } + +.floating-bar { + background-color: #5294E2; + color: #ffffff; } + .floating-bar.top { + border-radius: 0 0 2px 2px; } + .floating-bar.right { + border-radius: 2px 0 0 2px; } + .floating-bar.bottom { + border-radius: 2px 2px 0 0; } + .floating-bar.left { + border-radius: 0 2px 2px 0; } + .floating-bar .button { + -GtkButton-image-spacing: 0; + -GtkButton-inner-border: 0; + background-color: transparent; + box-shadow: none; + border: none; } + +BirdieWidgetsTweetList * { + background-image: none; + background-color: transparent; } + +MarlinViewWindow GtkIconView.view:selected, +MarlinViewWindow GtkIconView.view:selected:focus, +MarlinViewWindow GtkIconView.view:selected:hover, +MarlinViewWindow GtkIconView.view:selected:focus:hover { + background-color: transparent; } + +MarlinViewWindow FMListView, +MarlinViewWindow FMColumnView { + outline-color: transparent; } + +MarlinViewWindow *:selected, +MarlinViewWindow *:selected:focus { + color: #ffffff; + background-color: #5294E2; + outline-color: transparent; } + +.marlin-pathbar.pathbar { + border-radius: 14.5px; + color: rgba(207, 218, 231, 0.8); + border-color: #181b1f; + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.9)); + background-color: transparent; } + .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { + color: inherit; } + .marlin-pathbar.pathbar:focus { + color: #ffffff; + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .marlin-pathbar.pathbar:insensitive { + color: rgba(207, 218, 231, 0.35); + background-image: linear-gradient(to bottom, rgba(38, 42, 48, 0.55)); } + .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { + color: #5294E2; } + +.gala-notification { + border: 1px solid rgba(0, 0, 0, 0.35); + border-radius: 3px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + background-image: linear-gradient(to bottom, #ffffff); + background-color: transparent; } + .gala-notification .title, .gala-notification .label { + color: #5c616c; } + +.panel { + background-color: transparent; + color: white; + font-weight: bold; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.panel-shadow { + background-image: none; + background-color: transparent; } + +.panel .menu { + box-shadow: none; } + +.panel .menu .menuitem { + font-weight: normal; + text-shadow: none; + icon-shadow: none; } + +.panel .menubar > .menuitem { + padding: 3px 6px; } + +.panel .menubar > .menuitem:hover { + background-color: transparent; } + +.panel .window-frame.menu.csd, +.panel .window-frame.popup.csd { + box-shadow: none; } + +.panel .menu .window-frame.menu.csd, +.panel .menu .window-frame.popup.csd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } + +.composited-indicator { + background-color: transparent; + color: white; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } + +.composited-indicator > GtkWidget > GtkWidget:first-child { + padding: 0 2px; } + +.panel-app-button > GtkWidget > GtkWidget:first-child { + padding: 0 2px 0 4px; } + +.composited-indicator.menuitem:active, +.composited-indicator.menuitem:prelight { + border-style: none; + background-image: none; + box-shadow: none; } + +.composited-indicator > .popup > .menu { + padding-top: 8px; + padding-bottom: 8px; } + +.panel .menu .spinner, +.menu .spinner { + opacity: 1; } + +PantheonTerminalPantheonTerminalWindow.background { + background-color: transparent; } + PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { + box-shadow: inset 0 1px #1f2227, inset 0 -1px #eaecee; } + +SwitchboardCategoryView .view:selected, +SwitchboardCategoryView .view:selected:focus { + color: #5c616c; } + +UnityDecoration { + -UnityDecoration-extents: 28px 1 1 1; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 0px; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.15); + -UnityDecoration-active-shadow-radius: 12px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); + -UnityDecoration-inactive-shadow-radius: 7px; + -UnityDecoration-glow-size: 10px; + -UnityDecoration-glow-color: #5294E2; + -UnityDecoration-title-indent: 10px; + -UnityDecoration-title-fade: 35px; + -UnityDecoration-title-alignment: 0.0; } + UnityDecoration.top { + border: 1px solid #1f2227; + border-bottom-width: 0; + border-radius: 4px 4px 0 0; + padding: 1px 6px 0 6px; + background-image: linear-gradient(to bottom, #2f343b); + color: rgba(207, 218, 231, 0.8); + box-shadow: inset 0 1px #363c44; } + UnityDecoration.top:backdrop { + border-bottom-width: 0; + background-image: linear-gradient(to bottom, #32383f); + color: rgba(207, 218, 231, 0.5); } + UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { + background-image: linear-gradient(to bottom, #1f2227); } + +UnityPanelWidget, +.unity-panel { + background-image: linear-gradient(to bottom, #25272d); + color: #dfe1e4; + box-shadow: none; } + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + border-radius: 0; + color: #5294E2; + border-bottom: none; } + +.overlay-bar { + background-color: #5294E2; + border-color: #5294E2; + border-radius: 2px; + padding: 3px 6px; + margin: 3px; } + .overlay-bar GtkLabel { + color: #ffffff; } + +GraniteWidgetsThinPaned { + background-color: transparent; + background-image: none; + margin: 0; + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } + +GraniteWidgetsPopOver .frame, +GraniteWidgetsStaticNotebook .frame { + border: none; } + +.help_button { + border-radius: 100px; + padding: 3px 9px; } + +.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { + padding: 3px; + border-bottom: 1px solid #dcdfe3; } + .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { + padding: 0 3px 0 3px; } + +.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { + padding: 5px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #dcdfe3; + background-color: #F5F6F7; } + .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { + padding: 2px 3px 2px 3px; } + +.source-list { + -GtkTreeView-horizontal-separator: 1px; + -GtkTreeView-vertical-separator: 6px; } + +.source-list, +.source-list.view { + background-color: #F5F6F7; + color: #5c616c; + -gtk-icon-style: regular; } + +.source-list.category-expander { + color: transparent; } + +.source-list.view:prelight { + background-color: white; } + +.source-list.view:selected, +.source-list.view:prelight:selected, +.source-list.view:selected:focus, +.source-list.category-expander:hover { + color: #ffffff; + background-color: #5294E2; } + +.source-list .scrollbar.trough, +.source-list .scrollbars-junction { + border-image: none; + border-color: transparent; + background-color: #F5F6F7; + background-image: none; } + +.source-list.badge, +.source-list.badge:prelight, +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-image: none; + background-color: #5294E2; + color: #ffffff; + border-radius: 10px; + padding: 0 6px; + margin: 0 3px; + border-width: 0; } + +.source-list.badge:selected, +.source-list.badge:selected:focus, +.source-list.badge:prelight:selected { + background-color: #ffffff; + color: #5294E2; } + +.source-list.category-expander { + color: #5c616c; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + -GtkTreeView-expander-size: 16; } + +.source-list.category-expander, +.source-list.category-expander:backdrop { + color: transparent; + border: none; } + +.source-list.category-expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +GraniteWidgetsWelcome { + background-color: #ffffff; } + +GraniteWidgetsWelcome GtkLabel { + color: #a8abb1; + font: open sans 11; + text-shadow: none; } + +GraniteWidgetsWelcome .h1, +GraniteWidgetsWelcome .h3 { + color: rgba(92, 97, 108, 0.8); } + +.help_button { + border-radius: 0; } + +GraniteWidgetsPopOver { + -GraniteWidgetsPopOver-arrow-width: 21; + -GraniteWidgetsPopOver-arrow-height: 10; + -GraniteWidgetsPopOver-border-radius: 2px; + -GraniteWidgetsPopOver-border-width: 1; + -GraniteWidgetsPopOver-shadow-size: 12; + border: 1px solid rgba(0, 0, 0, 0.3); + margin: 0; } + +.popover_bg { + background-image: linear-gradient(to bottom, #ffffff); + border: 1px solid rgba(0, 0, 0, 0.3); } + +GraniteWidgetsPopOver .sidebar.view, +GraniteWidgetsPopOver * { + background-color: transparent; } + +.h1 { + font: open sans 24px; } + +.h2 { + font: open sans light 18px; } + +.h3 { + font: open sans 11px; } + +.h4, +.category-label { + color: #898d95; + font-weight: 600; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); } + +.h4 { + padding-bottom: 6px; + padding-top: 6px; } + +GtkListBox .h4 { + padding-left: 6px; } + +.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { + color: #1f2227; } + +GtkFileChooserDialog .dialog-action-box { + background-color: #F5F6F7; } + +NemoWindow GtkEventBox { + background-color: #F5F6F7; } + +GtkFileChooserDialog *, +NautilusWindow *, +NemoWindow { + -GtkPaned-handle-size: 0; } + +GtkFileChooserDialog.csd.background, +GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, +NautilusWindow.csd.background, +NautilusWindow .source-list, +NautilusWindow .source-list.view, +NautilusWindow .source-list.view:prelight, +NemoWindow.csd.background, +NemoWindow .source-list, +NemoWindow .source-list.view, +NemoWindow .source-list.view:prelight, +MarlinViewWindow.csd.background, +MarlinViewWindow .source-list, +MarlinViewWindow .source-list.view, +MarlinViewWindow .source-list.view:prelight { + background-color: transparent; } +GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, +NautilusWindow .sidebar, +NautilusWindow .source-list.sidebar.view, +NemoWindow .sidebar, +NemoWindow .source-list.sidebar.view, +MarlinViewWindow .sidebar, +MarlinViewWindow .source-list.sidebar.view { + background-color: #3c4049; } + GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, + NautilusWindow .sidebar .view, + NautilusWindow .sidebar row, + NautilusWindow .source-list.sidebar.view .view, + NautilusWindow .source-list.sidebar.view row, + NemoWindow .sidebar .view, + NemoWindow .sidebar row, + NemoWindow .source-list.sidebar.view .view, + NemoWindow .source-list.sidebar.view row, + MarlinViewWindow .sidebar .view, + MarlinViewWindow .sidebar row, + MarlinViewWindow .source-list.sidebar.view .view, + MarlinViewWindow .source-list.sidebar.view row { + background-color: transparent; + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, + NautilusWindow .sidebar .view.image, + NautilusWindow .sidebar row.image, + NautilusWindow .source-list.sidebar.view .view.image, + NautilusWindow .source-list.sidebar.view row.image, + NemoWindow .sidebar .view.image, + NemoWindow .sidebar row.image, + NemoWindow .source-list.sidebar.view .view.image, + NemoWindow .source-list.sidebar.view row.image, + MarlinViewWindow .sidebar .view.image, + MarlinViewWindow .sidebar row.image, + MarlinViewWindow .source-list.sidebar.view .view.image, + MarlinViewWindow .source-list.sidebar.view row.image { + color: rgba(168, 173, 181, 0.6); } + GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, + NautilusWindow .sidebar .view.cell:selected, + NautilusWindow .sidebar row.cell:selected, + NautilusWindow .source-list.sidebar.view .view.cell:selected, + NautilusWindow .source-list.sidebar.view row.cell:selected, + NemoWindow .sidebar .view.cell:selected, + NemoWindow .sidebar row.cell:selected, + NemoWindow .source-list.sidebar.view .view.cell:selected, + NemoWindow .source-list.sidebar.view row.cell:selected, + MarlinViewWindow .sidebar .view.cell:selected, + MarlinViewWindow .sidebar row.cell:selected, + MarlinViewWindow .source-list.sidebar.view .view.cell:selected, + MarlinViewWindow .source-list.sidebar.view row.cell:selected { + background-color: #5294E2; + color: #ffffff; } + GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, + NautilusWindow .sidebar.frame, + NautilusWindow .source-list.sidebar.view.frame, + NemoWindow .sidebar.frame, + NemoWindow .source-list.sidebar.view.frame, + MarlinViewWindow .sidebar.frame, + MarlinViewWindow .source-list.sidebar.view.frame { + color: #A8ADB5; } + GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, + NautilusWindow .sidebar .separator, + NautilusWindow GtkPlacesSidebar.sidebar .view.separator, + NautilusWindow .source-list.sidebar.view .separator, + NemoWindow .sidebar .separator, + NemoWindow GtkPlacesSidebar.sidebar .view.separator, + NemoWindow .source-list.sidebar.view .separator, + MarlinViewWindow .sidebar .separator, + MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, + MarlinViewWindow .source-list.sidebar.view .separator { + color: transparent; } + GtkFileChooserDialog .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NautilusWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + NemoWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .sidebar .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, + NautilusWindow .sidebar .scrollbar .trough, + NautilusWindow .source-list.sidebar.view .scrollbar .trough, + NemoWindow .sidebar .scrollbar .trough, + NemoWindow .source-list.sidebar.view .scrollbar .trough, + MarlinViewWindow .sidebar .scrollbar .trough, + MarlinViewWindow .source-list.sidebar.view .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, + NautilusWindow .sidebar .scrollbar .slider, + NautilusWindow .source-list.sidebar.view .scrollbar .slider, + NemoWindow .sidebar .scrollbar .slider, + NemoWindow .source-list.sidebar.view .scrollbar .slider, + MarlinViewWindow .sidebar .scrollbar .slider, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GtkFileChooserDialog .sidebar .scrollbar .slider:hover, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:hover, + NautilusWindow .sidebar .scrollbar .slider:hover, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:hover, + NemoWindow .sidebar .scrollbar .slider:hover, + NemoWindow .source-list.sidebar.view .scrollbar .slider:hover, + MarlinViewWindow .sidebar .scrollbar .slider:hover, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:hover { + background-color: #dfe1e4; } + GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:prelight:active, + NautilusWindow .sidebar .scrollbar .slider:prelight:active, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + NemoWindow .sidebar .scrollbar .slider:prelight:active, + NemoWindow .source-list.sidebar.view .scrollbar .slider:prelight:active, + MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider:insensitive, + NautilusWindow .sidebar .scrollbar .slider:insensitive, + NautilusWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + NemoWindow .sidebar .scrollbar .slider:insensitive, + NemoWindow .source-list.sidebar.view .scrollbar .slider:insensitive, + MarlinViewWindow .sidebar .scrollbar .slider:insensitive, + MarlinViewWindow .source-list.sidebar.view .scrollbar .slider:insensitive { + background-color: transparent; } +GtkFileChooserDialog.maximized .sidebar, +NautilusWindow.maximized .sidebar, +NemoWindow.maximized .sidebar, +MarlinViewWindow.maximized .sidebar { + background-color: #3c4049; } +GtkFileChooserDialog .pane-separator, +NautilusWindow .pane-separator, +NemoWindow .pane-separator, +MarlinViewWindow .pane-separator { + background-color: #3c4049; } + +GtkFileChooserDialog GtkPaned > .vertical > .horizontal { + background-color: #F5F6F7; } + +GeditWindow.background.csd { + background-color: transparent; } + GeditWindow.background.csd .pane-separator, + GeditWindow.background.csd .pane-separator:hover { + background-color: #3c4049; } + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { + background-color: #1f2227; } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #2f343b; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: #32383f; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: #2f343b; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: #32383f; } + +.gedit-bottom-panel-paned { + background-color: #ffffff; } + +.gedit-document-panel { + background-color: #3c4049; } + .maximized .gedit-document-panel { + background-color: #3c4049; } + .gedit-document-panel .list-row { + color: #A8ADB5; } + .gedit-document-panel .list-row { + background-color: rgba(168, 173, 181, 0); + border: solid rgba(168, 173, 181, 0); + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:hover { + border: solid rgba(168, 173, 181, 0.15); + border-width: 3px 2px 3px 2px; + background-color: rgba(168, 173, 181, 0.15); } + .gedit-document-panel .list-row:active { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .list-row:active .button { + color: #ffffff; } + .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { + color: #ffffff; + background-color: #5294E2; + border: solid #5294E2; + border-width: 3px 2px 3px 2px; } + .gedit-document-panel .prelight-row .button:active { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #3c4049; } + .maximized GeditWindow.background.csd GeditFileBrowserWidget { + background-color: #3c4049; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + background-color: #d1d4d8; + border: 1px solid rgba(0, 0, 0, 0.3); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .trough { + background-color: rgba(0, 0, 0, 0.2); + border: none; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider { + background-color: rgba(209, 212, 216, 0.7); } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:hover { + background-color: #dfe1e4; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:prelight:active { + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .scrollbar .slider:insensitive { + background-color: transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal { + background-color: transparent; + border-color: #2c2f35; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button { + border-color: transparent; + background-color: transparent; + background-image: none; + color: #A8ADB5; + border: 1px solid transparent; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:hover { + border: 1px solid #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:active, GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-color: #5294E2; } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GeditWindow.background.csd GeditFileBrowserWidget .horizontal GtkComboBox { + color: #A8ADB5; } + +GeditWindow.background.csd GeditFileBrowserView.view { + background-color: transparent; + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander { + color: #A8ADB5; } + GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { + color: #5294E2; } + +GtkFileChooserDialog .action-bar.frame { + background-color: #373b43; + border-color: #2c2f35; } + GtkFileChooserDialog .action-bar.frame GtkLabel { + color: #A8ADB5; } + GtkFileChooserDialog .action-bar.frame .button { + border-color: transparent; + background-color: transparent; + background-image: none; } + GtkFileChooserDialog .action-bar.frame .button:hover { + border: 1px solid #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:active, GtkFileChooserDialog .action-bar.frame .button:checked { + border: 1px solid #5294E2; + color: #ffffff; + background-color: #5294E2; } + GtkFileChooserDialog .action-bar.frame .button:insensitive { + color: rgba(168, 173, 181, 0.4); } + GtkFileChooserDialog .action-bar.frame GtkComboBox { + color: #A8ADB5; } + +/* GTK NAMED COLORS */ +@define-color theme_fg_color #5c616c; +@define-color theme_text_color #5c616c; +@define-color theme_bg_color #F5F6F7; +@define-color theme_base_color #ffffff; +@define-color theme_selected_bg_color #5294E2; +@define-color theme_selected_fg_color #ffffff; +@define-color fg_color #5c616c; +@define-color text_color #5c616c; +@define-color bg_color #F5F6F7; +@define-color base_color #ffffff; +@define-color selected_bg_color #5294E2; +@define-color selected_fg_color #ffffff; +@define-color insensitive_bg_color #fbfbfb; +@define-color insensitive_fg_color rgba(92, 97, 108, 0.55); +@define-color insensitive_base_color #ffffff; +@define-color theme_unfocused_fg_color #5c616c; +@define-color theme_unfocused_text_color #5c616c; +@define-color theme_unfocused_bg_color #F5F6F7; +@define-color theme_unfocused_base_color #ffffff; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; +@define-color warning_color #F27835; +@define-color error_color #FC4138; +@define-color success_color #73d216; +@define-color placeholder_text_color #A8A8A8; +@define-color wm_title rgba(207, 218, 231, 0.8); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_bg #2f343b; +@define-color wm_bg_unfocused #32383f; +@define-color wm_highlight #363c44; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #e45e65; +@define-color wm_button_close_hover_bg #f48085; +@define-color wm_button_close_active_bg #e6262f; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #272c32; +@define-color wm_button_unfocused_bg #2a3035; +@define-color wm_button_hover_bg #272c32; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #191C21; +@define-color wm_button_unfocused_border #1F2328; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #939ca8; +@define-color wm_icon_unfocused_bg #686f78; +@define-color wm_icon_hover_bg #afb8c5; +@define-color wm_icon_active_bg #ffffff; +@define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-darker.scss b/common/gtk-3.0/3.16/gtk-contained-solid-darker.scss new file mode 100644 index 0000000..161ca2e --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-contained-solid-darker.scss @@ -0,0 +1,17 @@ +// General guidelines: +// - very unlikely you want to edit something else than _common.scss +// - keep the number of defined colors to a minimum, use the color blending functions if +// you need a subtle shade + +$variant: 'light'; +$darker: 'true'; +$transparency: 'false'; + +@import 'colors'; +@import 'drawing'; +@import 'common'; +@import 'applications'; +@import 'unity'; +@import 'granite'; +@import 'transparent_widgets'; +@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid.css b/common/gtk-3.0/3.16/gtk-contained-solid.css index cb834ea..57a27bc 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid.css +++ b/common/gtk-3.0/3.16/gtk-contained-solid.css @@ -33,7 +33,7 @@ ***************/ .background { color: #5c616c; - background-color: rgba(249, 250, 251, 0.999); } + background-color: rgba(245, 246, 247, 0.999); } /* These wildcard seems unavoidable, need to investigate. @@ -45,16 +45,16 @@ -gtk-image-effect: dim; } .gtkstyle-fallback { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; } .gtkstyle-fallback:prelight { background-color: white; color: #5c616c; } .gtkstyle-fallback:active { - background-color: #dae1e7; + background-color: #d9dde0; color: #5c616c; } .gtkstyle-fallback:insensitive { - background-color: #fcfdfd; + background-color: #fbfbfb; color: rgba(92, 97, 108, 0.55); } .gtkstyle-fallback:selected { background-color: #5294E2; @@ -83,11 +83,11 @@ GtkAssistant .sidebar { background-color: #ffffff; - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dde3e9; } + border-right: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; } GtkAssistant.csd .sidebar { border-top-style: none; } GtkAssistant .sidebar .label { @@ -97,7 +97,7 @@ GtkAssistant .sidebar .label.highlight { color: #ffffff; } GtkTextView { - background-color: #fcfcfd; } + background-color: #fafafb; } .grid-child { padding: 3px; @@ -105,7 +105,8 @@ GtkTextView { .grid-child:selected { outline-offset: -2px; } -.popover.osd, .osd { +.popover.osd, .app-notification, +.app-notification.frame, .osd { color: #A8ADB5; border: none; background-color: rgba(60, 64, 73, 0.95); @@ -156,6 +157,7 @@ GtkTextView { border: none; border-radius: 0; } .entry:focus { + background-clip: border-box; color: #5c616c; border-color: #5294E2; background-color: #ffffff; @@ -215,20 +217,20 @@ GtkTextView { .entry.image:active { color: #5294E2; } .linked.vertical > .entry { - border-bottom-color: #f4f6f8; + border-bottom-color: #f4f5f6; box-shadow: none; } .linked.vertical > .entry:focus { border-color: #5294E2; box-shadow: 0 -1px 0 0 #5294E2; } .linked.vertical > .entry:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child:focus { border-bottom-color: #5294E2; box-shadow: none; } .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:last-child { border-bottom-color: rgba(0, 0, 0, 0.14); } .linked.vertical > .entry:last-child:focus { @@ -253,14 +255,14 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .header-bar .button { padding: 6px 11px; } .button.flat { border-color: transparent; background-color: transparent; background-image: none; - background-color: rgba(249, 250, 251, 0); + background-color: rgba(245, 246, 247, 0); transition: none; } .button.flat:hover { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); @@ -271,9 +273,10 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; + background-color: #fbfbfc; -gtk-image-effect: highlight; } .button:active, .button:checked { + background-clip: border-box; color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #5294E2; @@ -286,7 +289,7 @@ GtkTextView { .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .button:insensitive > GtkLabel { color: inherit; } .button:insensitive:active, .button:insensitive:checked { @@ -475,12 +478,12 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:hover { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -489,7 +492,7 @@ GtkTextView { .inline-toolbar GtkToolButton > .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { color: inherit; } .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { @@ -579,7 +582,9 @@ GtkTextView { .linked.vertical > GtkComboBox:only-child > .button:hover { box-shadow: none; } -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button { +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { border-color: transparent; background-color: transparent; background-image: none; @@ -591,7 +596,7 @@ GtkTextView { outline-offset: -1px; border-radius: 2px; } .menuitem.button.flat:hover { - background-color: #f1f2f3; } + background-color: #edeef0; } /********* * Links * @@ -620,7 +625,7 @@ GtkTextView { border-radius: 3px; } .spinbutton .button { background-image: none; - border: 1px solid rgba(221, 227, 233, 0.6); + border: 1px solid rgba(220, 223, 227, 0.6); border-style: none none none solid; color: #646873; border-radius: 0; @@ -640,7 +645,7 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -650,18 +655,18 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -671,11 +676,11 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { @@ -734,7 +739,7 @@ GtkComboBox { .toolbar, .inline-toolbar { -GtkWidget-window-dragging: true; padding: 4px; - background-color: #f9fafb; } + background-color: #F5F6F7; } .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { padding: 7px; border: none; @@ -752,22 +757,22 @@ GtkComboBox { background-color: #eff0f2; } .inline-toolbar { - background-color: #f0f2f5; + background-color: #eceef0; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 1px 1px; padding: 3px; border-radius: 0 0 3px 3px; } .search-bar { - background-color: #f9fafb; + background-color: #F5F6F7; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 0 1px; padding: 3px; } .action-bar { - background-color: #f0f2f5; } + background-color: #eceef0; } /*************** * Header bars * @@ -794,11 +799,11 @@ GtkComboBox { padding: 0 12px; } .header-bar.selection-mode { color: #ffffff; - background-color: rgba(82, 148, 226, 0.95); - border-color: rgba(65, 137, 223, 0.95); + background-color: #5294E2; + border-color: #4189df; box-shadow: none; } .header-bar.selection-mode:backdrop { - background-color: rgba(82, 148, 226, 0.95); + background-color: #5294E2; color: rgba(255, 255, 255, 0.6); } .header-bar.selection-mode .button { color: #ffffff; @@ -864,7 +869,7 @@ GtkComboBox { background-color: #e7e8eb; } .titlebar:backdrop { color: rgba(82, 93, 118, 0.5); - background-color: #e7e8eb; } + background-color: #eff0f2; } .csd .titlebar:backdrop { background-color: #eff0f2; } .maximized .titlebar { @@ -896,8 +901,9 @@ GtkComboBox { .primary-toolbar .entry:focus, .header-bar .entry:focus { color: #ffffff; border-color: #5294E2; - background-image: linear-gradient(to bottom, #5294E2); - background-clip: border-box; } + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { color: rgba(82, 93, 118, 0.35); background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } @@ -920,7 +926,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -947,7 +953,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { @@ -1161,7 +1167,7 @@ column-header .button, column-header .button:hover, column-header .button:active column-header .button:active { background-color: #ffffff; } column-header .button:insensitive { - border-color: #f9fafb; + border-color: #F5F6F7; background-image: none; } /********* @@ -1190,7 +1196,7 @@ column-header .button, column-header .button:hover, column-header .button:active padding: 0; border-radius: 0; background-color: #ffffff; - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .csd .menu, .csd .popup { padding: 4px 0px; border-radius: 3px; @@ -1232,7 +1238,7 @@ column-header .button, column-header .button:hover, column-header .button:active ************/ .popover { padding: 2px; - border: 1px solid #ced6de; + border: 1px solid #cdd2d7; border-radius: 3px; background-clip: border-box; background-color: #ffffff; @@ -1275,7 +1281,7 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkWidget-focus-line-width: 0; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } .notebook.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.frame.top { border-top-width: 0; } .notebook.frame.bottom { @@ -1285,9 +1291,9 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.frame.left { border-left-width: 0; } .notebook.header { - background-color: #ffffff; } + background-color: #fafafb; } .notebook.header.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.header.frame.top { border-bottom-width: 0; } .notebook.header.frame.bottom { @@ -1297,13 +1303,13 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.header.frame.left { border-right-width: 0; } .notebook.header.top { - box-shadow: inset 0 -1px #edf0f3; } + box-shadow: inset 0 -1px #eaecee; } .notebook.header.bottom { - box-shadow: inset 0 1px #edf0f3; } + box-shadow: inset 0 1px #eaecee; } .notebook.header.right { - box-shadow: inset 1px 0 #edf0f3; } + box-shadow: inset 1px 0 #eaecee; } .notebook.header.left { - box-shadow: inset -1px 0 #edf0f3; } + box-shadow: inset -1px 0 #eaecee; } .notebook tab { border-width: 0; border-style: solid; @@ -1321,59 +1327,59 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook tab.reorderable-page.top, .notebook tab.top { border-color: transparent; } .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-top-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { border-width: 1px; border-top-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom, .notebook tab.bottom { border-color: transparent; } .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-bottom-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { border-width: 1px; border-bottom-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right, .notebook tab.right { border-color: transparent; } .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-right-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { border-width: 1px; border-right-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left, .notebook tab.left { border-color: transparent; } .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-left-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { border-width: 1px; border-left-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab GtkLabel { padding: 0 2px; color: rgba(92, 97, 108, 0.55); } @@ -1383,7 +1389,7 @@ column-header .button, column-header .button:hover, column-header .button:active color: #5c616c; } .notebook tab .button { padding: 0; - color: #92969e; } + color: #91959c; } .notebook tab .button:hover { color: #ff4d4d; } .notebook tab .button:active { @@ -1417,7 +1423,7 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkRange-slider-width: 6px; } .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { margin: 0; - background-color: #8b8e96; + background-color: #898d95; border: 1px solid rgba(255, 255, 255, 0.6); background-clip: padding-box; } .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { @@ -1433,11 +1439,11 @@ column-header .button, column-header .button:hover, column-header .button:active opacity: 0.99; } .scrollbar .trough { background-color: #fcfcfc; - border: 1px none #dde3e9; } + border: 1px none #dcdfe3; } .scrollbar .slider { - background-color: #babcc1; } + background-color: #b7babf; } .scrollbar .slider:hover { - background-color: #c9ccd0; } + background-color: #c7c9cd; } .scrollbar .slider:prelight:active { background-color: #5294E2; } .scrollbar .slider:insensitive { @@ -1472,7 +1478,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbars-junction, .scrollbars-junction.frame { border-color: transparent; - border-image: linear-gradient(to bottom, #dde3e9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; background-color: #fcfcfc; } .scrollbars-junction:dir(rtl), .scrollbars-junction.frame:dir(rtl) { @@ -1483,7 +1489,8 @@ column-header .button, column-header .button:hover, column-header .button:active **********/ GtkSwitch { font: 1; - -GtkSwitch-slider-width: 41; } + -GtkSwitch-slider-width: 41; + outline-color: transparent; } GtkSwitch.trough, GtkSwitch.slider { background-size: 52px 24px; background-repeat: no-repeat; @@ -1499,39 +1506,83 @@ GtkSwitch { GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } -.header-bar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } -.header-bar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough:active:insensitive { +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } .list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + .list-row:selected GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + /************************* * Check and Radio items * *************************/ @@ -1659,8 +1710,8 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { background-image: linear-gradient(to bottom, #5294E2); border-color: #5294E2; } .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #fcfcfd); - border-color: #9dc1ed; } + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } .scale.slider:active { background-image: linear-gradient(to bottom, #2679db); border-color: #2679db; } @@ -1777,7 +1828,7 @@ GtkLevelBar.vertical { * Frames * **********/ .frame { - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; padding: 0; } .frame.flat { border-style: none; } @@ -1798,7 +1849,7 @@ GtkScrolledWindow GtkViewport.frame { *********/ .list, .list-row { background-color: #ffffff; - border-color: #dde3e9; } + border-color: #dcdfe3; } .list-row, .grid-child { @@ -1834,12 +1885,40 @@ GtkScrolledWindow GtkViewport.frame { .app-notification, .app-notification.frame { padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0, 0, 0, 0.2); - background-color: #ffffff; - background-clip: padding-box; } + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } /************* * Expanders * @@ -1858,7 +1937,7 @@ GtkScrolledWindow GtkViewport.frame { ***********/ GtkCalendar { color: #5c616c; - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; border-radius: 3px; padding: 2px; } GtkCalendar:selected { @@ -1910,18 +1989,18 @@ GtkCalendar { border-bottom-left-radius: 3px; } GtkFileChooserDialog .search-bar { - background-color: #f9fafb; - border-color: #dde3e9; + background-color: #F5F6F7; + border-color: #dcdfe3; box-shadow: none; } GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } /*********** * Sidebar * ***********/ .sidebar { border: none; - background-color: #f9fafb; } + background-color: #F5F6F7; } .sidebar:selected { background-color: #5294E2; } @@ -1948,7 +2027,7 @@ GtkPaned { margin-right: 0; margin-left: 8px; } GtkPaned .pane-separator { - background-color: #dde3e9; } + background-color: #dcdfe3; } GtkPaned.wide { -GtkPaned-handle-size: 5; @@ -1956,7 +2035,7 @@ GtkPaned.wide { GtkPaned.wide .pane-separator { background-color: transparent; border-style: none solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 1px; } GtkPaned.wide.vertical .pane-separator { border-style: solid none; } @@ -2065,12 +2144,12 @@ GtkColorSwatch#add-color-button { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkColorSwatch#add-color-button:hover { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkColorSwatch#add-color-button .overlay { border-color: transparent; background-color: transparent; @@ -2090,7 +2169,7 @@ GtkColorButton.button { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkVolumeButton.button { padding: 8px; } @@ -2145,7 +2224,7 @@ GtkVolumeButton.button { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, .titlebar .button.titlebutton:active, .titlebar .button.titlebutton:checked { @@ -2300,13 +2379,11 @@ TerminalWindow .notebook tab.reorderable-page:hover { padding-top: 4px; padding-bottom: 4px; } TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } TerminalWindow .notebook tab .active-page GtkLabel { color: rgba(82, 93, 118, 0.8); } TerminalWindow .notebook tab .active-page GtkLabel:backdrop { color: rgba(82, 93, 118, 0.5); } -TerminalWindow .notebook tab.reorderable-page.top:hover { - border-bottom-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { background-color: #e7e8eb; border-color: #d4d5db; } @@ -2333,7 +2410,7 @@ NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { .nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, .nautilus-list-dim-label { - color: #aaadb3; } + color: #a8abb1; } .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, .nautilus-list-dim-label:selected, .nautilus-list-dim-label:selected:focus { @@ -2365,20 +2442,20 @@ NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline- background-color: rgba(82, 148, 226, 0.8); border-color: rgba(38, 121, 219, 0.8); } .disk-space-display.free { - background-color: #f0f2f5; - border-color: #d1d9e0; } + background-color: #eceef0; + border-color: #d0d5da; } NemoWindow .sidebar .frame { border-width: 0; } NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dde3e9; } + color: #dcdfe3; } NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { border-color: #5294E2; } NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { @@ -2420,7 +2497,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { .gedit-document-panel .list-row .button GtkImage { color: inherit; } .gedit-document-panel .prelight-row .button { - color: #92969e; } + color: #91959c; } .gedit-document-panel .list-row .button:hover, .gedit-document-panel .prelight-row .button:hover { color: #ff4d4d; } @@ -2436,13 +2513,13 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: #5c616c; } .gedit-document-panel-dragged-row { - border: 1px solid #dde3e9; - background-color: #dae1e7; + border: 1px solid #dcdfe3; + background-color: #d9dde0; color: #5c616c; } GeditStatusbar { - border-top: 1px solid #dde3e9; - background-color: #f9fafb; } + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } GeditStatusMenuButton.button.flat, GeditStatusMenuButton:prelight.button.flat, @@ -2451,7 +2528,7 @@ GeditStatusMenuButton:checked.button.flat { border-radius: 0; } GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { color: rgba(92, 97, 108, 0.6); @@ -2459,9 +2536,9 @@ GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { padding: 2px; } GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: white; + background-color: #fbfbfc; padding: 6px; - border-color: #dde3e9; + border-color: #dcdfe3; border-radius: 0 0 2px 2px; border-width: 0 1px 1px 1px; border-style: solid; } @@ -2469,7 +2546,7 @@ GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { border-color: #5294E2; } @@ -2501,7 +2578,7 @@ GdTaggedEntry { .preferences.sidebar GtkViewport { border: none; } .preferences.sidebar GtkListBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } .preferences.sidebar GtkListBoxRow { padding: 10px; } @@ -2537,10 +2614,10 @@ GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { GbViewStack GtkBox.header.notebook, GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } GbViewStack.focused GtkBox.header.notebook { - background-color: #f9fafb; } + background-color: #F5F6F7; } GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { opacity: 1; } @@ -2601,7 +2678,7 @@ PanelWidget, PanelAppletFrame, PanelApplet { color: #A8ADB5; - background-image: linear-gradient(to bottom, #25272d); } + background-image: linear-gradient(to bottom, rgba(37, 39, 45, 0.95)); } PanelApplet .button, PanelApplet .button:backdrop { padding: 4px; @@ -2644,18 +2721,18 @@ ClockBox { color: #A8ADB5; } .xfce4-panel.panel { - background-color: #25272d; } + background-color: rgba(37, 39, 45, 0.95); } .xfce4-panel.panel .button.flat { color: #A8ADB5; background-color: rgba(37, 39, 45, 0); border-radius: 0; } .xfce4-panel.panel .button.flat:hover { border: none; - background-color: #3c4049; } + background-color: rgba(60, 64, 73, 0.95); } .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { color: #5294E2; border: none; - background-color: #151619; } + background-color: rgba(21, 22, 25, 0.95); } .floating-bar { background-color: #5294E2; @@ -2784,7 +2861,7 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { @@ -2844,8 +2921,8 @@ GraniteWidgetsThinPaned { background-color: transparent; background-image: none; margin: 0; - border-left: 1px solid #dde3e9; - border-right: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } GraniteWidgetsPopOver .frame, GraniteWidgetsStaticNotebook .frame { @@ -2857,7 +2934,7 @@ GraniteWidgetsStaticNotebook .frame { .secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { padding: 3px; - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { padding: 0 3px 0 3px; } @@ -2865,8 +2942,8 @@ GraniteWidgetsStaticNotebook .frame { padding: 5px; border-width: 1px 0 0 0; border-style: solid; - border-color: #dde3e9; - background-color: #f9fafb; } + border-color: #dcdfe3; + background-color: #F5F6F7; } .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { padding: 2px 3px 2px 3px; } @@ -2876,7 +2953,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list, .source-list.view { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; -gtk-icon-style: regular; } @@ -2897,7 +2974,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list .scrollbars-junction { border-image: none; border-color: transparent; - background-color: #f9fafb; + background-color: #F5F6F7; background-image: none; } .source-list.badge, @@ -2936,7 +3013,7 @@ GraniteWidgetsWelcome { background-color: #ffffff; } GraniteWidgetsWelcome GtkLabel { - color: #aaadb3; + color: #a8abb1; font: open sans 11; text-shadow: none; } @@ -2975,7 +3052,7 @@ GraniteWidgetsPopOver * { .h4, .category-label { - color: #8b8e96; + color: #898d95; font-weight: 600; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } @@ -2990,10 +3067,10 @@ GtkListBox .h4 { color: #d4d5db; } GtkFileChooserDialog .dialog-action-box { - background-color: #f9fafb; } + background-color: #F5F6F7; } NemoWindow GtkEventBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } GtkFileChooserDialog *, NautilusWindow *, @@ -3148,15 +3225,28 @@ MarlinViewWindow .pane-separator { background-color: #3c4049; } GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #f9fafb; } + background-color: #F5F6F7; } GeditWindow.background.csd { background-color: transparent; } GeditWindow.background.csd .pane-separator, GeditWindow.background.csd .pane-separator:hover { background-color: #3c4049; } - GeditWindow.background.csd .titlebar .pane-separator { + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { background-color: #d4d5db; } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #e7e8eb; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: #eff0f2; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: #e7e8eb; } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: #eff0f2; } .gedit-bottom-panel-paned { background-color: #ffffff; } @@ -3260,25 +3350,25 @@ GtkFileChooserDialog .action-bar.frame { /* GTK NAMED COLORS */ @define-color theme_fg_color #5c616c; @define-color theme_text_color #5c616c; -@define-color theme_bg_color #f9fafb; +@define-color theme_bg_color #F5F6F7; @define-color theme_base_color #ffffff; @define-color theme_selected_bg_color #5294E2; @define-color theme_selected_fg_color #ffffff; @define-color fg_color #5c616c; @define-color text_color #5c616c; -@define-color bg_color #f9fafb; +@define-color bg_color #F5F6F7; @define-color base_color #ffffff; @define-color selected_bg_color #5294E2; @define-color selected_fg_color #ffffff; -@define-color insensitive_bg_color #fcfdfd; +@define-color insensitive_bg_color #fbfbfb; @define-color insensitive_fg_color rgba(92, 97, 108, 0.55); @define-color insensitive_base_color #ffffff; @define-color theme_unfocused_fg_color #5c616c; @define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #f9fafb; +@define-color theme_unfocused_bg_color #F5F6F7; @define-color theme_unfocused_base_color #ffffff; -@define-color borders #dde3e9; -@define-color unfocused_borders #dde3e9; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; @define-color warning_color #F27835; @define-color error_color #FC4138; @define-color success_color #73d216; @@ -3287,6 +3377,24 @@ GtkFileChooserDialog .action-bar.frame { @define-color wm_unfocused_title alpha(rgba(82, 93, 118, 0.8), 0.7); @define-color wm_bg #e7e8eb; @define-color wm_bg_unfocused #eff0f2; -@define-color wm_highlight #f2f3f4; +@define-color wm_highlight #eff0f2; @define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f37076; +@define-color wm_button_close_hover_bg #f79da1; +@define-color wm_button_close_active_bg #ef4048; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #fdfdfd; +@define-color wm_button_unfocused_bg #f6f7f8; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #d8dae0; +@define-color wm_button_unfocused_border #dddee2; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #8d93a4; +@define-color wm_icon_unfocused_bg #b8bcc7; +@define-color wm_icon_hover_bg #70788d; +@define-color wm_icon_active_bg #ffffff; @define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid.scss b/common/gtk-3.0/3.16/gtk-contained-solid.scss index 8c5384c..0bd5284 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid.scss +++ b/common/gtk-3.0/3.16/gtk-contained-solid.scss @@ -3,6 +3,8 @@ // - keep the number of defined colors to a minimum, use the color blending functions if // you need a subtle shade +$variant: 'light'; +$darker: 'false'; $transparency: 'false'; @import 'colors'; diff --git a/common/gtk-3.0/3.16/gtk-contained.css b/common/gtk-3.0/3.16/gtk-contained.css index 8abc3e4..eaeee5e 100644 --- a/common/gtk-3.0/3.16/gtk-contained.css +++ b/common/gtk-3.0/3.16/gtk-contained.css @@ -33,7 +33,7 @@ ***************/ .background { color: #5c616c; - background-color: rgba(249, 250, 251, 0.999); } + background-color: rgba(245, 246, 247, 0.999); } /* These wildcard seems unavoidable, need to investigate. @@ -45,16 +45,16 @@ -gtk-image-effect: dim; } .gtkstyle-fallback { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; } .gtkstyle-fallback:prelight { background-color: white; color: #5c616c; } .gtkstyle-fallback:active { - background-color: #dae1e7; + background-color: #d9dde0; color: #5c616c; } .gtkstyle-fallback:insensitive { - background-color: #fcfdfd; + background-color: #fbfbfb; color: rgba(92, 97, 108, 0.55); } .gtkstyle-fallback:selected { background-color: #5294E2; @@ -83,11 +83,11 @@ GtkAssistant .sidebar { background-color: #ffffff; - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dde3e9; } + border-right: 1px solid #dcdfe3; } GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; } GtkAssistant.csd .sidebar { border-top-style: none; } GtkAssistant .sidebar .label { @@ -97,7 +97,7 @@ GtkAssistant .sidebar .label.highlight { color: #ffffff; } GtkTextView { - background-color: #fcfcfd; } + background-color: #fafafb; } .grid-child { padding: 3px; @@ -105,7 +105,8 @@ GtkTextView { .grid-child:selected { outline-offset: -2px; } -.popover.osd, .osd { +.popover.osd, .app-notification, +.app-notification.frame, .osd { color: #A8ADB5; border: none; background-color: rgba(60, 64, 73, 0.95); @@ -156,6 +157,7 @@ GtkTextView { border: none; border-radius: 0; } .entry:focus { + background-clip: border-box; color: #5c616c; border-color: #5294E2; background-color: #ffffff; @@ -215,20 +217,20 @@ GtkTextView { .entry.image:active { color: #5294E2; } .linked.vertical > .entry { - border-bottom-color: #f4f6f8; + border-bottom-color: #f4f5f6; box-shadow: none; } .linked.vertical > .entry:focus { border-color: #5294E2; box-shadow: 0 -1px 0 0 #5294E2; } .linked.vertical > .entry:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:first-child:focus { border-bottom-color: #5294E2; box-shadow: none; } .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f4f6f8; } + border-bottom-color: #f4f5f6; } .linked.vertical > .entry:last-child { border-bottom-color: rgba(0, 0, 0, 0.14); } .linked.vertical > .entry:last-child:focus { @@ -253,14 +255,14 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .header-bar .button { padding: 6px 11px; } .button.flat { border-color: transparent; background-color: transparent; background-image: none; - background-color: rgba(249, 250, 251, 0); + background-color: rgba(245, 246, 247, 0); transition: none; } .button.flat:hover { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); @@ -271,9 +273,10 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; + background-color: #fbfbfc; -gtk-image-effect: highlight; } .button:active, .button:checked { + background-clip: border-box; color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #5294E2; @@ -286,7 +289,7 @@ GtkTextView { .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .button:insensitive > GtkLabel { color: inherit; } .button:insensitive:active, .button:insensitive:checked { @@ -475,12 +478,12 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:hover { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -489,7 +492,7 @@ GtkTextView { .inline-toolbar GtkToolButton > .button:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { color: inherit; } .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { @@ -579,7 +582,9 @@ GtkTextView { .linked.vertical > GtkComboBox:only-child > .button:hover { box-shadow: none; } -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button { +.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .popup.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, +.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, +.app-notification.frame .button.flat:insensitive { border-color: transparent; background-color: transparent; background-image: none; @@ -591,7 +596,7 @@ GtkTextView { outline-offset: -1px; border-radius: 2px; } .menuitem.button.flat:hover { - background-color: #f1f2f3; } + background-color: #edeef0; } /********* * Links * @@ -620,7 +625,7 @@ GtkTextView { border-radius: 3px; } .spinbutton .button { background-image: none; - border: 1px solid rgba(221, 227, 233, 0.6); + border: 1px solid rgba(220, 223, 227, 0.6); border-style: none none none solid; color: #646873; border-radius: 0; @@ -640,7 +645,7 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -650,18 +655,18 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -671,11 +676,11 @@ GtkTextView { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { color: rgba(92, 97, 108, 0.55); border-color: rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } + background-color: rgba(251, 251, 252, 0.55); } .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { color: inherit; } .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { @@ -734,7 +739,7 @@ GtkComboBox { .toolbar, .inline-toolbar { -GtkWidget-window-dragging: true; padding: 4px; - background-color: #f9fafb; } + background-color: #F5F6F7; } .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { padding: 7px; border: none; @@ -752,22 +757,22 @@ GtkComboBox { background-color: #eff0f2; } .inline-toolbar { - background-color: #f0f2f5; + background-color: #eceef0; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 1px 1px; padding: 3px; border-radius: 0 0 3px 3px; } .search-bar { - background-color: #f9fafb; + background-color: #F5F6F7; border-style: solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 0 0 1px; padding: 3px; } .action-bar { - background-color: #f0f2f5; } + background-color: #eceef0; } /*************** * Header bars * @@ -864,7 +869,7 @@ GtkComboBox { background-color: rgba(231, 232, 235, 0.95); } .titlebar:backdrop { color: rgba(82, 93, 118, 0.5); - background-color: #e7e8eb; } + background-color: #eff0f2; } .csd .titlebar:backdrop { background-color: rgba(239, 240, 242, 0.95); } .maximized .titlebar { @@ -896,8 +901,9 @@ GtkComboBox { .primary-toolbar .entry:focus, .header-bar .entry:focus { color: #ffffff; border-color: #5294E2; - background-image: linear-gradient(to bottom, #5294E2); - background-clip: border-box; } + background-image: linear-gradient(to bottom, #5294E2); } + .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { + color: #ffffff; } .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { color: rgba(82, 93, 118, 0.35); background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.55)); } @@ -920,7 +926,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -947,7 +953,7 @@ GtkComboBox { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { @@ -1161,7 +1167,7 @@ column-header .button, column-header .button:hover, column-header .button:active column-header .button:active { background-color: #ffffff; } column-header .button:insensitive { - border-color: #f9fafb; + border-color: #F5F6F7; background-image: none; } /********* @@ -1190,7 +1196,7 @@ column-header .button, column-header .button:hover, column-header .button:active padding: 0; border-radius: 0; background-color: #ffffff; - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .csd .menu, .csd .popup { padding: 4px 0px; border-radius: 3px; @@ -1232,7 +1238,7 @@ column-header .button, column-header .button:hover, column-header .button:active ************/ .popover { padding: 2px; - border: 1px solid #ced6de; + border: 1px solid #cdd2d7; border-radius: 3px; background-clip: border-box; background-color: #ffffff; @@ -1275,7 +1281,7 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkWidget-focus-line-width: 0; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } .notebook.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.frame.top { border-top-width: 0; } .notebook.frame.bottom { @@ -1285,9 +1291,9 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.frame.left { border-left-width: 0; } .notebook.header { - background-color: #ffffff; } + background-color: #fafafb; } .notebook.header.frame { - border: 1px solid #dde3e9; } + border: 1px solid #dcdfe3; } .notebook.header.frame.top { border-bottom-width: 0; } .notebook.header.frame.bottom { @@ -1297,13 +1303,13 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.header.frame.left { border-right-width: 0; } .notebook.header.top { - box-shadow: inset 0 -1px #edf0f3; } + box-shadow: inset 0 -1px #eaecee; } .notebook.header.bottom { - box-shadow: inset 0 1px #edf0f3; } + box-shadow: inset 0 1px #eaecee; } .notebook.header.right { - box-shadow: inset 1px 0 #edf0f3; } + box-shadow: inset 1px 0 #eaecee; } .notebook.header.left { - box-shadow: inset -1px 0 #edf0f3; } + box-shadow: inset -1px 0 #eaecee; } .notebook tab { border-width: 0; border-style: solid; @@ -1321,59 +1327,59 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook tab.reorderable-page.top, .notebook tab.top { border-color: transparent; } .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-top-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { border-width: 1px; border-top-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom, .notebook tab.bottom { border-color: transparent; } .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-bottom-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { border-width: 1px; border-bottom-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right, .notebook tab.right { border-color: transparent; } .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-right-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { border-width: 1px; border-right-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left, .notebook tab.left { border-color: transparent; } .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - border-color: rgba(221, 227, 233, 0.5); + border-color: rgba(220, 223, 227, 0.5); border-width: 1px; border-left-width: 0; - background-color: rgba(249, 250, 251, 0.2); } + background-color: rgba(245, 246, 247, 0.2); } .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { border-width: 1px; border-left-width: 0; - border-color: #dde3e9; - background-color: rgba(0, 0, 0, 0.02); } + border-color: #dcdfe3; + background-color: rgba(0, 0, 0, 0.035); } .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.035); } .notebook tab GtkLabel { padding: 0 2px; color: rgba(92, 97, 108, 0.55); } @@ -1383,7 +1389,7 @@ column-header .button, column-header .button:hover, column-header .button:active color: #5c616c; } .notebook tab .button { padding: 0; - color: #92969e; } + color: #91959c; } .notebook tab .button:hover { color: #ff4d4d; } .notebook tab .button:active { @@ -1417,7 +1423,7 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkRange-slider-width: 6px; } .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { margin: 0; - background-color: #8b8e96; + background-color: #898d95; border: 1px solid rgba(255, 255, 255, 0.6); background-clip: padding-box; } .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { @@ -1433,11 +1439,11 @@ column-header .button, column-header .button:hover, column-header .button:active opacity: 0.99; } .scrollbar .trough { background-color: #fcfcfc; - border: 1px none #dde3e9; } + border: 1px none #dcdfe3; } .scrollbar .slider { - background-color: #babcc1; } + background-color: #b7babf; } .scrollbar .slider:hover { - background-color: #c9ccd0; } + background-color: #c7c9cd; } .scrollbar .slider:prelight:active { background-color: #5294E2; } .scrollbar .slider:insensitive { @@ -1472,7 +1478,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbars-junction, .scrollbars-junction.frame { border-color: transparent; - border-image: linear-gradient(to bottom, #dde3e9 1px, transparent 1px) 0 0 0 1/0 1px stretch; + border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; background-color: #fcfcfc; } .scrollbars-junction:dir(rtl), .scrollbars-junction.frame:dir(rtl) { @@ -1483,7 +1489,8 @@ column-header .button, column-header .button:hover, column-header .button:active **********/ GtkSwitch { font: 1; - -GtkSwitch-slider-width: 41; } + -GtkSwitch-slider-width: 41; + outline-color: transparent; } GtkSwitch.trough, GtkSwitch.slider { background-size: 52px 24px; background-repeat: no-repeat; @@ -1499,39 +1506,83 @@ GtkSwitch { GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } +.list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } + +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } + +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } -.header-bar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } +GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } -.header-bar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } -.header-bar GtkSwitch.trough:active:insensitive { +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } .list-row:selected GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } + +.list-row:selected GtkSwitch.trough { background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } +.header-bar GtkSwitch.trough, +.primary-toolbar GtkSwitch.trough { + background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } + .list-row:selected GtkSwitch.trough:active { background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } +.header-bar GtkSwitch.trough:active, +.primary-toolbar GtkSwitch.trough:active { + background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } + +.list-row:selected GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:insensitive { background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:insensitive, +.primary-toolbar GtkSwitch.trough:insensitive { + background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } + +.list-row:selected GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } + .list-row:selected GtkSwitch.trough:active:insensitive { background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } +.header-bar GtkSwitch.trough:active:insensitive, +.primary-toolbar GtkSwitch.trough:active:insensitive { + background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } + /************************* * Check and Radio items * *************************/ @@ -1659,8 +1710,8 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { background-image: linear-gradient(to bottom, #5294E2); border-color: #5294E2; } .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #fcfcfd); - border-color: #9dc1ed; } + background-image: linear-gradient(to bottom, #fafafb); + border-color: #9bc0eb; } .scale.slider:active { background-image: linear-gradient(to bottom, #2679db); border-color: #2679db; } @@ -1777,7 +1828,7 @@ GtkLevelBar.vertical { * Frames * **********/ .frame { - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; padding: 0; } .frame.flat { border-style: none; } @@ -1798,7 +1849,7 @@ GtkScrolledWindow GtkViewport.frame { *********/ .list, .list-row { background-color: #ffffff; - border-color: #dde3e9; } + border-color: #dcdfe3; } .list-row, .grid-child { @@ -1834,12 +1885,40 @@ GtkScrolledWindow GtkViewport.frame { .app-notification, .app-notification.frame { padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: rgba(60, 64, 73, 0.95); + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0, 0, 0, 0.2); - background-color: #ffffff; - background-clip: padding-box; } + border-color: rgba(37, 39, 45, 0.95); } + .app-notification .button, + .app-notification.frame .button { + color: #A8ADB5; + outline-color: rgba(168, 173, 181, 0.3); + border-color: rgba(168, 173, 181, 0.3); + background-color: transparent; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + border-color: rgba(82, 148, 226, 0); } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: #5294E2; + outline-color: rgba(168, 173, 181, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, rgba(48, 52, 59, 0.95)); } + .app-notification .button:active, .app-notification .button:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked { + color: #ffffff; + outline-color: rgba(255, 255, 255, 0.3); + border-color: #5294E2; + background-image: linear-gradient(to bottom, #5294E2); } + .app-notification .button:insensitive, + .app-notification.frame .button:insensitive { + color: #5c6069; + border-color: rgba(168, 173, 181, 0.2); + background-image: linear-gradient(to bottom, rgba(53, 57, 65, 0.95)); } /************* * Expanders * @@ -1858,7 +1937,7 @@ GtkScrolledWindow GtkViewport.frame { ***********/ GtkCalendar { color: #5c616c; - border: 1px solid #dde3e9; + border: 1px solid #dcdfe3; border-radius: 3px; padding: 2px; } GtkCalendar:selected { @@ -1910,18 +1989,18 @@ GtkCalendar { border-bottom-left-radius: 3px; } GtkFileChooserDialog .search-bar { - background-color: #f9fafb; - border-color: #dde3e9; + background-color: #F5F6F7; + border-color: #dcdfe3; box-shadow: none; } GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dde3e9; } + border-top: 1px solid #dcdfe3; } /*********** * Sidebar * ***********/ .sidebar { border: none; - background-color: #f9fafb; } + background-color: #F5F6F7; } .sidebar:selected { background-color: #5294E2; } @@ -1948,7 +2027,7 @@ GtkPaned { margin-right: 0; margin-left: 8px; } GtkPaned .pane-separator { - background-color: #dde3e9; } + background-color: #dcdfe3; } GtkPaned.wide { -GtkPaned-handle-size: 5; @@ -1956,7 +2035,7 @@ GtkPaned.wide { GtkPaned.wide .pane-separator { background-color: transparent; border-style: none solid; - border-color: #dde3e9; + border-color: #dcdfe3; border-width: 1px; } GtkPaned.wide.vertical .pane-separator { border-style: solid none; } @@ -2065,12 +2144,12 @@ GtkColorSwatch#add-color-button { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #cfd6e6; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkColorSwatch#add-color-button:hover { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkColorSwatch#add-color-button .overlay { border-color: transparent; background-color: transparent; @@ -2090,7 +2169,7 @@ GtkColorButton.button { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #5294E2; - background-color: #fcfdfd; } + background-color: #fbfbfc; } GtkVolumeButton.button { padding: 8px; } @@ -2145,7 +2224,7 @@ GtkVolumeButton.button { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, .titlebar .button.titlebutton:active, .titlebar .button.titlebutton:checked { @@ -2300,18 +2379,16 @@ TerminalWindow .notebook tab.reorderable-page:hover { padding-top: 4px; padding-bottom: 4px; } TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } TerminalWindow .notebook tab .active-page GtkLabel { color: rgba(82, 93, 118, 0.8); } TerminalWindow .notebook tab .active-page GtkLabel:backdrop { color: rgba(82, 93, 118, 0.5); } -TerminalWindow .notebook tab.reorderable-page.top:hover { - border-bottom-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { background-color: #e7e8eb; border-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { - background-color: rgba(239, 240, 242, 0.95); } + background-color: #eff0f2; } TerminalWindow .scrollbar.vertical .slider { margin-left: 3px; } TerminalWindow .scrollbar.trough { @@ -2333,7 +2410,7 @@ NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { .nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, .nautilus-list-dim-label { - color: #aaadb3; } + color: #a8abb1; } .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, .nautilus-list-dim-label:selected, .nautilus-list-dim-label:selected:focus { @@ -2365,20 +2442,20 @@ NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline- background-color: rgba(82, 148, 226, 0.8); border-color: rgba(38, 121, 219, 0.8); } .disk-space-display.free { - background-color: #f0f2f5; - border-color: #d1d9e0; } + background-color: #eceef0; + border-color: #d0d5da; } NemoWindow .sidebar .frame { border-width: 0; } NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dde3e9; } + color: #dcdfe3; } NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: rgba(82, 93, 118, 0.8); outline-color: rgba(82, 93, 118, 0.1); border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { border-color: #5294E2; } NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { @@ -2420,7 +2497,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { .gedit-document-panel .list-row .button GtkImage { color: inherit; } .gedit-document-panel .prelight-row .button { - color: #92969e; } + color: #91959c; } .gedit-document-panel .list-row .button:hover, .gedit-document-panel .prelight-row .button:hover { color: #ff4d4d; } @@ -2436,13 +2513,13 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { color: #5c616c; } .gedit-document-panel-dragged-row { - border: 1px solid #dde3e9; - background-color: #dae1e7; + border: 1px solid #dcdfe3; + background-color: #d9dde0; color: #5c616c; } GeditStatusbar { - border-top: 1px solid #dde3e9; - background-color: #f9fafb; } + border-top: 1px solid #dcdfe3; + background-color: #F5F6F7; } GeditStatusMenuButton.button.flat, GeditStatusMenuButton:prelight.button.flat, @@ -2451,7 +2528,7 @@ GeditStatusMenuButton:checked.button.flat { border-radius: 0; } GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { color: rgba(92, 97, 108, 0.6); @@ -2459,9 +2536,9 @@ GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { padding: 2px; } GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: white; + background-color: #fbfbfc; padding: 6px; - border-color: #dde3e9; + border-color: #dcdfe3; border-radius: 0 0 2px 2px; border-width: 0 1px 1px 1px; border-style: solid; } @@ -2469,7 +2546,7 @@ GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(252, 253, 253, 0.9); } + background-color: rgba(251, 251, 252, 0.9); } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { border-color: #5294E2; } @@ -2501,7 +2578,7 @@ GdTaggedEntry { .preferences.sidebar GtkViewport { border: none; } .preferences.sidebar GtkListBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } .preferences.sidebar GtkListBoxRow { padding: 10px; } @@ -2537,10 +2614,10 @@ GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { GbViewStack GtkBox.header.notebook, GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } GbViewStack.focused GtkBox.header.notebook { - background-color: #f9fafb; } + background-color: #F5F6F7; } GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { opacity: 1; } @@ -2784,7 +2861,7 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px #d4d5db, inset 0 -1px #eaecee; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { @@ -2844,8 +2921,8 @@ GraniteWidgetsThinPaned { background-color: transparent; background-image: none; margin: 0; - border-left: 1px solid #dde3e9; - border-right: 1px solid #dde3e9; } + border-left: 1px solid #dcdfe3; + border-right: 1px solid #dcdfe3; } GraniteWidgetsPopOver .frame, GraniteWidgetsStaticNotebook .frame { @@ -2857,7 +2934,7 @@ GraniteWidgetsStaticNotebook .frame { .secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { padding: 3px; - border-bottom: 1px solid #dde3e9; } + border-bottom: 1px solid #dcdfe3; } .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { padding: 0 3px 0 3px; } @@ -2865,8 +2942,8 @@ GraniteWidgetsStaticNotebook .frame { padding: 5px; border-width: 1px 0 0 0; border-style: solid; - border-color: #dde3e9; - background-color: #f9fafb; } + border-color: #dcdfe3; + background-color: #F5F6F7; } .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { padding: 2px 3px 2px 3px; } @@ -2876,7 +2953,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list, .source-list.view { - background-color: #f9fafb; + background-color: #F5F6F7; color: #5c616c; -gtk-icon-style: regular; } @@ -2897,7 +2974,7 @@ GraniteWidgetsStaticNotebook .frame { .source-list .scrollbars-junction { border-image: none; border-color: transparent; - background-color: #f9fafb; + background-color: #F5F6F7; background-image: none; } .source-list.badge, @@ -2936,7 +3013,7 @@ GraniteWidgetsWelcome { background-color: #ffffff; } GraniteWidgetsWelcome GtkLabel { - color: #aaadb3; + color: #a8abb1; font: open sans 11; text-shadow: none; } @@ -2975,7 +3052,7 @@ GraniteWidgetsPopOver * { .h4, .category-label { - color: #8b8e96; + color: #898d95; font-weight: 600; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } @@ -2990,10 +3067,10 @@ GtkListBox .h4 { color: rgba(212, 213, 219, 0.95); } GtkFileChooserDialog .dialog-action-box { - background-color: #f9fafb; } + background-color: #F5F6F7; } NemoWindow GtkEventBox { - background-color: #f9fafb; } + background-color: #F5F6F7; } GtkFileChooserDialog *, NautilusWindow *, @@ -3148,15 +3225,28 @@ MarlinViewWindow .pane-separator { background-color: rgba(60, 64, 73, 0.95); } GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #f9fafb; } + background-color: #F5F6F7; } GeditWindow.background.csd { background-color: transparent; } GeditWindow.background.csd .pane-separator, GeditWindow.background.csd .pane-separator:hover { background-color: rgba(60, 64, 73, 0.95); } - GeditWindow.background.csd .titlebar .pane-separator { + GeditWindow.background.csd .titlebar .pane-separator, GeditWindow.background.csd.maximized .titlebar .pane-separator, + GeditWindow.background.csd .titlebar .pane-separator:backdrop, GeditWindow.background.csd.maximized .titlebar .pane-separator:backdrop { background-color: rgba(212, 213, 219, 0.95); } + GeditWindow.background.csd .titlebar { + background-color: transparent; } + GeditWindow.background.csd.maximized .titlebar { + background-color: #e7e8eb; } + GeditWindow.background.csd.maximized .titlebar:backdrop { + background-color: rgba(239, 240, 242, 0.95); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar, + GeditWindow.background.csd .gedit-titlebar-right.titlebar { + background-color: rgba(231, 232, 235, 0.95); } + GeditWindow.background.csd .gedit-titlebar-left.titlebar:backdrop, + GeditWindow.background.csd .gedit-titlebar-right.titlebar:backdrop { + background-color: rgba(239, 240, 242, 0.95); } .gedit-bottom-panel-paned { background-color: #ffffff; } @@ -3260,25 +3350,25 @@ GtkFileChooserDialog .action-bar.frame { /* GTK NAMED COLORS */ @define-color theme_fg_color #5c616c; @define-color theme_text_color #5c616c; -@define-color theme_bg_color #f9fafb; +@define-color theme_bg_color #F5F6F7; @define-color theme_base_color #ffffff; @define-color theme_selected_bg_color #5294E2; @define-color theme_selected_fg_color #ffffff; @define-color fg_color #5c616c; @define-color text_color #5c616c; -@define-color bg_color #f9fafb; +@define-color bg_color #F5F6F7; @define-color base_color #ffffff; @define-color selected_bg_color #5294E2; @define-color selected_fg_color #ffffff; -@define-color insensitive_bg_color #fcfdfd; +@define-color insensitive_bg_color #fbfbfb; @define-color insensitive_fg_color rgba(92, 97, 108, 0.55); @define-color insensitive_base_color #ffffff; @define-color theme_unfocused_fg_color #5c616c; @define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #f9fafb; +@define-color theme_unfocused_bg_color #F5F6F7; @define-color theme_unfocused_base_color #ffffff; -@define-color borders #dde3e9; -@define-color unfocused_borders #dde3e9; +@define-color borders #dcdfe3; +@define-color unfocused_borders #dcdfe3; @define-color warning_color #F27835; @define-color error_color #FC4138; @define-color success_color #73d216; @@ -3287,6 +3377,24 @@ GtkFileChooserDialog .action-bar.frame { @define-color wm_unfocused_title alpha(rgba(82, 93, 118, 0.8), 0.7); @define-color wm_bg #e7e8eb; @define-color wm_bg_unfocused #eff0f2; -@define-color wm_highlight #f2f3f4; +@define-color wm_highlight #eff0f2; @define-color wm_shadow alpha(black, 0.35); +@define-color wm_button_close_bg #f37076; +@define-color wm_button_close_hover_bg #f79da1; +@define-color wm_button_close_active_bg #ef4048; +@define-color wm_icon_close_bg #ffffff; +@define-color wm_icon_close_hover_bg #ffffff; +@define-color wm_icon_close_active_bg #ffffff; +@define-color wm_button_bg #fdfdfd; +@define-color wm_button_unfocused_bg #f6f7f8; +@define-color wm_button_hover_bg #fdfdfd; +@define-color wm_button_active_bg #5294E2; +@define-color wm_button_border #d8dae0; +@define-color wm_button_unfocused_border #dddee2; +@define-color wm_button_hover_border #5294E2; +@define-color wm_button_active_border #5294E2; +@define-color wm_icon_bg #8d93a4; +@define-color wm_icon_unfocused_bg #b8bcc7; +@define-color wm_icon_hover_bg #70788d; +@define-color wm_icon_active_bg #ffffff; @define-color content_view_bg #ffffff; diff --git a/common/gtk-3.0/3.16/gtk-contained.scss b/common/gtk-3.0/3.16/gtk-contained.scss index 7d5cecf..b067260 100644 --- a/common/gtk-3.0/3.16/gtk-contained.scss +++ b/common/gtk-3.0/3.16/gtk-contained.scss @@ -3,6 +3,8 @@ // - keep the number of defined colors to a minimum, use the color blending functions if // you need a subtle shade +$variant: 'light'; +$darker: 'false'; $transparency: 'true'; @import 'colors'; diff --git a/common/gtk-3.0/3.16/gtk-dark.css b/common/gtk-3.0/3.16/gtk-dark.css new file mode 100644 index 0000000..bc31fe5 --- /dev/null +++ b/common/gtk-3.0/3.16/gtk-dark.css @@ -0,0 +1 @@ +@import url("gtk-contained-dark.css"); diff --git a/common/index.theme-dark b/common/index.theme-dark new file mode 100644 index 0000000..7f5fbfc --- /dev/null +++ b/common/index.theme-dark @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Arc-Dark +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Arc-Dark +MetacityTheme=Arc-Dark +IconTheme=gnome +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/common/index.theme-darker b/common/index.theme-darker new file mode 100644 index 0000000..7166a04 --- /dev/null +++ b/common/index.theme-darker @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Arc-Darker +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Arc-Darker +MetacityTheme=Arc-Darker +IconTheme=gnome +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/common/metacity-1/close_prelight.svg b/common/metacity-1/button-bg.svg index 6b7ff04..49a6f1e 100644 --- a/common/metacity-1/close_prelight.svg +++ b/common/metacity-1/button-bg.svg @@ -15,7 +15,7 @@ width="16" xml:space="preserve" inkscape:version="0.91 r13725" - sodipodi:docname="close_prelight.svg"><metadata + sodipodi:docname="button_bg.svg"><metadata id="metadata26"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs @@ -29,14 +29,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1366" - inkscape:window-height="720" + inkscape:window-height="718" id="namedview22" showgrid="true" inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" + inkscape:cx="4.4272827" + inkscape:cy="4.949103" inkscape:window-x="0" - inkscape:window-y="25" + inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" inkscape:snap-bbox="true" @@ -50,60 +50,56 @@ enabled="true" snapvisiblegridlinesonly="true" /></sodipodi:namedview><g style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-542,185.63782)"><g - id="g4927" + id="titlebutton-close" + inkscape:label="#g6210" + transform="translate(-645,185.63782)"><g + id="g4927-9" style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"><g + transform="translate(-678,-432.63782)"><g transform="translate(-103,0)" style="display:inline;opacity:1" - id="g4490-6-9"><g - id="g4092-0-2-3" + id="g4490-6-5-2"><g + id="g4092-0-2-21-0" style="display:inline" transform="translate(58,0)"><circle r="7" cy="255" cx="1376" - style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-8" /></g></g><g - id="g4778-4" + style="fill:#7d7d7d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6" /></g></g><g + id="g4778-2-68" transform="translate(1323,246.86719)" style="fill:#ffffff;fill-opacity:1"><g style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-44" + id="layer9-9-4-4" transform="translate(-60,-518)" /><g - id="layer10-2-9" + id="layer10-2-1-8" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /><g - id="layer11-16-3" + id="layer11-16-4-9" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /><g transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" + id="g2996-76-5" style="fill:#ffffff;fill-opacity:1"><g transform="translate(-60,-518)" - id="layer12-4-7" + id="layer12-4-5-7" style="fill:#ffffff;fill-opacity:1"><g transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#ffffff;fill-opacity:1"><path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-5" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /></g></g></g><g - id="layer13-2-02" + id="layer4-4-1-9-5" + style="display:inline;fill:#ffffff;fill-opacity:1" /></g></g><g + id="layer13-2-6-11" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /><g - id="layer14-4-7" + id="layer14-4-0-33" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /><g - id="layer15-7-4" + id="layer15-7-3-0" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /></g></g><rect y="-185.63782" - x="542" + x="645" height="16" width="16" - id="rect17883-5" + id="rect17883-39" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/max_prelight.svg b/common/metacity-1/button-border.svg index a6986e1..0822007 100644 --- a/common/metacity-1/max_prelight.svg +++ b/common/metacity-1/button-border.svg @@ -15,10 +15,10 @@ width="16" xml:space="preserve" inkscape:version="0.91 r13725" - sodipodi:docname="max_prelight.svg"><metadata + sodipodi:docname="button-border.svg"><metadata id="metadata26"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs id="defs24" /><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" @@ -29,14 +29,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1366" - inkscape:window-height="720" + inkscape:window-height="718" id="namedview22" showgrid="true" inkscape:zoom="16" - inkscape:cx="-1.0102173" + inkscape:cx="-5.1352173" inkscape:cy="2.449103" inkscape:window-x="0" - inkscape:window-y="25" + inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" inkscape:snap-bbox="true" @@ -55,14 +55,8 @@ transform="translate(-513,185.63782)"><g id="g4891" style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"><ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /><path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + transform="translate(-781,-432.63782)"><path + style="display:inline;opacity:1;fill:#7d7d7d;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" id="path4068-7-5-9-6-7-2-5-78" inkscape:connector-curvature="0" /><g @@ -104,12 +98,7 @@ transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="actions" - id="layer12-3-0"><path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /></g></g></g><rect + id="layer12-3-0" /></g></g><rect y="-185.63782" x="513" height="16" diff --git a/common/metacity-1/close.svg b/common/metacity-1/close-icon.svg index ee25b7c..1f717ab 100644 --- a/common/metacity-1/close.svg +++ b/common/metacity-1/close-icon.svg @@ -15,12 +15,12 @@ width="16" xml:space="preserve" inkscape:version="0.91 r13725" - sodipodi:docname="close.svg"><metadata + sodipodi:docname="close-icon.svg"><metadata id="metadata26"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" + pagecolor="#cecece" bordercolor="#666666" borderopacity="1" objecttolerance="10" @@ -29,14 +29,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1366" - inkscape:window-height="720" + inkscape:window-height="718" id="namedview22" showgrid="true" inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" + inkscape:cx="-17.197717" + inkscape:cy="-0.050897" inkscape:window-x="0" - inkscape:window-y="25" + inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" inkscape:snap-bbox="true" @@ -61,12 +61,7 @@ id="g4490-6-5-2"><g id="g4092-0-2-21-0" style="display:inline" - transform="translate(58,0)"><circle - r="7" - cy="255" - cx="1376" - style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6" /></g></g><g + transform="translate(58,0)" /></g><g id="g4778-2-68" transform="translate(1323,246.86719)" style="fill:#ffffff;fill-opacity:1"><g @@ -91,7 +86,7 @@ inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" id="path10839-9-2-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /></g></g></g><g + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7d7d7d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /></g></g></g><g id="layer13-2-6-11" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /><g diff --git a/common/metacity-1/close_pressed.svg b/common/metacity-1/close_pressed.svg deleted file mode 100644 index a294819..0000000 --- a/common/metacity-1/close_pressed.svg +++ /dev/null @@ -1,109 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="close_pressed.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-441,185.63782)"><g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"><g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"><g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"><circle - r="7" - cy="255" - cx="1376" - style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /></g></g><g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"><g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /><g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#ffffff;fill-opacity:1"><g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#ffffff;fill-opacity:1"><g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#ffffff;fill-opacity:1"><path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-8-7" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /></g></g></g><g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /></g></g><rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/close_unfocused.svg b/common/metacity-1/close_unfocused.svg deleted file mode 100644 index 4beb085..0000000 --- a/common/metacity-1/close_unfocused.svg +++ /dev/null @@ -1,108 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - id="titlebutton-close-backdrop" - inkscape:label="#g6497" - style="display:inline;opacity:0.7" - transform="translate(-645,168.63782)"><g - id="g4927-9-9" - style="display:inline;opacity:1" - transform="translate(-678,-415.63782)"><ellipse - cy="255" - cx="1331" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-2" - rx="6" - ry="6.0000005" /><path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-8" - inkscape:connector-curvature="0" /><g - id="g4778-2" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"><g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4" - transform="translate(-60,-518)" /><g - id="layer10-2-1" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - id="layer11-16-4" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76" - style="fill:#ffffff;fill-opacity:1"><g - transform="translate(-60,-518)" - id="layer12-4-5" - style="fill:#ffffff;fill-opacity:1"><g - transform="translate(19,-242)" - id="layer4-4-1-9" - style="display:inline;fill:#ffffff;fill-opacity:1"><path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /></g></g></g><g - id="layer13-2-6" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - id="layer14-4-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /><g - id="layer15-7-3" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /></g></g><rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-2" - width="16" - height="16" - x="645" - y="-168.63782" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/max.svg b/common/metacity-1/max-icon.svg index 37b7f8e..4120785 100644 --- a/common/metacity-1/max.svg +++ b/common/metacity-1/max-icon.svg @@ -15,12 +15,12 @@ width="16" xml:space="preserve" inkscape:version="0.91 r13725" - sodipodi:docname="max.svg"><metadata + sodipodi:docname="max-icon.svg"><metadata id="metadata26"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" + pagecolor="#d7d7d7" bordercolor="#666666" borderopacity="1" objecttolerance="10" @@ -29,14 +29,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1366" - inkscape:window-height="720" + inkscape:window-height="718" id="namedview22" showgrid="true" inkscape:zoom="16" - inkscape:cx="-1.0102173" + inkscape:cx="-0.5727173" inkscape:cy="2.449103" inkscape:window-x="0" - inkscape:window-y="25" + inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" inkscape:snap-bbox="true" @@ -52,17 +52,7 @@ style="display:inline" id="titlebutton-max" inkscape:label="#g6234" - transform="translate(-616,185.63782)"><ellipse - cy="-177.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-6" - rx="6" - ry="6.0000005" /><path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-2" - inkscape:connector-curvature="0" /><g + transform="translate(-616,185.63782)"><g id="g7146" style="display:inline;opacity:1" transform="translate(-781,-432.63782)"><g @@ -73,7 +63,7 @@ style="display:inline" transform="translate(58,0)" /></g><path id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" + style="display:inline;opacity:1;fill:#7d7d7d;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" sodipodi:nodetypes="csscccsscc" /></g><rect diff --git a/common/metacity-1/max_pressed.svg b/common/metacity-1/max_pressed.svg deleted file mode 100644 index eafbbf5..0000000 --- a/common/metacity-1/max_pressed.svg +++ /dev/null @@ -1,119 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="max_pressed.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-412,185.63782)"><g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"><g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"><g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"><circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /></g></g><g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /><g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"><path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /></g></g></g><rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/max_unfocused.svg b/common/metacity-1/max_unfocused.svg deleted file mode 100644 index 035326e..0000000 --- a/common/metacity-1/max_unfocused.svg +++ /dev/null @@ -1,85 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="max_unfocused.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.7" - transform="translate(-616,168.63782)"><ellipse - cy="-160.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-84" - rx="6" - ry="6.0000005" /><path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-7" - inkscape:connector-curvature="0" /><g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"><g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"><g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /></g><path - id="path4293-5" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /></g><rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/metacity-theme-1-dark.xml b/common/metacity-1/metacity-theme-1-dark.xml new file mode 100644 index 0000000..113dce4 --- /dev/null +++ b/common/metacity-1/metacity-theme-1-dark.xml @@ -0,0 +1,778 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#afb8c5" /> +<constant name="C_title_unfocused" value="#686f78" /> + +<constant name="C_wm_bg_focused" value="#2f343b" /> +<constant name="C_wm_bg_unfocused" value="#32383f" /> + +<constant name="C_wm_highlight" value="#353b44" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="#e45e65" /> +<constant name="C_button_close_bg_hover" value="#f48085" /> +<constant name="C_button_close_bg_active" value="#e6262f" /> + +<constant name="C_icon_close_bg_focused" value="#ffffff" /> +<constant name="C_icon_close_bg_hover" value="#ffffff" /> +<constant name="C_icon_close_bg_active" value="#ffffff" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_focused" value="#272c32" /> +<constant name="C_button_bg_unfocused" value="#2a3035" /> +<constant name="C_button_bg_hover" value="#272c32" /> +<constant name="C_button_bg_active" value="#5294E2" /> + +<constant name="C_button_border_focused" value="#191C21" /> +<constant name="C_button_border_unfocused" value="#1F2328" /> +<constant name="C_button_border_hover" value="#5294E2" /> +<constant name="C_button_border_active" value="#5294E2" /> + +<constant name="C_icon_bg_focused" value="#939ca8" /> +<constant name="C_icon_bg_unfocused" value="#686f78" /> +<constant name="C_icon_bg_hover" value="#afb8c5" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="5"/> + <distance name="right_titlebar_edge" value="5"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="0" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/common/metacity-1/metacity-theme-1.xml b/common/metacity-1/metacity-theme-1.xml index ba83938..13c50a8 100644 --- a/common/metacity-1/metacity-theme-1.xml +++ b/common/metacity-1/metacity-theme-1.xml @@ -18,6 +18,33 @@ <constant name="C_wm_highlight" value="#eeeff1" /> +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="#f37076" /> +<constant name="C_button_close_bg_hover" value="#f79da1" /> +<constant name="C_button_close_bg_active" value="#ef4048" /> + +<constant name="C_icon_close_bg_focused" value="#ffffff" /> +<constant name="C_icon_close_bg_hover" value="#ffffff" /> +<constant name="C_icon_close_bg_active" value="#ffffff" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_focused" value="#ffffff" /> +<constant name="C_button_bg_unfocused" value="#ffffff" /> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#5294E2" /> + +<constant name="C_button_border_focused" value="#d8dae0" /> +<constant name="C_button_border_unfocused" value="#dddee2" /> +<constant name="C_button_border_hover" value="#5294E2" /> +<constant name="C_button_border_active" value="#5294E2" /> + +<constant name="C_icon_bg_focused" value="#a7adb9" /> +<constant name="C_icon_bg_unfocused" value="#babec7" /> +<constant name="C_icon_bg_hover" value="#757d91" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + <!-- geometries --> <frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> @@ -90,116 +117,143 @@ <draw_ops name="entire_background_focused"> <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="entire_background_unfocused"> <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="titlebar_focused"> - <include name="entire_background_focused" /> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="titlebar_unfocused"> - <include name="entire_background_unfocused" /> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="titlebar_max"> - <include name="entire_background_focused" /> + </draw_ops> <draw_ops name="titlebar_small_focused"> - <include name="entire_background_focused" /> + </draw_ops> <draw_ops name="titlebar_small_unfocused"> - <include name="entire_background_unfocused" /> + </draw_ops> <draw_ops name="border_focused"> - <include name="entire_background_focused" /> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> </draw_ops> <draw_ops name="border_unfocused"> - <include name="entire_background_unfocused" /> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> </draw_ops> <!--close--> <draw_ops name="close_focused"> - <image filename="close.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_focused_pressed"> - <image filename="close_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_focused_prelight"> - <image filename="close_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16" /> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused"> - <image filename="close_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16" /> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused_prelight"> - <image filename="close_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused_pressed"> - <image filename="close_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <!--maximize--> <draw_ops name="maximize_focused"> - <image filename="max.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_focused_pressed"> - <image filename="max_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_focused_prelight"> - <image filename="max_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused"> - <image filename="max_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused_prelight"> - <image filename="max_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused_pressed"> - <image filename="max_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <!--minimize--> <draw_ops name="minimize_focused"> - <image filename="min.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_focused_pressed"> - <image filename="min_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_focused_prelight"> - <image filename="min_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused"> - <image filename="min_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused_prelight"> - <image filename="min_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused_pressed"> - <image filename="min_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> diff --git a/common/metacity-1/metacity-theme-2-dark.xml b/common/metacity-1/metacity-theme-2-dark.xml new file mode 100644 index 0000000..113dce4 --- /dev/null +++ b/common/metacity-1/metacity-theme-2-dark.xml @@ -0,0 +1,778 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Arc</name> + <author>horst3180</author> + <copyright>horst3180</copyright> + <date>2015</date> + <description>Arc Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#afb8c5" /> +<constant name="C_title_unfocused" value="#686f78" /> + +<constant name="C_wm_bg_focused" value="#2f343b" /> +<constant name="C_wm_bg_unfocused" value="#32383f" /> + +<constant name="C_wm_highlight" value="#353b44" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="#e45e65" /> +<constant name="C_button_close_bg_hover" value="#f48085" /> +<constant name="C_button_close_bg_active" value="#e6262f" /> + +<constant name="C_icon_close_bg_focused" value="#ffffff" /> +<constant name="C_icon_close_bg_hover" value="#ffffff" /> +<constant name="C_icon_close_bg_active" value="#ffffff" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_focused" value="#272c32" /> +<constant name="C_button_bg_unfocused" value="#2a3035" /> +<constant name="C_button_bg_hover" value="#272c32" /> +<constant name="C_button_bg_active" value="#5294E2" /> + +<constant name="C_button_border_focused" value="#191C21" /> +<constant name="C_button_border_unfocused" value="#1F2328" /> +<constant name="C_button_border_hover" value="#5294E2" /> +<constant name="C_button_border_active" value="#5294E2" /> + +<constant name="C_icon_bg_focused" value="#939ca8" /> +<constant name="C_icon_bg_unfocused" value="#686f78" /> +<constant name="C_icon_bg_hover" value="#afb8c5" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="5"/> + <distance name="right_titlebar_edge" value="5"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="0" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/common/metacity-1/metacity-theme-2.xml b/common/metacity-1/metacity-theme-2.xml index ba83938..79fee42 100644 --- a/common/metacity-1/metacity-theme-2.xml +++ b/common/metacity-1/metacity-theme-2.xml @@ -18,6 +18,33 @@ <constant name="C_wm_highlight" value="#eeeff1" /> +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="#f37076" /> +<constant name="C_button_close_bg_hover" value="#f79da1" /> +<constant name="C_button_close_bg_active" value="#ef4048" /> + +<constant name="C_icon_close_bg_focused" value="#ffffff" /> +<constant name="C_icon_close_bg_hover" value="#ffffff" /> +<constant name="C_icon_close_bg_active" value="#ffffff" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_focused" value="#ffffff" /> +<constant name="C_button_bg_unfocused" value="#ffffff" /> +<constant name="C_button_bg_hover" value="#fdfdfd" /> +<constant name="C_button_bg_active" value="#5294E2" /> + +<constant name="C_button_border_focused" value="#d8dae0" /> +<constant name="C_button_border_unfocused" value="#dddee2" /> +<constant name="C_button_border_hover" value="#5294E2" /> +<constant name="C_button_border_active" value="#5294E2" /> + +<constant name="C_icon_bg_focused" value="#8d93a4" /> +<constant name="C_icon_bg_unfocused" value="#b8bcc7" /> +<constant name="C_icon_bg_hover" value="#70788d" /> +<constant name="C_icon_bg_active" value="#ffffff" /> + <!-- geometries --> <frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> @@ -90,116 +117,143 @@ <draw_ops name="entire_background_focused"> <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="entire_background_unfocused"> <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="titlebar_focused"> - <include name="entire_background_focused" /> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="titlebar_unfocused"> - <include name="entire_background_unfocused" /> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> </draw_ops> <draw_ops name="titlebar_max"> - <include name="entire_background_focused" /> + </draw_ops> <draw_ops name="titlebar_small_focused"> - <include name="entire_background_focused" /> + </draw_ops> <draw_ops name="titlebar_small_unfocused"> - <include name="entire_background_unfocused" /> + </draw_ops> <draw_ops name="border_focused"> - <include name="entire_background_focused" /> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> </draw_ops> <draw_ops name="border_unfocused"> - <include name="entire_background_unfocused" /> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> </draw_ops> <!--close--> <draw_ops name="close_focused"> - <image filename="close.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_focused_pressed"> - <image filename="close_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_focused_prelight"> - <image filename="close_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16" /> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused"> - <image filename="close_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16" /> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused_prelight"> - <image filename="close_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused_pressed"> - <image filename="close_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <!--maximize--> <draw_ops name="maximize_focused"> - <image filename="max.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_focused_pressed"> - <image filename="max_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_focused_prelight"> - <image filename="max_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused"> - <image filename="max_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused_prelight"> - <image filename="max_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused_pressed"> - <image filename="max_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <!--minimize--> <draw_ops name="minimize_focused"> - <image filename="min.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_focused_pressed"> - <image filename="min_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_focused_prelight"> - <image filename="min_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused"> - <image filename="min_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused_prelight"> - <image filename="min_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused_pressed"> - <image filename="min_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> diff --git a/common/metacity-1/metacity-theme-3.xml b/common/metacity-1/metacity-theme-3.xml index 734762a..1949098 100644 --- a/common/metacity-1/metacity-theme-3.xml +++ b/common/metacity-1/metacity-theme-3.xml @@ -18,6 +18,33 @@ <constant name="C_wm_highlight" value="gtk:custom(wm_highlight,#eeeff1)" /> +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(wm_button_close_bg,#eeeff1)" /> +<constant name="C_button_close_bg_hover" value="gtk:custom(wm_button_close_hover_bg,#eeeff1)" /> +<constant name="C_button_close_bg_active" value="gtk:custom(wm_button_close_active_bg,#eeeff1)" /> + +<constant name="C_icon_close_bg_focused" value="gtk:custom(wm_icon_close_bg,#eeeff1)" /> +<constant name="C_icon_close_bg_hover" value="gtk:custom(wm_icon_close_hover_bg,#eeeff1)" /> +<constant name="C_icon_close_bg_active" value="gtk:custom(wm_icon_close_active_bg,#eeeff1)" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_focused" value="gtk:custom(wm_button_bg,#eeeff1)" /> +<constant name="C_button_bg_unfocused" value="gtk:custom(wm_button_unfocused_bg,#eeeff1)" /> +<constant name="C_button_bg_hover" value="gtk:custom(wm_button_hover_bg,#eeeff1)" /> +<constant name="C_button_bg_active" value="gtk:custom(wm_button_active_bg,#eeeff1)" /> + +<constant name="C_button_border_focused" value="gtk:custom(wm_button_border,#eeeff1)" /> +<constant name="C_button_border_unfocused" value="gtk:custom(wm_button_unfocused_border,#eeeff1)" /> +<constant name="C_button_border_hover" value="gtk:custom(wm_button_hover_border,#eeeff1)" /> +<constant name="C_button_border_active" value="gtk:custom(wm_button_active_border,#eeeff1)" /> + +<constant name="C_icon_bg_focused" value="gtk:custom(wm_icon_bg,#eeeff1)" /> +<constant name="C_icon_bg_unfocused" value="gtk:custom(wm_icon_unfocused_bg,#eeeff1)" /> +<constant name="C_icon_bg_hover" value="gtk:custom(wm_icon_hover_bg,#eeeff1)" /> +<constant name="C_icon_bg_active" value="gtk:custom(wm_icon_active_bg,#eeeff1)" /> + <!-- geometries --> <frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> @@ -168,77 +195,104 @@ <!--close--> <draw_ops name="close_focused"> - <image filename="close.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_focused_pressed"> - <image filename="close_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_focused_prelight"> - <image filename="close_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16" /> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused"> - <image filename="close_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16" /> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused_prelight"> - <image filename="close_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="close_unfocused_pressed"> - <image filename="close_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <!--maximize--> <draw_ops name="maximize_focused"> - <image filename="max.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_focused_pressed"> - <image filename="max_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_focused_prelight"> - <image filename="max_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused"> - <image filename="max_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused_prelight"> - <image filename="max_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="maximize_unfocused_pressed"> - <image filename="max_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <!--minimize--> <draw_ops name="minimize_focused"> - <image filename="min.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_focused_pressed"> - <image filename="min_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_focused_prelight"> - <image filename="min_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused"> - <image filename="min_unfocused.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused_prelight"> - <image filename="min_prelight.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> <draw_ops name="minimize_unfocused_pressed"> - <image filename="min_pressed.svg" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="width/2-8" y="height/2-8" width="16" height="16"/> </draw_ops> diff --git a/common/metacity-1/min.svg b/common/metacity-1/min-icon.svg index 4f386fa..cac4f61 100644 --- a/common/metacity-1/min.svg +++ b/common/metacity-1/min-icon.svg @@ -15,12 +15,12 @@ width="16" xml:space="preserve" inkscape:version="0.91 r13725" - sodipodi:docname="min.svg"><metadata + sodipodi:docname="min-icon.svg"><metadata id="metadata26"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" + pagecolor="#e2e2e2" bordercolor="#666666" borderopacity="1" objecttolerance="10" @@ -29,14 +29,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1366" - inkscape:window-height="720" + inkscape:window-height="718" id="namedview22" showgrid="true" inkscape:zoom="16" - inkscape:cx="-1.0102173" + inkscape:cx="-20.135217" inkscape:cy="2.449103" inkscape:window-x="0" - inkscape:window-y="25" + inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" inkscape:snap-bbox="true" @@ -52,13 +52,7 @@ style="display:inline" id="titlebutton-min" inkscape:label="#g6247" - transform="translate(-587,185.63782)"><ellipse - cy="-177.63782" - cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2" - rx="6" - ry="6.0000005" /><g + transform="translate(-587,185.63782)"><g id="g7138" style="display:inline;opacity:1" transform="translate(-781,-432.63782)"><g @@ -71,15 +65,11 @@ inkscape:connector-curvature="0" d="m 1373,254 0,2 6,0 0,-2 z" id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7d7d7d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" /></g><rect y="-185.63782" x="587" height="16" width="16" id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /><path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5" - inkscape:connector-curvature="0" /></g></svg>
\ No newline at end of file + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/min_prelight.svg b/common/metacity-1/min_prelight.svg deleted file mode 100644 index e97be51..0000000 --- a/common/metacity-1/min_prelight.svg +++ /dev/null @@ -1,118 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="min_prelight.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-484,185.63782)"><g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"><ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /><path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /><g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /><g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"><path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /></g></g></g><rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/min_pressed.svg b/common/metacity-1/min_pressed.svg deleted file mode 100644 index 9365f86..0000000 --- a/common/metacity-1/min_pressed.svg +++ /dev/null @@ -1,119 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="min_pressed.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - style="display:inline" - id="titlebutton-min-active" - inkscape:label="#g6414" - transform="translate(-383,185.63782)"><g - id="g4909-1" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"><g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4"><g - id="g4092-0-7-2-0-0" - style="display:inline" - transform="translate(58,0)"><circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6" /></g></g><g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3" - transform="translate(1265,247)"><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3" - style="fill:#c0e3ff;fill-opacity:1" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8" /><g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7"><path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /></g></g></g><rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9" - width="16" - height="16" - x="383" - y="-185.63782" /></g></svg>
\ No newline at end of file diff --git a/common/metacity-1/min_unfocused.svg b/common/metacity-1/min_unfocused.svg deleted file mode 100644 index 472d968..0000000 --- a/common/metacity-1/min_unfocused.svg +++ /dev/null @@ -1,85 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="min_unfocused.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="720" - id="namedview22" - showgrid="true" - inkscape:zoom="16" - inkscape:cx="-1.0102173" - inkscape:cy="2.449103" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - id="titlebutton-min-backdrop" - inkscape:label="#g6534" - style="display:inline;opacity:0.7" - transform="translate(-587,168.63782)"><ellipse - cy="-160.63782" - cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-60" - rx="6" - ry="6.0000005" /><path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-4" - inkscape:connector-curvature="0" /><g - style="display:inline;opacity:1" - id="g7138-0" - transform="translate(-781,-415.63782)"><g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3"><g - id="g4092-0-7" - style="display:inline" - transform="translate(58,0)" /></g><path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /></g><rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3" - width="16" - height="16" - x="587" - y="-168.63782" /></g></svg>
\ No newline at end of file diff --git a/common/unity/close.svg b/common/unity/close.svg index 5ef197d..cd18456 100644..120000 --- a/common/unity/close.svg +++ b/common/unity/close.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/close.svg
\ No newline at end of file diff --git a/common/unity/close_dash.svg b/common/unity/close_dash.svg index e5e4f4f..054a65b 100644..120000 --- a/common/unity/close_dash.svg +++ b/common/unity/close_dash.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +dash/close_dash.svg
\ No newline at end of file diff --git a/common/unity/close_dash_disabled.svg b/common/unity/close_dash_disabled.svg index d4a4d5a..6635e95 100644..120000 --- a/common/unity/close_dash_disabled.svg +++ b/common/unity/close_dash_disabled.svg @@ -1,215 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="8.8372772" - inkscape:cy="16.670572" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1319,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-close-backdrop" - inkscape:label="#g4927-9"> - <g - id="g4490-6-5-6" - style="display:inline;opacity:1" - transform="translate(-103,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-2-21-3"> - <circle - id="path4068-7-5-9-3" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-4" - width="16" - height="16" - x="1426" - y="248" /> - </g> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(1323,246.86719)" - id="g4778-2-6"> - <g - transform="translate(-60,-518)" - id="layer9-9-4-5" - style="display:inline;fill:#ffffff;fill-opacity:1" /> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(-60,-518)" - id="layer10-2-1-2" /> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(-60,-518)" - id="layer11-16-4-8" /> - <g - style="fill:#ffffff;fill-opacity:1" - id="g2996-76-7" - transform="matrix(0.75,0,0,0.75,2,2.0546875)"> - <g - style="fill:#ffffff;fill-opacity:1" - id="layer12-4-5-9" - transform="translate(-60,-518)"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer4-4-1-9-2" - transform="translate(19,-242)"> - <path - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#edf5fb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" - id="path10839-9-2-8" - d="m 45,765.33336 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,767.92711 l 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,770.77086 46.71875,773.05211 C 46.530586,773.2403 46.26529,773.33336 46,773.33336 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(-60,-518)" - id="layer13-2-6-1" /> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(-60,-518)" - id="layer14-4-0-3" /> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(-60,-518)" - id="layer15-7-3-2" /> - </g> - </g> - </g> -</svg> +dash/close_dash_disabled.svg
\ No newline at end of file diff --git a/common/unity/close_dash_prelight.svg b/common/unity/close_dash_prelight.svg index 99d4e33..4f99727 100644..120000 --- a/common/unity/close_dash_prelight.svg +++ b/common/unity/close_dash_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-5" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +dash/close_dash_prelight.svg
\ No newline at end of file diff --git a/common/unity/close_dash_pressed.svg b/common/unity/close_dash_pressed.svg index cf185e5..5bb4c0b 100644..120000 --- a/common/unity/close_dash_pressed.svg +++ b/common/unity/close_dash_pressed.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-8-7" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +dash/close_dash_pressed.svg
\ No newline at end of file diff --git a/common/unity/close_focused_normal.svg b/common/unity/close_focused_normal.svg index 3dbf0fd..cd18456 100644..120000 --- a/common/unity/close_focused_normal.svg +++ b/common/unity/close_focused_normal.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_focused_normal.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/close.svg
\ No newline at end of file diff --git a/common/unity/close_focused_prelight.svg b/common/unity/close_focused_prelight.svg index ab27ac1..e338f1e 100644..120000 --- a/common/unity/close_focused_prelight.svg +++ b/common/unity/close_focused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_focused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-5" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/close_prelight.svg
\ No newline at end of file diff --git a/common/unity/close_focused_pressed.svg b/common/unity/close_focused_pressed.svg index d88c52d..217bc6c 100644..120000 --- a/common/unity/close_focused_pressed.svg +++ b/common/unity/close_focused_pressed.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_focused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-8-7" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/close_pressed.svg
\ No newline at end of file diff --git a/common/unity/close_unfocused.svg b/common/unity/close_unfocused.svg index 7f97583..c55c7f2 100644..120000 --- a/common/unity/close_unfocused.svg +++ b/common/unity/close_unfocused.svg @@ -1,216 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-close-backdrop" - inkscape:label="#g6497" - style="display:inline;opacity:0.7" - transform="translate(-641,1201)"> - <g - id="g4927-9-9" - style="display:inline;opacity:1" - transform="translate(-678,-415.63782)"> - <ellipse - cy="255" - cx="1331" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-2" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-8" - inkscape:connector-curvature="0" /> - <g - id="g4778-2" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-4" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-6" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-3" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-2" - width="16" - height="16" - x="645" - y="-168.63782" /> - </g> - </g> -</svg> +window-buttons/close_unfocused.svg
\ No newline at end of file diff --git a/common/unity/close_unfocused_prelight.svg b/common/unity/close_unfocused_prelight.svg index 85e3a1d..e338f1e 100644..120000 --- a/common/unity/close_unfocused_prelight.svg +++ b/common/unity/close_unfocused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-5" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/close_prelight.svg
\ No newline at end of file diff --git a/common/unity/close_unfocused_pressed.svg b/common/unity/close_unfocused_pressed.svg index 5d2b37b..217bc6c 100644..120000 --- a/common/unity/close_unfocused_pressed.svg +++ b/common/unity/close_unfocused_pressed.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#ffffff;fill-opacity:1"> - <g - style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#ffffff;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#ffffff;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-8-7" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#ffffff;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/close_pressed.svg
\ No newline at end of file diff --git a/common/unity/dash/close_dash.svg b/common/unity/dash/close_dash.svg new file mode 100644 index 0000000..e5e4f4f --- /dev/null +++ b/common/unity/dash/close_dash.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="-6.9400422" + inkscape:cy="16.493795" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2"> + <g + id="g4092-0-2-21-0" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6" /> + </g> + </g> + <g + id="g4778-2-68" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-2" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-11" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/close_dash_disabled.svg b/common/unity/dash/close_dash_disabled.svg new file mode 100644 index 0000000..d4a4d5a --- /dev/null +++ b/common/unity/dash/close_dash_disabled.svg @@ -0,0 +1,215 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="8.8372772" + inkscape:cy="16.670572" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1319,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-close-backdrop" + inkscape:label="#g4927-9"> + <g + id="g4490-6-5-6" + style="display:inline;opacity:1" + transform="translate(-103,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-2-21-3"> + <circle + id="path4068-7-5-9-3" + style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-4" + width="16" + height="16" + x="1426" + y="248" /> + </g> + <g + style="fill:#ffffff;fill-opacity:1" + transform="translate(1323,246.86719)" + id="g4778-2-6"> + <g + transform="translate(-60,-518)" + id="layer9-9-4-5" + style="display:inline;fill:#ffffff;fill-opacity:1" /> + <g + style="fill:#ffffff;fill-opacity:1" + transform="translate(-60,-518)" + id="layer10-2-1-2" /> + <g + style="fill:#ffffff;fill-opacity:1" + transform="translate(-60,-518)" + id="layer11-16-4-8" /> + <g + style="fill:#ffffff;fill-opacity:1" + id="g2996-76-7" + transform="matrix(0.75,0,0,0.75,2,2.0546875)"> + <g + style="fill:#ffffff;fill-opacity:1" + id="layer12-4-5-9" + transform="translate(-60,-518)"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer4-4-1-9-2" + transform="translate(19,-242)"> + <path + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#edf5fb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" + id="path10839-9-2-8" + d="m 45,765.33336 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,767.92711 l 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,770.77086 46.71875,773.05211 C 46.530586,773.2403 46.26529,773.33336 46,773.33336 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + style="fill:#ffffff;fill-opacity:1" + transform="translate(-60,-518)" + id="layer13-2-6-1" /> + <g + style="fill:#ffffff;fill-opacity:1" + transform="translate(-60,-518)" + id="layer14-4-0-3" /> + <g + style="fill:#ffffff;fill-opacity:1" + transform="translate(-60,-518)" + id="layer15-7-3-2" /> + </g> + </g> + </g> +</svg> diff --git a/common/unity/dash/close_dash_prelight.svg b/common/unity/dash/close_dash_prelight.svg new file mode 100644 index 0000000..99d4e33 --- /dev/null +++ b/common/unity/dash/close_dash_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="-6.9400422" + inkscape:cy="16.493795" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9"> + <g + id="g4092-0-2-3" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-8" /> + </g> + </g> + <g + id="g4778-4" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-5" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-02" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/close_dash_pressed.svg b/common/unity/dash/close_dash_pressed.svg new file mode 100644 index 0000000..cf185e5 --- /dev/null +++ b/common/unity/dash/close_dash_pressed.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="-6.9400422" + inkscape:cy="16.493795" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active" + inkscape:label="#g6332" + transform="translate(-437,1218)"> + <g + id="g4927-8-7" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7"> + <g + id="g4092-0-2-2-1" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-4-9" /> + </g> + </g> + <g + id="g4778-3-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-8-7" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-0-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/maximize_dash.svg b/common/unity/dash/maximize_dash.svg new file mode 100644 index 0000000..5029ad7 --- /dev/null +++ b/common/unity/dash/maximize_dash.svg @@ -0,0 +1,172 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="8.8372772" + inkscape:cy="16.670572" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1393,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-max" + inkscape:label="#g7146"> + <g + id="g4490-2" + style="display:inline;opacity:1" + transform="translate(-29,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-6"> + <circle + id="path4068-7-6" + style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + </g> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 1403.7995,253.00002 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + style="display:inline;opacity:1;fill:#edf5fb;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-5" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-1" + width="16" + height="16" + x="1397" + y="248" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/maximize_dash_disabled.svg b/common/unity/dash/maximize_dash_disabled.svg new file mode 100644 index 0000000..750709e --- /dev/null +++ b/common/unity/dash/maximize_dash_disabled.svg @@ -0,0 +1,172 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="8.8372772" + inkscape:cy="16.670572" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1393,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-max-backdrop" + inkscape:label="#g7146"> + <g + id="g4490-2-3" + style="display:inline;opacity:1" + transform="translate(-29,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-6-8"> + <circle + id="path4068-7-6-7" + style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + </g> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 1403.7995,253.00002 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + style="display:inline;opacity:0.5;fill:#edf5fb;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-5-9" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-2" + width="16" + height="16" + x="1397" + y="248" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/maximize_dash_prelight.svg b/common/unity/dash/maximize_dash_prelight.svg new file mode 100644 index 0000000..f95f9d0 --- /dev/null +++ b/common/unity/dash/maximize_dash_prelight.svg @@ -0,0 +1,223 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.5885781" + inkscape:cy="15.919271" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1290,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-max-hover" + inkscape:label="#g4891"> + <g + id="g4490-2-9" + style="display:inline;opacity:1" + transform="translate(-132,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-6-3"> + <circle + id="path4068-7-6-5" + style="fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + </g> + <g + style="fill:#c0e3ff;fill-opacity:1" + transform="translate(1294,247)" + id="g4806"> + <g + id="layer9-78" + inkscape:label="status" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer10-3" + inkscape:label="devices" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer11-19" + inkscape:label="apps" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer13-4" + inkscape:label="places" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer14-8" + inkscape:label="mimetypes" + transform="translate(-81.0002,-967)" /> + <g + id="layer15-5" + inkscape:label="emblems" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + id="g71291-1" + inkscape:label="emotes" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + id="g4953-7" + inkscape:label="categories" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + id="layer12-3" + inkscape:label="actions" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)"> + <path + id="path4293" + style="fill:#5294e2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 87.799705,973.00002 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-36" + width="16" + height="16" + x="1294" + y="248" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/maximize_dash_pressed.svg b/common/unity/dash/maximize_dash_pressed.svg new file mode 100644 index 0000000..db5a8a6 --- /dev/null +++ b/common/unity/dash/maximize_dash_pressed.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="-6.9400422" + inkscape:cy="16.493795" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active" + inkscape:label="#g6356" + transform="translate(-408,1218)"> + <g + id="g4891-4" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2"> + <g + id="g4092-0-6-3-6-8" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6" /> + </g> + </g> + <g + id="g4806-5-2" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/minimize_dash.svg b/common/unity/dash/minimize_dash.svg new file mode 100644 index 0000000..2afb3c7 --- /dev/null +++ b/common/unity/dash/minimize_dash.svg @@ -0,0 +1,172 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="16.659646" + inkscape:cy="8.8482037" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1364,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-min" + inkscape:label="#g7138"> + <g + id="g4490-3" + style="display:inline;opacity:1" + transform="translate(-58,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-7"> + <circle + id="path4068-7-3" + style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + </g> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#edf5fb;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-4" + d="m 1373,255.00002 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-18" + width="16" + height="16" + x="1368" + y="248" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/minimize_dash_disabled.svg b/common/unity/dash/minimize_dash_disabled.svg new file mode 100644 index 0000000..e4c2c2a --- /dev/null +++ b/common/unity/dash/minimize_dash_disabled.svg @@ -0,0 +1,172 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="16.659646" + inkscape:cy="8.8482037" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1364,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-min-backdrop" + inkscape:label="#g7138"> + <g + id="g4490-3-7" + style="display:inline;opacity:1" + transform="translate(-58,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-7-3"> + <circle + id="path4068-7-3-3" + style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + </g> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#edf5fb;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-4-4" + d="m 1373,255.00002 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-3" + width="16" + height="16" + x="1368" + y="248" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/minimize_dash_prelight.svg b/common/unity/dash/minimize_dash_prelight.svg new file mode 100644 index 0000000..56c4896 --- /dev/null +++ b/common/unity/dash/minimize_dash_prelight.svg @@ -0,0 +1,223 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="16.659646" + inkscape:cy="8.8482037" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + transform="translate(-1261,784.3622)" + style="display:inline;opacity:1" + id="titlebutton-min-hover" + inkscape:label="#g4909"> + <g + id="g4490-3-6" + style="display:inline;opacity:1" + transform="translate(-161,0)"> + <g + transform="translate(58,0)" + style="display:inline" + id="g4092-0-7-2"> + <circle + id="path4068-7-3-0" + style="fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + cx="1376" + cy="256.00003" + r="7" /> + </g> + </g> + <g + transform="translate(1265,247)" + id="g4834" + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1"> + <g + id="layer9-3" + inkscape:label="status" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer10-4" + inkscape:label="devices" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer11-2" + inkscape:label="apps" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer13-5" + inkscape:label="places" + transform="translate(-81.0002,-967)" /> + <g + style="fill:#c0e3ff;fill-opacity:1" + id="layer14-6" + inkscape:label="mimetypes" + transform="translate(-81.0002,-967)" /> + <g + id="layer15-52" + inkscape:label="emblems" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + id="g71291-3" + inkscape:label="emotes" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + id="g4953-8" + inkscape:label="categories" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)" /> + <g + id="layer12-45" + inkscape:label="actions" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + transform="translate(-81.0002,-967)"> + <path + inkscape:connector-curvature="0" + d="m 86.0002,975.00002 0,2 6,0 0,-2 z" + id="rect9057" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-9" + width="16" + height="16" + x="1265" + y="248" /> + </g> + </g> +</svg> diff --git a/common/unity/dash/minimize_dash_pressed.svg b/common/unity/dash/minimize_dash_pressed.svg new file mode 100644 index 0000000..26fb74c --- /dev/null +++ b/common/unity/dash/minimize_dash_pressed.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="-6.9400422" + inkscape:cy="16.493795" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active" + inkscape:label="#g6414" + transform="translate(-379,1218)"> + <g + id="g4909-1" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4"> + <g + id="g4092-0-7-2-0-0" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/maximize.svg b/common/unity/maximize.svg index c860f43..836cb83 100644..120000 --- a/common/unity/maximize.svg +++ b/common/unity/maximize.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)"> - <ellipse - cy="-177.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-2" - inkscape:connector-curvature="0" /> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize.svg
\ No newline at end of file diff --git a/common/unity/maximize_dash.svg b/common/unity/maximize_dash.svg index 5029ad7..b653395 100644..120000 --- a/common/unity/maximize_dash.svg +++ b/common/unity/maximize_dash.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="8.8372772" - inkscape:cy="16.670572" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1393,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-max" - inkscape:label="#g7146"> - <g - id="g4490-2" - style="display:inline;opacity:1" - transform="translate(-29,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-6"> - <circle - id="path4068-7-6" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 1403.7995,253.00002 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - style="display:inline;opacity:1;fill:#edf5fb;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-5" /> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-1" - width="16" - height="16" - x="1397" - y="248" /> - </g> - </g> -</svg> +dash/maximize_dash.svg
\ No newline at end of file diff --git a/common/unity/maximize_dash_disabled.svg b/common/unity/maximize_dash_disabled.svg index 750709e..43f0fb6 100644..120000 --- a/common/unity/maximize_dash_disabled.svg +++ b/common/unity/maximize_dash_disabled.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="8.8372772" - inkscape:cy="16.670572" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1393,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-max-backdrop" - inkscape:label="#g7146"> - <g - id="g4490-2-3" - style="display:inline;opacity:1" - transform="translate(-29,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-6-8"> - <circle - id="path4068-7-6-7" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 1403.7995,253.00002 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - style="display:inline;opacity:0.5;fill:#edf5fb;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-5-9" /> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-2" - width="16" - height="16" - x="1397" - y="248" /> - </g> - </g> -</svg> +dash/maximize_dash_disabled.svg
\ No newline at end of file diff --git a/common/unity/maximize_dash_prelight.svg b/common/unity/maximize_dash_prelight.svg index f95f9d0..0a74f64 100644..120000 --- a/common/unity/maximize_dash_prelight.svg +++ b/common/unity/maximize_dash_prelight.svg @@ -1,223 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="9.5885781" - inkscape:cy="15.919271" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1290,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-max-hover" - inkscape:label="#g4891"> - <g - id="g4490-2-9" - style="display:inline;opacity:1" - transform="translate(-132,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-6-3"> - <circle - id="path4068-7-6-5" - style="fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <g - style="fill:#c0e3ff;fill-opacity:1" - transform="translate(1294,247)" - id="g4806"> - <g - id="layer9-78" - inkscape:label="status" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer10-3" - inkscape:label="devices" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer11-19" - inkscape:label="apps" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer13-4" - inkscape:label="places" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer14-8" - inkscape:label="mimetypes" - transform="translate(-81.0002,-967)" /> - <g - id="layer15-5" - inkscape:label="emblems" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="g71291-1" - inkscape:label="emotes" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="g4953-7" - inkscape:label="categories" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="layer12-3" - inkscape:label="actions" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)"> - <path - id="path4293" - style="fill:#5294e2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 87.799705,973.00002 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-36" - width="16" - height="16" - x="1294" - y="248" /> - </g> - </g> -</svg> +dash/maximize_dash_prelight.svg
\ No newline at end of file diff --git a/common/unity/maximize_dash_pressed.svg b/common/unity/maximize_dash_pressed.svg index db5a8a6..c4f77fa 100644..120000 --- a/common/unity/maximize_dash_pressed.svg +++ b/common/unity/maximize_dash_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +dash/maximize_dash_pressed.svg
\ No newline at end of file diff --git a/common/unity/maximize_focused_normal.svg b/common/unity/maximize_focused_normal.svg index c59c6ef..836cb83 100644..120000 --- a/common/unity/maximize_focused_normal.svg +++ b/common/unity/maximize_focused_normal.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_focused_normal.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)"> - <ellipse - cy="-177.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-2" - inkscape:connector-curvature="0" /> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize.svg
\ No newline at end of file diff --git a/common/unity/maximize_focused_prelight.svg b/common/unity/maximize_focused_prelight.svg index 7d5585b..7f7d2f7 100644..120000 --- a/common/unity/maximize_focused_prelight.svg +++ b/common/unity/maximize_focused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_focused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_prelight.svg
\ No newline at end of file diff --git a/common/unity/maximize_focused_pressed.svg b/common/unity/maximize_focused_pressed.svg index fc21e8f..529dd34 100644..120000 --- a/common/unity/maximize_focused_pressed.svg +++ b/common/unity/maximize_focused_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_focused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_pressed.svg
\ No newline at end of file diff --git a/common/unity/maximize_unfocused.svg b/common/unity/maximize_unfocused.svg index 426b15f..050eb91 100644..120000 --- a/common/unity/maximize_unfocused.svg +++ b/common/unity/maximize_unfocused.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.7" - transform="translate(-612,1201)"> - <ellipse - cy="-160.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-84" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-7" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"> - <g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> +window-buttons/maximize_unfocused.svg
\ No newline at end of file diff --git a/common/unity/maximize_unfocused_prelight.svg b/common/unity/maximize_unfocused_prelight.svg index 5f83f4a..7f7d2f7 100644..120000 --- a/common/unity/maximize_unfocused_prelight.svg +++ b/common/unity/maximize_unfocused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_prelight.svg
\ No newline at end of file diff --git a/common/unity/maximize_unfocused_pressed.svg b/common/unity/maximize_unfocused_pressed.svg index 296ac21..529dd34 100644..120000 --- a/common/unity/maximize_unfocused_pressed.svg +++ b/common/unity/maximize_unfocused_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_pressed.svg
\ No newline at end of file diff --git a/common/unity/minimize.svg b/common/unity/minimize.svg index 39300c9..a67242c 100644..120000 --- a/common/unity/minimize.svg +++ b/common/unity/minimize.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-583,1218)"> - <ellipse - cy="-177.63782" - cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2" - rx="6" - ry="6.0000005" /> - <g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"> - <g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5" - inkscape:connector-curvature="0" /> - </g> - </g> -</svg> +window-buttons/minimize.svg
\ No newline at end of file diff --git a/common/unity/minimize_dash.svg b/common/unity/minimize_dash.svg index 2afb3c7..387f075 100644..120000 --- a/common/unity/minimize_dash.svg +++ b/common/unity/minimize_dash.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="16.659646" - inkscape:cy="8.8482037" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1364,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-min" - inkscape:label="#g7138"> - <g - id="g4490-3" - style="display:inline;opacity:1" - transform="translate(-58,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-7"> - <circle - id="path4068-7-3" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#edf5fb;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-4" - d="m 1373,255.00002 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-18" - width="16" - height="16" - x="1368" - y="248" /> - </g> - </g> -</svg> +dash/minimize_dash.svg
\ No newline at end of file diff --git a/common/unity/minimize_dash_disabled.svg b/common/unity/minimize_dash_disabled.svg index e4c2c2a..99c6442 100644..120000 --- a/common/unity/minimize_dash_disabled.svg +++ b/common/unity/minimize_dash_disabled.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="16.659646" - inkscape:cy="8.8482037" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1364,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-min-backdrop" - inkscape:label="#g7138"> - <g - id="g4490-3-7" - style="display:inline;opacity:1" - transform="translate(-58,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-7-3"> - <circle - id="path4068-7-3-3" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#edf5fb;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-4-4" - d="m 1373,255.00002 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-3" - width="16" - height="16" - x="1368" - y="248" /> - </g> - </g> -</svg> +dash/minimize_dash_disabled.svg
\ No newline at end of file diff --git a/common/unity/minimize_dash_prelight.svg b/common/unity/minimize_dash_prelight.svg index 56c4896..8bc8ae7 100644..120000 --- a/common/unity/minimize_dash_prelight.svg +++ b/common/unity/minimize_dash_prelight.svg @@ -1,223 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="16.659646" - inkscape:cy="8.8482037" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1261,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-min-hover" - inkscape:label="#g4909"> - <g - id="g4490-3-6" - style="display:inline;opacity:1" - transform="translate(-161,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-7-2"> - <circle - id="path4068-7-3-0" - style="fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <g - transform="translate(1265,247)" - id="g4834" - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1"> - <g - id="layer9-3" - inkscape:label="status" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer10-4" - inkscape:label="devices" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer11-2" - inkscape:label="apps" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer13-5" - inkscape:label="places" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer14-6" - inkscape:label="mimetypes" - transform="translate(-81.0002,-967)" /> - <g - id="layer15-52" - inkscape:label="emblems" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="g71291-3" - inkscape:label="emotes" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="g4953-8" - inkscape:label="categories" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="layer12-45" - inkscape:label="actions" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)"> - <path - inkscape:connector-curvature="0" - d="m 86.0002,975.00002 0,2 6,0 0,-2 z" - id="rect9057" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-9" - width="16" - height="16" - x="1265" - y="248" /> - </g> - </g> -</svg> +dash/minimize_dash_prelight.svg
\ No newline at end of file diff --git a/common/unity/minimize_dash_pressed.svg b/common/unity/minimize_dash_pressed.svg index 26fb74c..8eee2dd 100644..120000 --- a/common/unity/minimize_dash_pressed.svg +++ b/common/unity/minimize_dash_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active" - inkscape:label="#g6414" - transform="translate(-379,1218)"> - <g - id="g4909-1" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4"> - <g - id="g4092-0-7-2-0-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> +dash/minimize_dash_pressed.svg
\ No newline at end of file diff --git a/common/unity/minimize_focused_normal.svg b/common/unity/minimize_focused_normal.svg index 09036e1..a67242c 100644..120000 --- a/common/unity/minimize_focused_normal.svg +++ b/common/unity/minimize_focused_normal.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_focused_normal.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-583,1218)"> - <ellipse - cy="-177.63782" - cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2" - rx="6" - ry="6.0000005" /> - <g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"> - <g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5" - inkscape:connector-curvature="0" /> - </g> - </g> -</svg> +window-buttons/minimize.svg
\ No newline at end of file diff --git a/common/unity/minimize_focused_prelight.svg b/common/unity/minimize_focused_prelight.svg index 6449a2e..fcb0892 100644..120000 --- a/common/unity/minimize_focused_prelight.svg +++ b/common/unity/minimize_focused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_focused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/minimize_prelight.svg
\ No newline at end of file diff --git a/common/unity/minimize_focused_pressed.svg b/common/unity/minimize_focused_pressed.svg index b179166..31687d0 100644..120000 --- a/common/unity/minimize_focused_pressed.svg +++ b/common/unity/minimize_focused_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_focused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active" - inkscape:label="#g6414" - transform="translate(-379,1218)"> - <g - id="g4909-1" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4"> - <g - id="g4092-0-7-2-0-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> +window-buttons/minimize_pressed.svg
\ No newline at end of file diff --git a/common/unity/minimize_unfocused.svg b/common/unity/minimize_unfocused.svg index 44cf4ce..d4f5cbf 100644..120000 --- a/common/unity/minimize_unfocused.svg +++ b/common/unity/minimize_unfocused.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop" - inkscape:label="#g6534" - style="display:inline;opacity:0.7" - transform="translate(-583,1201)"> - <ellipse - cy="-160.63782" - cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-60" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-4" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1" - id="g7138-0" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3"> - <g - id="g4092-0-7" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> -</svg> +window-buttons/minimize_unfocused.svg
\ No newline at end of file diff --git a/common/unity/minimize_unfocused_prelight.svg b/common/unity/minimize_unfocused_prelight.svg index 4c0fb4f..fcb0892 100644..120000 --- a/common/unity/minimize_unfocused_prelight.svg +++ b/common/unity/minimize_unfocused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_unfocused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/minimize_prelight.svg
\ No newline at end of file diff --git a/common/unity/minimize_unfocused_pressed.svg b/common/unity/minimize_unfocused_pressed.svg index 5e18b27..31687d0 100644..120000 --- a/common/unity/minimize_unfocused_pressed.svg +++ b/common/unity/minimize_unfocused_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_unfocused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active" - inkscape:label="#g6414" - transform="translate(-379,1218)"> - <g - id="g4909-1" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4"> - <g - id="g4092-0-7-2-0-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> +window-buttons/minimize_pressed.svg
\ No newline at end of file diff --git a/common/unity/sheet_style_close_focused.svg b/common/unity/sheet_style_close_focused.svg index 0749829..cd18456 120000 --- a/common/unity/sheet_style_close_focused.svg +++ b/common/unity/sheet_style_close_focused.svg @@ -1 +1 @@ -close_unfocused.svg
\ No newline at end of file +window-buttons/close.svg
\ No newline at end of file diff --git a/common/unity/sheet_style_close_focused_prelight.svg b/common/unity/sheet_style_close_focused_prelight.svg index 64b2bff..e338f1e 120000 --- a/common/unity/sheet_style_close_focused_prelight.svg +++ b/common/unity/sheet_style_close_focused_prelight.svg @@ -1 +1 @@ -close_focused_prelight.svg
\ No newline at end of file +window-buttons/close_prelight.svg
\ No newline at end of file diff --git a/common/unity/sheet_style_close_focused_pressed.svg b/common/unity/sheet_style_close_focused_pressed.svg index ba6d4fe..c55c7f2 120000 --- a/common/unity/sheet_style_close_focused_pressed.svg +++ b/common/unity/sheet_style_close_focused_pressed.svg @@ -1 +1 @@ -close_unfocused_pressed.svg
\ No newline at end of file +window-buttons/close_unfocused.svg
\ No newline at end of file diff --git a/common/unity/unmaximize.svg b/common/unity/unmaximize.svg index 1c89cb5..836cb83 100644..120000 --- a/common/unity/unmaximize.svg +++ b/common/unity/unmaximize.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)"> - <ellipse - cy="-177.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-2" - inkscape:connector-curvature="0" /> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_dash.svg b/common/unity/unmaximize_dash.svg index f6b582d..b653395 100644..120000 --- a/common/unity/unmaximize_dash.svg +++ b/common/unity/unmaximize_dash.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="16.659646" - inkscape:cy="8.8482037" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1393,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-max" - inkscape:label="#g7146"> - <g - id="g4490-2" - style="display:inline;opacity:1" - transform="translate(-29,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-6"> - <circle - id="path4068-7-6" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 1403.7995,253.00002 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - style="display:inline;opacity:1;fill:#edf5fb;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-5" /> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-1" - width="16" - height="16" - x="1397" - y="248" /> - </g> - </g> -</svg> +dash/maximize_dash.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_dash_disabled.svg b/common/unity/unmaximize_dash_disabled.svg index 38f43ef..43f0fb6 100644..120000 --- a/common/unity/unmaximize_dash_disabled.svg +++ b/common/unity/unmaximize_dash_disabled.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="16.659646" - inkscape:cy="8.8482037" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1393,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-max-backdrop" - inkscape:label="#g7146"> - <g - id="g4490-2-3" - style="display:inline;opacity:1" - transform="translate(-29,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-6-8"> - <circle - id="path4068-7-6-7" - style="opacity:0.95;fill:#292e36;fill-opacity:1;stroke:#5a6a7d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 1403.7995,253.00002 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - style="display:inline;opacity:0.5;fill:#edf5fb;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-5-9" /> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-2" - width="16" - height="16" - x="1397" - y="248" /> - </g> - </g> -</svg> +dash/maximize_dash_disabled.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_dash_prelight.svg b/common/unity/unmaximize_dash_prelight.svg index b6cad8b..0a74f64 100644..120000 --- a/common/unity/unmaximize_dash_prelight.svg +++ b/common/unity/unmaximize_dash_prelight.svg @@ -1,219 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="16.659646" - inkscape:cy="8.8482037" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - transform="translate(-1290,784.3622)" - style="display:inline;opacity:1" - id="titlebutton-max-hover" - inkscape:label="#g4891"> - <g - id="g4490-2-9" - style="display:inline;opacity:1" - transform="translate(-132,0)"> - <g - transform="translate(58,0)" - style="display:inline" - id="g4092-0-6-3"> - <circle - id="path4068-7-6-5" - style="fill:#292e36;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="1376" - cy="256.00003" - r="7" /> - </g> - </g> - <g - style="fill:#c0e3ff;fill-opacity:1" - transform="translate(1294,247)" - id="g4806"> - <g - id="layer9-78" - inkscape:label="status" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer10-3" - inkscape:label="devices" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer11-19" - inkscape:label="apps" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer13-4" - inkscape:label="places" - transform="translate(-81.0002,-967)" /> - <g - style="fill:#c0e3ff;fill-opacity:1" - id="layer14-8" - inkscape:label="mimetypes" - transform="translate(-81.0002,-967)" /> - <g - id="layer15-5" - inkscape:label="emblems" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="g71291-1" - inkscape:label="emotes" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="g4953-7" - inkscape:label="categories" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)" /> - <g - id="layer12-3" - inkscape:label="actions" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - transform="translate(-81.0002,-967)"> - <path - id="path4293" - style="fill:#5294e2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 87.799705,973.00002 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-36" - width="16" - height="16" - x="1294" - y="248" /> - </g> - </g> -</svg> +dash/maximize_dash_prelight.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_dash_pressed.svg b/common/unity/unmaximize_dash_pressed.svg index 9db5204..c4f77fa 100644..120000 --- a/common/unity/unmaximize_dash_pressed.svg +++ b/common/unity/unmaximize_dash_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +dash/maximize_dash_pressed.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_focused_normal.svg b/common/unity/unmaximize_focused_normal.svg index e035f58..836cb83 100644..120000 --- a/common/unity/unmaximize_focused_normal.svg +++ b/common/unity/unmaximize_focused_normal.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_focused_normal.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)"> - <ellipse - cy="-177.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-2" - inkscape:connector-curvature="0" /> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_focused_prelight.svg b/common/unity/unmaximize_focused_prelight.svg index 6f653b9..7f7d2f7 100644..120000 --- a/common/unity/unmaximize_focused_prelight.svg +++ b/common/unity/unmaximize_focused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_focused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_prelight.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_focused_pressed.svg b/common/unity/unmaximize_focused_pressed.svg index c87a958..529dd34 100644..120000 --- a/common/unity/unmaximize_focused_pressed.svg +++ b/common/unity/unmaximize_focused_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_focused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_pressed.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_unfocused.svg b/common/unity/unmaximize_unfocused.svg index 047d0d8..050eb91 100644..120000 --- a/common/unity/unmaximize_unfocused.svg +++ b/common/unity/unmaximize_unfocused.svg @@ -1,178 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.7" - transform="translate(-612,1201)"> - <ellipse - cy="-160.63782" - cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-84" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-7" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"> - <g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5" - style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> +window-buttons/maximize_unfocused.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_unfocused_prelight.svg b/common/unity/unmaximize_unfocused_prelight.svg index 7555a56..7f7d2f7 100644..120000 --- a/common/unity/unmaximize_unfocused_prelight.svg +++ b/common/unity/unmaximize_unfocused_prelight.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_unfocused_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_prelight.svg
\ No newline at end of file diff --git a/common/unity/unmaximize_unfocused_pressed.svg b/common/unity/unmaximize_unfocused_pressed.svg index 918a879..529dd34 100644..120000 --- a/common/unity/unmaximize_unfocused_pressed.svg +++ b/common/unity/unmaximize_unfocused_pressed.svg @@ -1,224 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="unmaximize_unfocused_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#ffffff;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-6.9400422" - inkscape:cy="16.493795" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> +window-buttons/maximize_pressed.svg
\ No newline at end of file diff --git a/common/unity/window-buttons-dark/close.svg b/common/unity/window-buttons-dark/close.svg new file mode 100644 index 0000000..b496683 --- /dev/null +++ b/common/unity/window-buttons-dark/close.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#e45e65;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-2-7-9" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/close_prelight.svg b/common/unity/window-buttons-dark/close_prelight.svg new file mode 100644 index 0000000..748830f --- /dev/null +++ b/common/unity/window-buttons-dark/close_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f48085;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-5-0-4" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/close_pressed.svg b/common/unity/window-buttons-dark/close_pressed.svg new file mode 100644 index 0000000..1a7cdfd --- /dev/null +++ b/common/unity/window-buttons-dark/close_pressed.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#e6262f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-8-7-6-8" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/close_unfocused.svg b/common/unity/window-buttons-dark/close_unfocused.svg new file mode 100644 index 0000000..11b603c --- /dev/null +++ b/common/unity/window-buttons-dark/close_unfocused.svg @@ -0,0 +1,216 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6497" + style="display:inline;opacity:0.7" + transform="translate(-641.00002,1201)"> + <g + id="g4927-9-9-36-1" + style="display:inline;opacity:1" + transform="translate(-678,-415.63782)"> + <ellipse + cy="255" + cx="1331" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-2-3-4" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-8-1-4" + inkscape:connector-curvature="0" /> + <g + id="g4778-2-3-5" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-0-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-3-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-7-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-3-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-5-6" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-2-0" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-8-6" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#afb8c5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-9-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-3-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-9-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-2-4-2" + width="16" + height="16" + x="645" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/maximize.svg b/common/unity/window-buttons-dark/maximize.svg new file mode 100644 index 0000000..057ecc7 --- /dev/null +++ b/common/unity/window-buttons-dark/maximize.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612,1218)"> + <ellipse + cy="-177.63782" + cx="624" + style="display:inline;opacity:0.85;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-6-0-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-2-0-6" + inkscape:connector-curvature="0" /> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:0.8;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/maximize_prelight.svg b/common/unity/window-buttons-dark/maximize_prelight.svg new file mode 100644 index 0000000..6a420b9 --- /dev/null +++ b/common/unity/window-buttons-dark/maximize_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/maximize_pressed.svg b/common/unity/window-buttons-dark/maximize_pressed.svg new file mode 100644 index 0000000..326ae8d --- /dev/null +++ b/common/unity/window-buttons-dark/maximize_pressed.svg @@ -0,0 +1,228 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/maximize_unfocused.svg b/common/unity/window-buttons-dark/maximize_unfocused.svg new file mode 100644 index 0000000..abea0ba --- /dev/null +++ b/common/unity/window-buttons-dark/maximize_unfocused.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.7" + transform="translate(-612.00002,1201)"> + <ellipse + cy="-160.63782" + cx="624" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-84-0-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-7-6-7" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:0.65;fill:#afb8c5;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/minimize.svg b/common/unity/window-buttons-dark/minimize.svg new file mode 100644 index 0000000..45ae2cb --- /dev/null +++ b/common/unity/window-buttons-dark/minimize.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <ellipse + cy="-177.63782" + cx="595" + style="display:inline;opacity:0.85;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-47-2" + rx="6" + ry="6.0000005" /> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-3-9" + inkscape:connector-curvature="0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/minimize_focused_prelight.svg b/common/unity/window-buttons-dark/minimize_focused_prelight.svg new file mode 100644 index 0000000..5c12c91 --- /dev/null +++ b/common/unity/window-buttons-dark/minimize_focused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_focused_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/minimize_focused_pressed.svg b/common/unity/window-buttons-dark/minimize_focused_pressed.svg new file mode 100644 index 0000000..be0af55 --- /dev/null +++ b/common/unity/window-buttons-dark/minimize_focused_pressed.svg @@ -0,0 +1,228 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_focused_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons-dark/minimize_unfocused.svg b/common/unity/window-buttons-dark/minimize_unfocused.svg new file mode 100644 index 0000000..0eee823 --- /dev/null +++ b/common/unity/window-buttons-dark/minimize_unfocused.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1889683" + inkscape:cy="9.2440344" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.7" + transform="translate(-583.00002,1201)"> + <ellipse + cy="-160.63782" + cx="595" + style="display:inline;opacity:0.9;fill:#262a30;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-60-3-2" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.95;fill:#181b1f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-4-4-4" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#afb8c5;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/close.svg b/common/unity/window-buttons/close.svg new file mode 100644 index 0000000..1f647b6 --- /dev/null +++ b/common/unity/window-buttons/close.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2"> + <g + id="g4092-0-2-21-0" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6" /> + </g> + </g> + <g + id="g4778-2-68" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4-4" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2-2" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6-11" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0-33" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/close_prelight.svg b/common/unity/window-buttons/close_prelight.svg new file mode 100644 index 0000000..879400d --- /dev/null +++ b/common/unity/window-buttons/close_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9"> + <g + id="g4092-0-2-3" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-8" /> + </g> + </g> + <g + id="g4778-4" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-44" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-5" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-02" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-7" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/close_pressed.svg b/common/unity/window-buttons/close_pressed.svg new file mode 100644 index 0000000..9f0fe17 --- /dev/null +++ b/common/unity/window-buttons/close_pressed.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active" + inkscape:label="#g6332" + transform="translate(-437,1218)"> + <g + id="g4927-8-7" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7"> + <g + id="g4092-0-2-2-1" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-4-9" /> + </g> + </g> + <g + id="g4778-3-6" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-6-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-2-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-8-7" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-0-2" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-5-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/close_unfocused.svg b/common/unity/window-buttons/close_unfocused.svg new file mode 100644 index 0000000..9e0f44b --- /dev/null +++ b/common/unity/window-buttons/close_unfocused.svg @@ -0,0 +1,216 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-close-backdrop" + inkscape:label="#g6497" + style="display:inline;opacity:0.7" + transform="translate(-641,1201)"> + <g + id="g4927-9-9" + style="display:inline;opacity:1" + transform="translate(-678,-415.63782)"> + <ellipse + cy="255" + cx="1331" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-2" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-8" + inkscape:connector-curvature="0" /> + <g + id="g4778-2" + transform="translate(1323,246.86719)" + style="fill:#ffffff;fill-opacity:1"> + <g + style="display:inline;fill:#ffffff;fill-opacity:1" + id="layer9-9-4" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer11-16-4" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5" + style="fill:#ffffff;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9" + style="display:inline;fill:#ffffff;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" + id="path10839-9-2" + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#70788d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + </g> + </g> + </g> + <g + id="layer13-2-6" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer14-4-0" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="layer15-7-3" + transform="translate(-60,-518)" + style="fill:#ffffff;fill-opacity:1" /> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-2" + width="16" + height="16" + x="645" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/maximize.svg b/common/unity/window-buttons/maximize.svg new file mode 100644 index 0000000..c2a642d --- /dev/null +++ b/common/unity/window-buttons/maximize.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max" + inkscape:label="#g6234" + transform="translate(-612,1218)"> + <ellipse + cy="-177.63782" + cx="624" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-2" + inkscape:connector-curvature="0" /> + <g + id="g7146" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96"> + <g + id="g4092-0-6-83" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95" + style="display:inline;opacity:0.8;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/maximize_prelight.svg b/common/unity/window-buttons/maximize_prelight.svg new file mode 100644 index 0000000..90ef47c --- /dev/null +++ b/common/unity/window-buttons/maximize_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78" + inkscape:connector-curvature="0" /> + <g + id="g4806-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/maximize_pressed.svg b/common/unity/window-buttons/maximize_pressed.svg new file mode 100644 index 0000000..549401c --- /dev/null +++ b/common/unity/window-buttons/maximize_pressed.svg @@ -0,0 +1,228 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active" + inkscape:label="#g6356" + transform="translate(-408,1218)"> + <g + id="g4891-4" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2"> + <g + id="g4092-0-6-3-6-8" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6" /> + </g> + </g> + <g + id="g4806-5-2" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/maximize_unfocused.svg b/common/unity/window-buttons/maximize_unfocused.svg new file mode 100644 index 0000000..48a4ed8 --- /dev/null +++ b/common/unity/window-buttons/maximize_unfocused.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop" + inkscape:label="#g6521" + style="display:inline;opacity:0.7" + transform="translate(-612,1201)"> + <ellipse + cy="-160.63782" + cx="624" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-84" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-7" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7146-1" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2"> + <g + id="g4092-0-6" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5" + style="display:inline;opacity:0.65;fill:#70788d;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/minimize.svg b/common/unity/window-buttons/minimize.svg new file mode 100644 index 0000000..5c2cecd --- /dev/null +++ b/common/unity/window-buttons/minimize.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-583,1218)"> + <ellipse + cy="-177.63782" + cx="595" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2" + rx="6" + ry="6.0000005" /> + <g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"> + <g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <path + style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5" + inkscape:connector-curvature="0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/minimize_prelight.svg b/common/unity/window-buttons/minimize_prelight.svg new file mode 100644 index 0000000..93d5baf --- /dev/null +++ b/common/unity/window-buttons/minimize_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_focused_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/minimize_pressed.svg b/common/unity/window-buttons/minimize_pressed.svg new file mode 100644 index 0000000..fe9ebee --- /dev/null +++ b/common/unity/window-buttons/minimize_pressed.svg @@ -0,0 +1,228 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_focused_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active" + inkscape:label="#g6414" + transform="translate(-379,1218)"> + <g + id="g4909-1" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4"> + <g + id="g4092-0-7-2-0-0" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/common/unity/window-buttons/minimize_unfocused.svg b/common/unity/window-buttons/minimize_unfocused.svg new file mode 100644 index 0000000..36a25f0 --- /dev/null +++ b/common/unity/window-buttons/minimize_unfocused.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#ffffff;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="9.1908305" + inkscape:cy="9.2459508" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop" + inkscape:label="#g6534" + style="display:inline;opacity:0.7" + transform="translate(-583,1201)"> + <ellipse + cy="-160.63782" + cx="595" + style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-60" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.1;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-4" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1" + id="g7138-0" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3"> + <g + id="g4092-0-7" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.65;fill:#70788d;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/common/xfwm4-dark/bottom-active.xpm b/common/xfwm4-dark/bottom-active.xpm new file mode 100644 index 0000000..56a1910 --- /dev/null +++ b/common/xfwm4-dark/bottom-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"12 1 2 1", +" c None", +". c #111215", +"............"}; diff --git a/common/xfwm4-dark/bottom-inactive.xpm b/common/xfwm4-dark/bottom-inactive.xpm new file mode 100644 index 0000000..6a09d71 --- /dev/null +++ b/common/xfwm4-dark/bottom-inactive.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_inactive_xpm[] = { +"12 1 2 1", +" c None", +". c #111215", +"............"}; diff --git a/common/xfwm4-dark/close-active.xpm b/common/xfwm4-dark/close-active.xpm new file mode 100644 index 0000000..951143b --- /dev/null +++ b/common/xfwm4-dark/close-active.xpm @@ -0,0 +1,74 @@ +/* XPM */ +static char * close_active_xpm[] = { +"24 24 47 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #3F383F", +"$ c #8D4A50", +"% c #C2565D", +"& c #DC5C64", +"* c #C1565D", +"= c #8C4951", +"- c #6B4249", +"; c #DA5C63", +"> c #E45E65", +", c #E35E65", +"' c #E6676E", +") c #E5676D", +"! c #DA5C62", +"~ c #3E383E", +"{ c #FEFCFC", +"] c #F4C0C3", +"^ c #E45F66", +"/ c #F4BDC0", +"( c #FFFEFE", +"_ c #8B4950", +": c #C3575D", +"< c #F2AFB3", +"[ c #FFFFFF", +"} c #F5C2C5", +"| c #F5C2C4", +"1 c #F3B4B8", +"2 c #DB5C63", +"3 c #F2B3B6", +"4 c #F3B6BA", +"5 c #E46067", +"6 c #F5C3C6", +"7 c #F6C9CB", +"8 c #E46167", +"9 c #F5C0C3", +"0 c #F2AFB2", +"a c #F5C1C4", +"b c #FDF1F2", +"c c #F1AAAE", +"d c #8A4A50", +"e c #DA5B62", +"f c #3D373E", +"g c #694148", +"h c #C0565D", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>>>>>>;-@@@@@@@", +"@@@@@@-,>>>>>>>>,-@@@@@@", +"@@@@@#;>>'>>>>)>>!~@@@@@", +"@@@@@$>>>{]^^/(>>>_@@@@@", +"@@@@@:>>><[}|[1>>>*@@@@@", +"@@@@@2>>>>3[[4>>>>;@@@@@", +"@@@@@;>>>56[[78>>>!@@@@@", +"@@@@@%>>>9[00[a>>>*@@@@@", +"@@@@@=>>>bc>>cb>>>d@@@@@", +"@@@@@#;>>>>>>>>>>ef@@@@@", +"@@@@@@-,>>>>>>>>,g@@@@@@", +"@@@@@@@-!>>>>>>eg@@@@@@@", +"@@@@@@@@~_h22hdf@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/close-inactive.xpm b/common/xfwm4-dark/close-inactive.xpm new file mode 100644 index 0000000..e8efc08 --- /dev/null +++ b/common/xfwm4-dark/close-inactive.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char * close_inactive_xpm[] = { +"24 24 42 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #2D3139", +"$ c #262B31", +"% c #22272B", +"& c #1F2428", +"* c #2A2E34", +"= c #20242A", +"- c #24282F", +"; c #282D33", +"> c #2A2E35", +", c #21252B", +"' c #292E34", +") c #282C33", +"! c #21252A", +"~ c #2D3237", +"{ c #2D3239", +"] c #656C76", +"^ c #4F545D", +"/ c #4D535B", +"( c #676D76", +"_ c #22262B", +": c #282C32", +"< c #494E56", +"[ c #4F565D", +"} c #4F555D", +"| c #4A4F57", +"1 c #282D32", +"2 c #1F2429", +"3 c #4B5059", +"4 c #202429", +"5 c #51565D", +"6 c #525860", +"7 c #282D34", +"8 c #202529", +"9 c #484E55", +"0 c #626770", +"a c #454C54", +"b c #272B32", +"c c #22272C", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&%$#@@@@@@@@", +"@@@@@@@*=-;;;;-=>@@@@@@@", +"@@@@@@*,;'''''')!>@@@@@@", +"@@@@@#=;'~''''~')={@@@@@", +"@@@@@$-'']^**/(''-$@@@@@", +"@@@@@_:''<([}(|''1%@@@@@", +"@@@@@2;'''|((3''';4@@@@@", +"@@@@@4;''*5((6*''78@@@@@", +"@@@@@%:''}(99(}''1%@@@@@", +"@@@@@$-''0a''a0''-b@@@@@", +"@@@@@#=)'''''''')8{@@@@@", +"@@@@@@>,)'''''')!>@@@@@@", +"@@@@@@@>=-1;;1-8>@@@@@@@", +"@@@@@@@@{$c22cb{@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/close-prelight.xpm b/common/xfwm4-dark/close-prelight.xpm new file mode 100644 index 0000000..724bbd1 --- /dev/null +++ b/common/xfwm4-dark/close-prelight.xpm @@ -0,0 +1,70 @@ +/* XPM */ +static char * close_prelight_xpm[] = { +"24 24 43 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #3F3A40", +"$ c #945B61", +"% c #CE7177", +"& c #EB7C81", +"* c #CE7175", +"= c #935B60", +"- c #704D53", +"; c #E97C81", +"> c #F48085", +", c #6F4D53", +"' c #F37F84", +") c #F5878C", +"! c #E97B80", +"~ c #3F3A41", +"{ c #FFFDFD", +"] c #FBCDCF", +"^ c #F48186", +"/ c #FBCBCD", +"( c #FFFEFE", +"_ c #925A60", +": c #CF7176", +"< c #FAC0C3", +"[ c #FFFFFF", +"} c #FBCFD1", +"| c #FAC4C7", +"1 c #FAC3C5", +"2 c #FAC6C8", +"3 c #FBD0D2", +"4 c #FBD4D6", +"5 c #F48287", +"6 c #FBCED0", +"7 c #FAC0C2", +"8 c #FEF4F4", +"9 c #F9BCBF", +"0 c #925A5F", +"a c #E87B80", +"b c #3E3940", +"c c #6E4C53", +"d c #CD7176", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>>>>>>;,@@@@@@@", +"@@@@@@-'>>>>>>>>',@@@@@@", +"@@@@@#;>>)>>>>)>>!~@@@@@", +"@@@@@$>>>{]^^/(>>>_@@@@@", +"@@@@@:>>><[}}[|>>>*@@@@@", +"@@@@@&>>>>1[[2>>>>;@@@@@", +"@@@@@;>>>^3[[45>>>!@@@@@", +"@@@@@%>>>6[77[6>>>*@@@@@", +"@@@@@=>>>89>>98>>>0@@@@@", +"@@@@@#;>>>>>>>>>>ab@@@@@", +"@@@@@@,'>>>>>>>>'c@@@@@@", +"@@@@@@@,!>>>>>>ac@@@@@@@", +"@@@@@@@@~_d&&d0b@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/close-pressed.xpm b/common/xfwm4-dark/close-pressed.xpm new file mode 100644 index 0000000..ef26fab --- /dev/null +++ b/common/xfwm4-dark/close-pressed.xpm @@ -0,0 +1,73 @@ +/* XPM */ +static char * close_pressed_xpm[] = { +"24 24 46 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #3E3239", +"$ c #8D2D34", +"% c #C32831", +"& c #DE262F", +"* c #C22831", +"= c #6C2F37", +"- c #DC262F", +"; c #E6262F", +"> c #6B2F36", +", c #E5262F", +"' c #E7333B", +") c #E7323A", +"! c #DB262F", +"~ c #3E323A", +"{ c #FFFBFB", +"] c #F5AAAD", +"^ c #E62831", +"/ c #F5A6AA", +"( c #FFFDFD", +"_ c #8C2C34", +": c #C42831", +"< c #F39498", +"[ c #FFFFFF", +"} c #F6ADB1", +"| c #F5ACB0", +"1 c #F39B9F", +"2 c #DD262F", +"3 c #F3989C", +"4 c #F49DA1", +"5 c #E62931", +"6 c #F6AEB2", +"7 c #F7B6B9", +"8 c #E62932", +"9 c #F5ABAE", +"0 c #F39397", +"a c #F5ACAF", +"b c #FDECED", +"c c #F28D92", +"d c #8B2C34", +"e c #3D323A", +"f c #692F37", +"g c #C22931", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*$#@@@@@@@@", +"@@@@@@@=-;;;;;;->@@@@@@@", +"@@@@@@=,;;;;;;;;,>@@@@@@", +"@@@@@#-;;';;;;);;!~@@@@@", +"@@@@@$;;;{]^^/(;;;_@@@@@", +"@@@@@:;;;<[}|[1;;;*@@@@@", +"@@@@@2;;;;3[[4;;;;-@@@@@", +"@@@@@-;;;56[[78;;;!@@@@@", +"@@@@@%;;;9[00[a;;;*@@@@@", +"@@@@@$;;;bc;;cb;;;d@@@@@", +"@@@@@#-;;;;;;;;;;!e@@@@@", +"@@@@@@>,;;;;;;;;,f@@@@@@", +"@@@@@@@>!;;;;;;!f@@@@@@@", +"@@@@@@@@~_g22gde@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-active.xpm b/common/xfwm4-dark/hide-active.xpm new file mode 100644 index 0000000..8cddaa7 --- /dev/null +++ b/common/xfwm4-dark/hide-active.xpm @@ -0,0 +1,56 @@ +/* XPM */ +static char * hide_active_xpm[] = { +"24 24 29 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #2D3239", +"$ c #23272D", +"% c #1D2125", +"& c #1A1D22", +"* c #1D2126", +"= c #23282D", +"- c #282C32", +"; c #1B1E23", +"> c #21242A", +", c #272A30", +"' c #272B30", +") c #282D32", +"! c #1A1E24", +"~ c #252A30", +"{ c #272C32", +"] c #262A30", +"^ c #21252A", +"/ c #1E2125", +"( c #1A1E22", +"_ c #272B31", +": c #939CA8", +"< c #1B1E22", +"[ c #23282E", +"} c #292D33", +"| c #262A2F", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>,'',>;)@@@@@@@", +"@@@@@@-!~{{{{{{];)@@@@@@", +"@@@@@#;~{{{{{{{{];#@@@@@", +"@@@@@$>{{{{{{{{{{^=@@@@@", +"@@@@@/]{{{{{{{{{{,*@@@@@", +"@@@@@(_{{::::::{{_(@@@@@", +"@@@@@(_{{::::::{{_<@@@@@", +"@@@@@%]{{{{{{{{{{,*@@@@@", +"@@@@@=>{{{{{{{{{{^[@@@@@", +"@@@@@#;]{{{{{{{{]<#@@@@@", +"@@@@@@)!]{{{{{{];}@@@@@@", +"@@@@@@@);^,__|^<}@@@@@@@", +"@@@@@@@@#=*((*[#@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-inactive.xpm b/common/xfwm4-dark/hide-inactive.xpm new file mode 100644 index 0000000..ee41358 --- /dev/null +++ b/common/xfwm4-dark/hide-inactive.xpm @@ -0,0 +1,55 @@ +/* XPM */ +static char * hide_inactive_xpm[] = { +"24 24 28 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #2D3139", +"$ c #262B31", +"% c #22272B", +"& c #1F2428", +"* c #2A2E34", +"= c #20242A", +"- c #24282F", +"; c #282D33", +"> c #2A2E35", +", c #21252B", +"' c #292E34", +") c #282C33", +"! c #21252A", +"~ c #2D3239", +"{ c #22262B", +"] c #282C32", +"^ c #282D32", +"/ c #1F2429", +"( c #676D76", +"_ c #202429", +": c #282D34", +"< c #202529", +"[ c #272B32", +"} c #22272C", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&%$#@@@@@@@@", +"@@@@@@@*=-;;;;-=>@@@@@@@", +"@@@@@@*,;'''''')!>@@@@@@", +"@@@@@#=;'''''''')=~@@@@@", +"@@@@@$-''''''''''-$@@@@@", +"@@@@@{]''''''''''^%@@@@@", +"@@@@@/;''(((((('';_@@@@@", +"@@@@@_;''(((((('':<@@@@@", +"@@@@@%]''''''''''^%@@@@@", +"@@@@@$-''''''''''-[@@@@@", +"@@@@@#=)'''''''')<~@@@@@", +"@@@@@@>,)'''''')!>@@@@@@", +"@@@@@@@>=-^;;^-<>@@@@@@@", +"@@@@@@@@~$}//}[~@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-prelight.xpm b/common/xfwm4-dark/hide-prelight.xpm new file mode 100644 index 0000000..f32045d --- /dev/null +++ b/common/xfwm4-dark/hide-prelight.xpm @@ -0,0 +1,64 @@ +/* XPM */ +static char * hide_prelight_xpm[] = { +"24 24 37 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #313C48", +"$ c #406691", +"% c #4C81C1", +"& c #508FDA", +"* c #4B82C2", +"= c #406590", +"- c #3A5372", +"; c #4F8CD4", +"> c #416898", +", c #324459", +"' c #282E38", +") c #416998", +"! c #3A5371", +"~ c #4D88CF", +"{ c #2F3E54", +"] c #262A31", +"^ c #2F4054", +"/ c #323B49", +"( c #416999", +"_ c #406490", +": c #4B82C3", +"< c #304258", +"[ c #324359", +"} c #282F3A", +"| c #AFB8C5", +"1 c #508FD8", +"2 c #28313B", +"3 c #4F8ED8", +"4 c #40648E", +"5 c #313B48", +"6 c #395371", +"7 c #32445A", +"8 c #4B81C1", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>,'',);!@@@@@@@", +"@@@@@@-~{]]]]]]^~!@@@@@@", +"@@@@@#;{]]]]]]]]^;/@@@@@", +"@@@@@$>]]]]]]]]]](_@@@@@", +"@@@@@:<]]]]]]]]]][*@@@@@", +"@@@@@&}]]||||||]]}1@@@@@", +"@@@@@1}]]||||||]]23@@@@@", +"@@@@@%<]]]]]]]]]][*@@@@@", +"@@@@@=)]]]]]]]]]](4@@@@@", +"@@@@@#;^]]]]]]]]^;5@@@@@", +"@@@@@@!~^]]]]]]^~6@@@@@@", +"@@@@@@@!;([}}7(;6@@@@@@@", +"@@@@@@@@/_8&&845@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-pressed.xpm b/common/xfwm4-dark/hide-pressed.xpm new file mode 100644 index 0000000..7fab4b3 --- /dev/null +++ b/common/xfwm4-dark/hide-pressed.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char * hide_pressed_xpm[] = { +"24 24 24 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #313C48", +"$ c #406691", +"% c #4C81C1", +"& c #508FDA", +"* c #4B82C2", +"= c #406590", +"- c #3A5372", +"; c #508FD8", +"> c #5294E2", +", c #3A5371", +"' c #5193E1", +") c #4F8ED8", +"! c #323B49", +"~ c #406490", +"{ c #4B82C3", +"] c #FFFFFF", +"^ c #40648E", +"/ c #313B48", +"( c #395371", +"_ c #4B81C1", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>>>>>>;,@@@@@@@", +"@@@@@@-'>>>>>>>>',@@@@@@", +"@@@@@#;>>>>>>>>>>)!@@@@@", +"@@@@@$>>>>>>>>>>>>~@@@@@", +"@@@@@{>>>>>>>>>>>>*@@@@@", +"@@@@@&>>>]]]]]]>>>;@@@@@", +"@@@@@;>>>]]]]]]>>>)@@@@@", +"@@@@@%>>>>>>>>>>>>*@@@@@", +"@@@@@=>>>>>>>>>>>>^@@@@@", +"@@@@@#;>>>>>>>>>>)/@@@@@", +"@@@@@@,'>>>>>>>>'(@@@@@@", +"@@@@@@@,)>>>>>>)(@@@@@@@", +"@@@@@@@@!~_&&_^/@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/left-active.xpm b/common/xfwm4-dark/left-active.xpm new file mode 100644 index 0000000..7910439 --- /dev/null +++ b/common/xfwm4-dark/left-active.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char * left_active_xpm[] = { +"1 12 2 1", +" c None", +". c #111215", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/common/xfwm4-dark/left-inactive.xpm b/common/xfwm4-dark/left-inactive.xpm new file mode 100644 index 0000000..9c1ba36 --- /dev/null +++ b/common/xfwm4-dark/left-inactive.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char * left_inactive_xpm[] = { +"1 12 2 1", +" c None", +". c #111215", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/common/xfwm4-dark/maximize-active.xpm b/common/xfwm4-dark/maximize-active.xpm new file mode 100644 index 0000000..9c6462a --- /dev/null +++ b/common/xfwm4-dark/maximize-active.xpm @@ -0,0 +1,65 @@ +/* XPM */ +static char * maximize_active_xpm[] = { +"24 24 38 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #2D3239", +"$ c #23272D", +"% c #1D2125", +"& c #1A1D22", +"* c #1D2126", +"= c #23282D", +"- c #282C32", +"; c #1B1E23", +"> c #21242A", +", c #272A30", +"' c #272B30", +") c #282D32", +"! c #1A1E24", +"~ c #252A30", +"{ c #272C32", +"] c #262A30", +"^ c #282E34", +"/ c #717882", +"( c #939CA8", +"_ c #7F8690", +": c #21252A", +"< c #1E2125", +"[ c #1A1E22", +"} c #272B31", +"| c #282D34", +"1 c #747B85", +"2 c #2A2F35", +"3 c #292E34", +"4 c #6E757E", +"5 c #1B1E22", +"6 c #7F8892", +"7 c #23282E", +"8 c #292D33", +"9 c #262A2F", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>,'',>;)@@@@@@@", +"@@@@@@-!~{{{{{{];)@@@@@@", +"@@@@@#;~{{{{{{{{];#@@@@@", +"@@@@@$>{{{^/((_{{:=@@@@@", +"@@@@@<]{{^{^/(({{,*@@@@@", +"@@@@@[}{|12{34({{}[@@@@@", +"@@@@@[}{|(12{34{{}5@@@@@", +"@@@@@%]{|((/^{^{{,*@@@@@", +"@@@@@=>{{6((/^{{{:7@@@@@", +"@@@@@#;]{{{{{{{{]5#@@@@@", +"@@@@@@)!]{{{{{{];8@@@@@@", +"@@@@@@@);:,}}9:58@@@@@@@", +"@@@@@@@@#=*[[*7#@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-inactive.xpm b/common/xfwm4-dark/maximize-inactive.xpm new file mode 100644 index 0000000..6b08d2f --- /dev/null +++ b/common/xfwm4-dark/maximize-inactive.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char * maximize_inactive_xpm[] = { +"24 24 34 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #2D3139", +"$ c #262B31", +"% c #22272B", +"& c #1F2428", +"* c #2A2E34", +"= c #20242A", +"- c #24282F", +"; c #282D33", +"> c #2A2E35", +", c #21252B", +"' c #292E34", +") c #282C33", +"! c #21252A", +"~ c #2D3239", +"{ c #2A3035", +"] c #525962", +"^ c #676D76", +"/ c #5B606A", +"( c #22262B", +"_ c #282C32", +": c #282D32", +"< c #1F2429", +"[ c #545B62", +"} c #525760", +"| c #202429", +"1 c #282D34", +"2 c #202529", +"3 c #5C626B", +"4 c #272B32", +"5 c #22272C", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&%$#@@@@@@@@", +"@@@@@@@*=-;;;;-=>@@@@@@@", +"@@@@@@*,;'''''')!>@@@@@@", +"@@@@@#=;'''''''')=~@@@@@", +"@@@@@$-'''{]^^/''-$@@@@@", +"@@@@@(_''{'{]^^'':%@@@@@", +"@@@@@<;'*[>'*}^'';|@@@@@", +"@@@@@|;'*^[>'*}''12@@@@@", +"@@@@@%_'*^^]{'{'':%@@@@@", +"@@@@@$-''3^^]{'''-4@@@@@", +"@@@@@#=)'''''''')2~@@@@@", +"@@@@@@>,)'''''')!>@@@@@@", +"@@@@@@@>=-:;;:-2>@@@@@@@", +"@@@@@@@@~$5<<54~@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-prelight.xpm b/common/xfwm4-dark/maximize-prelight.xpm new file mode 100644 index 0000000..1e592a8 --- /dev/null +++ b/common/xfwm4-dark/maximize-prelight.xpm @@ -0,0 +1,73 @@ +/* XPM */ +static char * maximize_prelight_xpm[] = { +"24 24 46 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #313C48", +"$ c #406691", +"% c #4C81C1", +"& c #508FDA", +"* c #4B82C2", +"= c #406590", +"- c #3A5372", +"; c #4F8CD4", +"> c #416898", +", c #324459", +"' c #282E38", +") c #416998", +"! c #3A5371", +"~ c #4D88CF", +"{ c #2F3E54", +"] c #262A31", +"^ c #2F4054", +"/ c #323B49", +"( c #282D33", +"_ c #838A96", +": c #AFB8C5", +"< c #949BA6", +"[ c #416999", +"} c #406490", +"| c #4B82C3", +"1 c #304258", +"2 c #324359", +"3 c #282F3A", +"4 c #272B32", +"5 c #878E99", +"6 c #2A2E34", +"7 c #282C31", +"8 c #818691", +"9 c #508FD8", +"0 c #28313B", +"a c #4F8ED8", +"b c #959DA9", +"c c #40648E", +"d c #313B48", +"e c #395371", +"f c #32445A", +"g c #4B81C1", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>,'',);!@@@@@@@", +"@@@@@@-~{]]]]]]^~!@@@@@@", +"@@@@@#;{]]]]]]]]^;/@@@@@", +"@@@@@$>]]](_::<]][}@@@@@", +"@@@@@|1]](](_::]]2*@@@@@", +"@@@@@&3]456]78:]]39@@@@@", +"@@@@@93]4:56]78]]0a@@@@@", +"@@@@@%1]4::_(](]]2*@@@@@", +"@@@@@=)]]b::_(]]][c@@@@@", +"@@@@@#;^]]]]]]]]^;d@@@@@", +"@@@@@@!~^]]]]]]^~e@@@@@@", +"@@@@@@@!;[233f[;e@@@@@@@", +"@@@@@@@@/}g&&gcd@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-pressed.xpm b/common/xfwm4-dark/maximize-pressed.xpm new file mode 100644 index 0000000..c0b4f88 --- /dev/null +++ b/common/xfwm4-dark/maximize-pressed.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char * maximize_pressed_xpm[] = { +"24 24 33 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"# c #313C48", +"$ c #406691", +"% c #4C81C1", +"& c #508FDA", +"* c #4B82C2", +"= c #406590", +"- c #3A5372", +"; c #508FD8", +"> c #5294E2", +", c #3A5371", +"' c #5193E1", +") c #4F8ED8", +"! c #323B49", +"~ c #5596E3", +"{ c #C7DDF6", +"] c #FFFFFF", +"^ c #DDEAF9", +"/ c #406490", +"( c #4B82C3", +"_ c #5395E2", +": c #CCE0F6", +"< c #5797E3", +"[ c #5495E2", +"} c #C3DAF5", +"| c #DFEBFA", +"1 c #40648E", +"2 c #313B48", +"3 c #395371", +"4 c #4B81C1", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@#$%&&*=#@@@@@@@@", +"@@@@@@@-;>>>>>>;,@@@@@@@", +"@@@@@@-'>>>>>>>>',@@@@@@", +"@@@@@#;>>>>>>>>>>)!@@@@@", +"@@@@@$>>>>~{]]^>>>/@@@@@", +"@@@@@(>>>~>~{]]>>>*@@@@@", +"@@@@@&>>_:<>[}]>>>;@@@@@", +"@@@@@;>>_]:<>[}>>>)@@@@@", +"@@@@@%>>_]]{~>~>>>*@@@@@", +"@@@@@=>>>|]]{~>>>>1@@@@@", +"@@@@@#;>>>>>>>>>>)2@@@@@", +"@@@@@@,'>>>>>>>>'3@@@@@@", +"@@@@@@@,)>>>>>>)3@@@@@@@", +"@@@@@@@@!/4&&412@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/menu-active.xpm b/common/xfwm4-dark/menu-active.xpm new file mode 100644 index 0000000..4c79ef4 --- /dev/null +++ b/common/xfwm4-dark/menu-active.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * menu_active_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #A4AAB7", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"....+......+....", +"....++....++....", +".....++..++.....", +"......++++......", +".......++.......", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/menu-inactive.xpm b/common/xfwm4-dark/menu-inactive.xpm new file mode 100644 index 0000000..419d85a --- /dev/null +++ b/common/xfwm4-dark/menu-inactive.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * menu_inactive_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #797D87", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"....+......+....", +"....++....++....", +".....++..++.....", +"......++++......", +".......++.......", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/menu-pressed.xpm b/common/xfwm4-dark/menu-pressed.xpm new file mode 100644 index 0000000..d676c4b --- /dev/null +++ b/common/xfwm4-dark/menu-pressed.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * menu_pressed_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #5294E2", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"....+......+....", +"....++....++....", +".....++..++.....", +"......++++......", +".......++.......", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/right-active.xpm b/common/xfwm4-dark/right-active.xpm new file mode 100644 index 0000000..123b2c5 --- /dev/null +++ b/common/xfwm4-dark/right-active.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char * right_active_xpm[] = { +"1 12 2 1", +" c None", +". c #111215", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/common/xfwm4-dark/right-inactive.xpm b/common/xfwm4-dark/right-inactive.xpm new file mode 100644 index 0000000..ee0338d --- /dev/null +++ b/common/xfwm4-dark/right-inactive.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char * right_inactive_xpm[] = { +"1 12 2 1", +" c None", +". c #111215", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/common/xfwm4-dark/shade-active.xpm b/common/xfwm4-dark/shade-active.xpm new file mode 100644 index 0000000..aec634b --- /dev/null +++ b/common/xfwm4-dark/shade-active.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * shade_active_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #A4AAB7", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +".......++.......", +"......++++......", +".....++++++.....", +"....++++++++....", +"................", +"....++++++++....", +"....++++++++....", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/shade-inactive.xpm b/common/xfwm4-dark/shade-inactive.xpm new file mode 100644 index 0000000..c199c04 --- /dev/null +++ b/common/xfwm4-dark/shade-inactive.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * shade_inactive_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #797D87", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +".......++.......", +"......++++......", +".....++++++.....", +"....++++++++....", +"................", +"....++++++++....", +"....++++++++....", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/shade-pressed.xpm b/common/xfwm4-dark/shade-pressed.xpm new file mode 100644 index 0000000..845f56f --- /dev/null +++ b/common/xfwm4-dark/shade-pressed.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * shade_pressed_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #5294E2", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +".......++.......", +"......++++......", +".....++++++.....", +"....++++++++....", +"................", +"....++++++++....", +"....++++++++....", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/stick-active.xpm b/common/xfwm4-dark/stick-active.xpm new file mode 100644 index 0000000..96d5f02 --- /dev/null +++ b/common/xfwm4-dark/stick-active.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * stick_active_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #A4AAB7", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +".......++.......", +".......++.......", +".......++.......", +"....++++++++....", +"....++++++++....", +".......++.......", +".......++.......", +".......++.......", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/stick-inactive.xpm b/common/xfwm4-dark/stick-inactive.xpm new file mode 100644 index 0000000..b7e71a9 --- /dev/null +++ b/common/xfwm4-dark/stick-inactive.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * stick_inactive_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #797D87", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +".......++.......", +".......++.......", +".......++.......", +"....++++++++....", +"....++++++++....", +".......++.......", +".......++.......", +".......++.......", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/stick-pressed.xpm b/common/xfwm4-dark/stick-pressed.xpm new file mode 100644 index 0000000..0f311ab --- /dev/null +++ b/common/xfwm4-dark/stick-pressed.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * stick_pressed_xpm[] = { +"16 22 3 1", +" c None", +". c #2F343B", +"+ c #5294E2", +"................", +"................", +"................", +"................", +"................", +"................", +"................", +".......++.......", +".......++.......", +".......++.......", +"....++++++++....", +"....++++++++....", +".......++.......", +".......++.......", +".......++.......", +"................", +"................", +"................", +"................", +"................", +"................", +"................"}; diff --git a/common/xfwm4-dark/themerc b/common/xfwm4-dark/themerc new file mode 100644 index 0000000..6df2fa3 --- /dev/null +++ b/common/xfwm4-dark/themerc @@ -0,0 +1,30 @@ +button_offset=7 +button_spacing=4 +full_width_title=true +title_horizontal_offset=0 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +#title_shadow_active=true +title_shadow_inactive=true + +#button_layout=O|HMC + +active_text_color=#afb8c5 +active_text_shadow_color=#2f343b +inactive_text_color=#808791 +inactive_text_shadow_color=#2f343b + +placement_ratio=20 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=35 + +title_shadow_active=false + +resize_opacity=100 +move_opacity=100 +popup_opacity=100 +show_frame_shadow=true +show_popup_shadow=true diff --git a/common/xfwm4-dark/title-1-active-shaded.xpm b/common/xfwm4-dark/title-1-active-shaded.xpm new file mode 100644 index 0000000..57f3ffe --- /dev/null +++ b/common/xfwm4-dark/title-1-active-shaded.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_1_active_shaded_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-1-active.xpm b/common/xfwm4-dark/title-1-active.xpm new file mode 100644 index 0000000..29a863c --- /dev/null +++ b/common/xfwm4-dark/title-1-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-1-inactive.xpm b/common/xfwm4-dark/title-1-inactive.xpm new file mode 100644 index 0000000..c596666 --- /dev/null +++ b/common/xfwm4-dark/title-1-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_1_inactive_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-2-active.xpm b/common/xfwm4-dark/title-2-active.xpm new file mode 100644 index 0000000..b47656c --- /dev/null +++ b/common/xfwm4-dark/title-2-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-2-inactive.xpm b/common/xfwm4-dark/title-2-inactive.xpm new file mode 100644 index 0000000..994c9df --- /dev/null +++ b/common/xfwm4-dark/title-2-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_2_inactive_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-3-active.xpm b/common/xfwm4-dark/title-3-active.xpm new file mode 100644 index 0000000..6636d55 --- /dev/null +++ b/common/xfwm4-dark/title-3-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-3-inactive.xpm b/common/xfwm4-dark/title-3-inactive.xpm new file mode 100644 index 0000000..2ba62f1 --- /dev/null +++ b/common/xfwm4-dark/title-3-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_3_inactive_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-4-active.xpm b/common/xfwm4-dark/title-4-active.xpm new file mode 100644 index 0000000..f166460 --- /dev/null +++ b/common/xfwm4-dark/title-4-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-4-inactive.xpm b/common/xfwm4-dark/title-4-inactive.xpm new file mode 100644 index 0000000..4aac53c --- /dev/null +++ b/common/xfwm4-dark/title-4-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_4_inactive_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-5-active.xpm b/common/xfwm4-dark/title-5-active.xpm new file mode 100644 index 0000000..6f0d325 --- /dev/null +++ b/common/xfwm4-dark/title-5-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-5-inactive.xpm b/common/xfwm4-dark/title-5-inactive.xpm new file mode 100644 index 0000000..8be09f3 --- /dev/null +++ b/common/xfwm4-dark/title-5-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * title_5_inactive_xpm[] = { +"24 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +"........................", +"++++++++++++++++++++++++", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/top-left-active-shaded.xpm b/common/xfwm4-dark/top-left-active-shaded.xpm new file mode 100644 index 0000000..0580dcd --- /dev/null +++ b/common/xfwm4-dark/top-left-active-shaded.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * top_left_active_shaded_xpm[] = { +"5 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +" ....", +".++++", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@"}; diff --git a/common/xfwm4-dark/top-left-active.xpm b/common/xfwm4-dark/top-left-active.xpm new file mode 100644 index 0000000..c80f1ba --- /dev/null +++ b/common/xfwm4-dark/top-left-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"5 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +" ....", +".++++", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@"}; diff --git a/common/xfwm4-dark/top-left-inactive.xpm b/common/xfwm4-dark/top-left-inactive.xpm new file mode 100644 index 0000000..61397b7 --- /dev/null +++ b/common/xfwm4-dark/top-left-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * top_left_inactive_xpm[] = { +"5 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +" ....", +".++++", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@", +".@@@@"}; diff --git a/common/xfwm4-dark/top-right-active-shaded.xpm b/common/xfwm4-dark/top-right-active-shaded.xpm new file mode 100644 index 0000000..47c1c24 --- /dev/null +++ b/common/xfwm4-dark/top-right-active-shaded.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * top_right_active_shaded_xpm[] = { +"5 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +".... ", +"++++.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@."}; diff --git a/common/xfwm4-dark/top-right-active.xpm b/common/xfwm4-dark/top-right-active.xpm new file mode 100644 index 0000000..76421cd --- /dev/null +++ b/common/xfwm4-dark/top-right-active.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"5 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +".... ", +"++++.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@."}; diff --git a/common/xfwm4-dark/top-right-inactive.xpm b/common/xfwm4-dark/top-right-inactive.xpm new file mode 100644 index 0000000..d9ff024 --- /dev/null +++ b/common/xfwm4-dark/top-right-inactive.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * top_right_inactive_xpm[] = { +"5 24 4 1", +" c None", +". c #111215", +"+ c #353B44", +"@ c #2F343B", +".... ", +"++++.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@.", +"@@@@."}; diff --git a/configure.ac b/configure.ac index 9e0c45f..440ef87 100644 --- a/configure.ac +++ b/configure.ac @@ -12,6 +12,9 @@ AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign]) AC_PROG_MKDIR_P +ARC_ENABLE([LIGHT], [light], [Arc Light], [disable]) +ARC_ENABLE([DARKER], [darker], [Arc Darker], [disable]) +ARC_ENABLE([DARK], [dark], [Arc Dark], [disable]) ARC_ENABLE([GNOME_SHELL], [gnome-shell], [GNOME Shell], [disable]) ARC_ENABLE([GTK2], [gtk2], [GTK2], [disable]) ARC_ENABLE([GTK3], [gtk3], [GTK3], [disable]) diff --git a/extra/Chrome/arc-dark-theme.crx b/extra/Chrome/arc-dark-theme.crx Binary files differnew file mode 100644 index 0000000..7847800 --- /dev/null +++ b/extra/Chrome/arc-dark-theme.crx diff --git a/extra/Chrome/arc-dark-theme/images/theme_frame.png b/extra/Chrome/arc-dark-theme/images/theme_frame.png Binary files differnew file mode 100644 index 0000000..69fc3d1 --- /dev/null +++ b/extra/Chrome/arc-dark-theme/images/theme_frame.png diff --git a/extra/Chrome/arc-dark-theme/images/theme_frame_inactive.png b/extra/Chrome/arc-dark-theme/images/theme_frame_inactive.png Binary files differnew file mode 100644 index 0000000..c174735 --- /dev/null +++ b/extra/Chrome/arc-dark-theme/images/theme_frame_inactive.png diff --git a/extra/Chrome/arc-dark-theme/images/theme_toolbar.png b/extra/Chrome/arc-dark-theme/images/theme_toolbar.png Binary files differnew file mode 100644 index 0000000..cefe4e5 --- /dev/null +++ b/extra/Chrome/arc-dark-theme/images/theme_toolbar.png diff --git a/extra/Chrome/arc-dark-theme/manifest.json b/extra/Chrome/arc-dark-theme/manifest.json new file mode 100644 index 0000000..2860580 --- /dev/null +++ b/extra/Chrome/arc-dark-theme/manifest.json @@ -0,0 +1,39 @@ +{ + "description": "Arc-Dark theme for Chrome/Chromium", + "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6RY/VX2xN/FFEQQwi4sSHGaMxF6cARCTsKKxmPhbics9qDIkZxxBqeM4TUhHDhgsZrxZsXAplyKnIjTEIdw96XDK34uF5cqLOG5vzFRIOAdFfCyC9HNupQGg3Vd8PKSVmLZz/2Xsu5zmvx+zz3VIDtNK+HaVktMhJnO9utBougQIDAQAB", + "manifest_version": 2, + "name": "Arc Darker", + "theme": { + "colors": { + "bookmark_text": [ 35, 35, 35 ], + "button_background": [ 0, 0, 0, 0 ], + "frame": [ 235, 235, 237 ], + "frame_inactive": [ 235, 235, 237 ], + "frame_incognito": [ 235, 235, 237 ], + "frame_incognito_inactive": [ 235, 235, 237 ], + "ntp_background": [ 255, 255, 255 ], + "ntp_text": [ 0, 0, 0 ], + "tab_background_text": [ 100, 100, 100 ], + "tab_text": [ 20, 20, 20 ], + "toolbar": [ 223, 223, 223 ] + }, + "images": { + "theme_frame": "images/theme_frame.png", + "theme_frame_inactive": "images/theme_frame_inactive.png", + "theme_toolbar": "images/theme_toolbar.png" + }, + "properties": { + "ntp_background_alignment": "bottom", + "ntp_background_repeat": "no-repeat" + }, + "tints": { + "background_tab": [ -1, 0.5, 0.85 ], + "buttons": [ -1, -1, -1 ], + "frame": [ -1, -1, -1 ], + "frame_inactive": [ -1, -1, -1 ], + "frame_incognito": [ -1, 0.2, 0.35 ], + "frame_incognito_inactive": [ -1, 0.3, 0.6 ] + } + }, + "version": "1" +} |