Add compact version

pull/30/head
vinceliuice 6 years ago
parent 557bdf2740
commit c05a4f690a

@ -17,6 +17,8 @@ fi
THEME_NAME=Orchis
COLOR_VARIANTS=('' '-dark')
SIZE_VARIANTS=('' '-compact')
usage() {
cat << EOF
Usage: $0 [OPTION]...
@ -25,6 +27,7 @@ OPTIONS:
-d, --dest DIR Specify destination directory (Default: $DEST_DIR)
-n, --name NAME Specify theme name (Default: $THEME_NAME)
-c, --color VARIANT... Specify color variant(s) [standard|dark] (Default: All variants)s)
-s, --size VARIANT Specify size variant [standard|compact] (Default: All variants)
-h, --help Show help
INSTALLATION EXAMPLES:
@ -41,8 +44,9 @@ install() {
local dest="$1"
local name="$2"
local color="$3"
local size="$4"
local THEME_DIR="$dest/$name$color"
local THEME_DIR="$dest/$name$color$size"
[[ -d "$THEME_DIR" ]] && rm -rf "${THEME_DIR:?}"
@ -53,20 +57,20 @@ install() {
echo "[Desktop Entry]" >> "${THEME_DIR}/index.theme"
echo "Type=X-GNOME-Metatheme" >> "${THEME_DIR}/index.theme"
echo "Name=$name$color" >> "${THEME_DIR}/index.theme"
echo "Name=$name$color$size" >> "${THEME_DIR}/index.theme"
echo "Comment=An Materia Gtk+ theme based on Elegant Design" >> "${THEME_DIR}/index.theme"
echo "Encoding=UTF-8" >> "${THEME_DIR}/index.theme"
echo "" >> "${THEME_DIR}/index.theme"
echo "[X-GNOME-Metatheme]" >> "${THEME_DIR}/index.theme"
echo "GtkTheme=$name$color" >> "${THEME_DIR}/index.theme"
echo "MetacityTheme=$name$color" >> "${THEME_DIR}/index.theme"
echo "GtkTheme=$name$color$size" >> "${THEME_DIR}/index.theme"
echo "MetacityTheme=$name$color$size" >> "${THEME_DIR}/index.theme"
echo "IconTheme=Adwaita" >> "${THEME_DIR}/index.theme"
echo "CursorTheme=Adwaita" >> "${THEME_DIR}/index.theme"
echo "ButtonLayout=close,minimize,maximize:menu" >> "${THEME_DIR}/index.theme"
mkdir -p "${THEME_DIR}/gnome-shell"
cp -ur "${SRC_DIR}"/gnome-shell/{extensions,message-indicator-symbolic.svg,pad-osd.css} "${THEME_DIR}/gnome-shell"
cp -ur "${SRC_DIR}/gnome-shell/gnome-shell$color.css" "${THEME_DIR}/gnome-shell/gnome-shell.css"
cp -ur "${SRC_DIR}/gnome-shell/gnome-shell$color$size.css" "${THEME_DIR}/gnome-shell/gnome-shell.css"
cp -ur "${SRC_DIR}/gnome-shell/common-assets" "${THEME_DIR}/gnome-shell/assets"
cp -ur "${SRC_DIR}"/gnome-shell/assets$color/*.svg "${THEME_DIR}/gnome-shell/assets"
@ -84,9 +88,9 @@ install() {
mkdir -p "$THEME_DIR/gtk-3.0"
ln -s ../gtk-assets "$THEME_DIR/gtk-3.0/assets"
cp -r "$SRC_DIR/gtk/3.0/gtk$color.css" "$THEME_DIR/gtk-3.0/gtk.css"
cp -r "$SRC_DIR/gtk/3.0/gtk$color$size.css" "$THEME_DIR/gtk-3.0/gtk.css"
[[ "$color" != '-dark' ]] && \
cp -r "$SRC_DIR/gtk/3.0/gtk-dark.css" "$THEME_DIR/gtk-3.0/gtk-dark.css"
cp -r "$SRC_DIR/gtk/3.0/gtk-dark$size.css" "$THEME_DIR/gtk-3.0/gtk-dark.css"
mkdir -p "$THEME_DIR/plank"
cp -r "$SRC_DIR/plank/dock.theme" "$THEME_DIR/plank"
@ -128,6 +132,29 @@ while [[ "$#" -gt 0 ]]; do
esac
done
;;
-s|--size)
shift
for variant in "$@"; do
case "$variant" in
standard)
sizes+=("${SIZE_VARIANTS[0]}")
shift
;;
compact)
sizes+=("${SIZE_VARIANTS[1]}")
shift
;;
-*)
break
;;
*)
echo "ERROR: Unrecognized size variant '${1:-}'."
echo "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-h|--help)
usage
exit 0
@ -144,8 +171,14 @@ if [[ "${#colors[@]}" -eq 0 ]] ; then
colors=("${COLOR_VARIANTS[@]}")
fi
if [[ "${#sizes[@]}" -eq 0 ]] ; then
sizes=("${SIZE_VARIANTS[@]}")
fi
for color in "${colors[@]}"; do
install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$color"
for size in "${sizes[@]}"; do
install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$color" "$size"
done
done
echo

@ -9,14 +9,23 @@ fi
SASSC_OPT=('-M' '-t' 'expanded')
_COLOR_VARIANTS=('' '-dark')
_SIZE_VARIANTS=('' '-compact')
if [[ -n "${COLOR_VARIANTS:-}" ]]; then
IFS=', ' read -r -a _COLOR_VARIANTS <<< "${COLOR_VARIANTS:-}"
fi
if [[ -n "${SIZE_VARIANTS:-}" ]]; then
IFS=', ' read -r -a _SIZE_VARIANTS <<< "${SIZE_VARIANTS:-}"
fi
echo "== Generating the CSS..."
for color in "${_COLOR_VARIANTS[@]}"; do
sassc "${SASSC_OPT[@]}" "src/gtk/3.0/gtk$color."{scss,css}
sassc "${SASSC_OPT[@]}" "src/gnome-shell/gnome-shell$color."{scss,css}
for size in "${_SIZE_VARIANTS[@]}"; do
sassc "${SASSC_OPT[@]}" "src/gtk/3.0/gtk$color$size."{scss,css}
sassc "${SASSC_OPT[@]}" "src/gnome-shell/gnome-shell$color$size."{scss,css}
done
done
echo "== done!"

@ -53,7 +53,7 @@ $primary: if($variant == 'light', $primary-dark, $
$background: if($variant == 'light', #F2F2F2, #212121);
$surface: if($variant == 'light', #FFFFFF, #3C3C3C);
$base: if($variant == 'light', #FFFFFF, #2C2C2C); // semi-surface with 1dp elevation
$base-alt: if($variant == 'light', #FAFAFA, #2C2C2C);
$base-alt: if($variant == 'light', #FAFAFA, #242424);
$os-background: #212121;
$tooltip: rgba(#616161, 0.9);

@ -1876,7 +1876,7 @@ notebook {
font-weight: 500;
&:hover {
background-color: $overlay-hover;
background-color: $frame;
color: $text;
}
@ -3277,7 +3277,7 @@ tooltip {
}
// padding: 4px; /* not working */
border-radius: $circular-radius;
border-radius: $corner-radius/2;
box-shadow: none; // otherwise it gets inherited by windowframe.csd
&:not(.csd):not(.unity-csd) {

@ -288,7 +288,7 @@
.icon-item-background {
padding: 4px;
border-radius: 6px;
border-radius: $bar-size;
}
&:selected {
@ -298,8 +298,8 @@
}
}
.nautilus-window .view {
border-radius: 6px;
.nautilus-window notebook :not(treeview).view {
border-radius: $bar-size;
selection,
&:selected {

File diff suppressed because it is too large Load Diff

@ -0,0 +1,10 @@
$variant: 'light';
$laptop: 'true';
$panel: 'light';
$trans: 'true';
@import 'sass/variables';
@import 'sass/colors';
@import 'sass/drawing';
@import 'sass/common';
@import 'sass/extensions';

File diff suppressed because it is too large Load Diff

@ -0,0 +1,10 @@
$variant: 'dark';
$laptop: 'true';
$panel: 'dark';
$trans: 'true';
@import 'sass/variables';
@import 'sass/colors';
@import 'sass/drawing';
@import 'sass/common';
@import 'sass/extensions';

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
$variant: 'light';
$topbar: 'light';
$compact: 'true';
@import '../../_sass/variables';
@import '../../_sass/colors';
@import '../../_sass/gtk/drawing-3.20';
@import '../../_sass/gtk/common-3.20';
@import '../../_sass/gtk/apps-3.22';
@import '../../_sass/gtk/colors-public';

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
$variant: 'dark';
$topbar: 'dark';
$compact: 'true';
@import '../../_sass/variables';
@import '../../_sass/colors';
@import '../../_sass/gtk/drawing-3.20';
@import '../../_sass/gtk/common-3.20';
@import '../../_sass/gtk/apps-3.22';
@import '../../_sass/gtk/colors-public';

@ -122,7 +122,7 @@ textview text {
}
textview border {
background-color: #2C2C2C;
background-color: #242424;
color: rgba(255, 255, 255, 0.7);
}
@ -380,7 +380,7 @@ entry progress {
.gedit-search-slider .linked:not(.vertical) > entry:disabled {
box-shadow: inset 0 0 0 2px transparent;
background-color: #2C2C2C;
background-color: #242424;
color: rgba(255, 255, 255, 0.5);
}
@ -399,7 +399,7 @@ entry progress {
.gedit-search-slider .linked:not(.vertical) > entry.error:disabled {
box-shadow: inset 0 0 0 2px transparent;
background-color: #2C2C2C;
background-color: #242424;
color: rgba(255, 255, 255, 0.5);
}
@ -430,7 +430,7 @@ entry progress {
.gedit-search-slider .linked:not(.vertical) > entry.warning:disabled {
box-shadow: inset 0 0 0 2px transparent;
background-color: #2C2C2C;
background-color: #242424;
color: rgba(255, 255, 255, 0.5);
}
@ -1388,7 +1388,7 @@ toolbar:not(.inline-toolbar):not(.osd) switch {
border-style: solid;
border-width: 0 1px 1px;
border-color: rgba(0, 0, 0, 0.16);
background-color: #2C2C2C;
background-color: #242424;
}
searchbar > revealer > box,
@ -2129,7 +2129,7 @@ popover.background list separator {
*************/
frame > paned > notebook > header,
notebook.frame > header {
background-color: #2C2C2C;
background-color: #242424;
}
notebook:focus tab:checked {
@ -2266,7 +2266,7 @@ notebook > header tab {
}
notebook > header tab:hover, notebook > header tab > box:drop(active) {
background-color: alpha(currentColor, 0.08);
background-color: rgba(0, 0, 0, 0.16);
color: white;
}
@ -3508,7 +3508,7 @@ filechooser stack.view scrolledwindow treeview.view, filechooser stack.view wind
***********/
.sidebar {
border-style: none;
background-color: #2C2C2C;
background-color: #242424;
}
stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) {
@ -3531,7 +3531,7 @@ paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .
stacksidebar.sidebar list {
padding: 4px;
background-color: #2C2C2C;
background-color: #242424;
}
stacksidebar.sidebar row {
@ -3747,7 +3747,7 @@ infobar.error *:link, infobar.error button.link:link {
* Tooltips *
************/
tooltip {
border-radius: 9999px;
border-radius: 6px;
box-shadow: none;
}
@ -3932,7 +3932,7 @@ modelbutton.flat:selected,
background-color: alpha(currentColor, 0.06);
}
flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window .view selection, .nautilus-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nautilus-window treeview.view selection, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view selection, .nautilus-window .view:selected, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view:selected, .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected {
flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window notebook :not(treeview).view selection, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview) selection, filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview) selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook .view:selected:not(treeview), .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:selected:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected {
color: #3281ea;
background-color: rgba(50, 129, 234, 0.2);
}
@ -4339,7 +4339,7 @@ popover.emoji-completion .emoji:hover {
background-color: transparent;
}
.nautilus-window .view, .nautilus-window filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .nautilus-window treeview.view, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view {
.nautilus-window notebook :not(treeview).view, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) {
border-radius: 6px;
}
@ -4390,7 +4390,7 @@ dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:
}
.nautilus-window paned > separator {
background-color: #2C2C2C;
background-color: #242424;
}
/*********
@ -4407,7 +4407,7 @@ dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:
}
.gedit-document-panel {
background-color: #2C2C2C;
background-color: #242424;
}
.gedit-document-panel row button.flat {
@ -4505,7 +4505,7 @@ frame.gedit-map-frame > border:dir(rtl) {
* Tweaks *
**********/
.tweak-categories {
background-image: image(#2C2C2C);
background-image: image(#242424);
}
.csd .tweak-categories {
@ -4812,7 +4812,7 @@ entry.preferences-search {
}
preferences stacksidebar.sidebar list {
background-color: #2C2C2C;
background-color: #242424;
}
preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list {
@ -5118,11 +5118,11 @@ overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) {
}
.side-panel .view, .side-panel filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .side-panel treeview.view, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view {
background-image: image(#2C2C2C);
background-image: image(#242424);
}
.side-panel .view:hover, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:hover {
background-image: image(#3d3d3d);
background-image: image(#363636);
}
.side-panel .view:selected, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:selected {
@ -5328,7 +5328,7 @@ box.dialog-vbox scrolledwindow.related {
}
list.categories {
background-image: image(#2C2C2C);
background-image: image(#242424);
}
/*********
@ -5579,7 +5579,7 @@ tooltip.background.chromium {
}
#MozillaGtkWidget > widget > entry:disabled {
background-color: #2C2C2C;
background-color: #242424;
}
#MozillaGtkWidget > widget > button > button {
@ -7173,7 +7173,7 @@ window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwind
}
.nemo-window .nemo-inactive-pane .view:not(:selected), .nemo-window .nemo-inactive-pane window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window .nemo-inactive-pane treeview.view:not(:selected) {
background-color: #2C2C2C;
background-color: #242424;
}
.nemo-window .nemo-window-pane widget.entry {
@ -7219,7 +7219,7 @@ text foreground color of insensitive widgets */
@define-color insensitive_fg_color rgba(255, 255, 255, 0.5);
/*
insensitive text widgets and the like base background color */
@define-color insensitive_base_color #2C2C2C;
@define-color insensitive_base_color #242424;
/*
widget text/foreground color on backdrop windows */
@define-color theme_unfocused_fg_color white;

@ -2265,7 +2265,7 @@ notebook > header tab {
}
notebook > header tab:hover, notebook > header tab > box:drop(active) {
background-color: alpha(currentColor, 0.08);
background-color: rgba(0, 0, 0, 0.08);
color: rgba(0, 0, 0, 0.87);
}
@ -3746,7 +3746,7 @@ infobar.error *:link, infobar.error button.link:link {
* Tooltips *
************/
tooltip {
border-radius: 9999px;
border-radius: 6px;
box-shadow: none;
}
@ -3931,7 +3931,7 @@ modelbutton.flat:selected,
background-color: alpha(currentColor, 0.06);
}
flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window .view selection, .nautilus-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nautilus-window treeview.view selection, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view selection, .nautilus-window .view:selected, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view:selected, .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected {
flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window notebook :not(treeview).view selection, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview) selection, filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview) selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook .view:selected:not(treeview), .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:selected:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected {
color: #1A73E8;
background-color: rgba(50, 129, 234, 0.2);
}
@ -4338,7 +4338,7 @@ popover.emoji-completion .emoji:hover {
background-color: transparent;
}
.nautilus-window .view, .nautilus-window filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .nautilus-window treeview.view, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view {
.nautilus-window notebook :not(treeview).view, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) {
border-radius: 6px;
}

@ -110,7 +110,7 @@
id="color-primary-light">
<stop
offset="1"
stop-color="#8AB4F8"
stop-color="#3281ea"
id="stop21" />
</linearGradient>
<linearGradient

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

@ -11,7 +11,6 @@ scale-vert-marks-before-slider-disabled
scale-vert-marks-after-slider
scale-vert-marks-after-slider-disabled
row-selected
tab
selectionmode-checkbox-unchecked-dark
selectionmode-checkbox-checked-dark
scale-slider-dark
@ -25,4 +24,3 @@ scale-vert-marks-before-slider-disabled-dark
scale-vert-marks-after-slider-dark
scale-vert-marks-after-slider-disabled-dark
row-selected-dark
tab-dark

Binary file not shown.

Before

Width:  |  Height:  |  Size: 395 B

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 541 B

After

Width:  |  Height:  |  Size: 541 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 390 B

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 547 B

After

Width:  |  Height:  |  Size: 547 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 305 B

After

Width:  |  Height:  |  Size: 305 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 509 B

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 B

After

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 522 B

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 367 B

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 B

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 482 B

After

Width:  |  Height:  |  Size: 482 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 725 B

After

Width:  |  Height:  |  Size: 725 B

Loading…
Cancel
Save