pull/85/head
vinceliuice 5 years ago
parent 9d6a1729cb
commit bcc6a65f94

@ -31,6 +31,7 @@ Run the following commands in the terminal:
-n, --name NAME Specify theme name (Default: Orchis)
-t, --theme VARIANT... Specify theme color variant(s) [default|purple|pink|red|orange|yellow|green|grey|all] (Default: blue)
-c, --color VARIANT... Specify color variant(s) [standard|light|dark] (Default: All variants)
--radio-color Change radio button checked color to default primary color (Default is Green)
-h, --help Show help
```

@ -30,6 +30,7 @@ OPTIONS:
-t, --theme VARIANT Specify theme color variant(s) [default|purple|pink|red|orange|yellow|green|grey|all] (Default: blue)
-c, --color VARIANT... Specify color variant(s) [standard|light|dark] (Default: All variants)s)
-s, --size VARIANT Specify size variant [standard|compact] (Default: All variants)
--radio-color Change radio button checked color to default primary color (Default is Green)
-h, --help Show help
INSTALLATION EXAMPLES:
@ -123,6 +124,10 @@ while [[ "$#" -gt 0 ]]; do
_name="$2"
shift 2
;;
--radio-color)
radio="true"
shift
;;
-t|--theme)
accent='true'
shift
@ -237,6 +242,39 @@ while [[ "$#" -gt 0 ]]; do
esac
done
parse_sass() {
cd ${REPO_DIR} && ./parse-sass.sh
}
change_radio_color() {
if [[ "${radio:-}" == 'true' ]]; then
cd ${SRC_DIR}/_sass/gtk
sed -i.bak "/\$check_radio_primary/s/success/primary/" _common-3.20.scss
echo "Change radio color ..."
parse_sass
fi
}
restore_files() {
if [[ -f ${SRC_DIR}/_sass/gtk/_common-3.20.scss.bak ]]; then
cd ${SRC_DIR}/_sass/gtk
rm -rf _common-3.20.scss
mv -f _common-3.20.scss.bak _common-3.20.scss
echo "Restore _common-3.20.scss file ..."
parse_sass
fi
}
install_theme() {
for theme in "${themes[@]}"; do
for color in "${colors[@]}"; do
for size in "${sizes[@]}"; do
install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$theme" "$color" "$size"
done
done
done
}
if [[ "${#themes[@]}" -eq 0 ]] ; then
themes=("${THEME_VARIANTS[0]}")
fi
@ -249,13 +287,7 @@ if [[ "${#sizes[@]}" -eq 0 ]] ; then
sizes=("${SIZE_VARIANTS[@]}")
fi
for theme in "${themes[@]}"; do
for color in "${colors[@]}"; do
for size in "${sizes[@]}"; do
install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$theme" "$color" "$size"
done
done
done
change_radio_color && install_theme && restore_files
echo
echo "Done."

@ -2177,6 +2177,7 @@ radiobutton.text-button {
}
$check_radio_size: 40px;
$check_radio_primary: $success;
check,
radio {
@ -2189,7 +2190,7 @@ radio {
@extend %circular_button;
&:checked, &:indeterminate {
color: $primary;
color: $check_radio_primary;
&:disabled { color: $text-secondary-disabled; }
}
@ -2303,7 +2304,7 @@ treeview.view radio {
&:disabled { color: $text-secondary-disabled; }
&:checked, &:indeterminate { color: $primary; }
&:checked, &:indeterminate { color: $check_radio_primary; }
&:checked:disabled, &:indeterminate:disabled { color: $text-secondary-disabled; }
}

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #3281ea;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #3281ea;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #3281ea;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #3281ea;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #66BB6A;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #66BB6A;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #66BB6A;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #66BB6A;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #4CAF50;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #616161;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #616161;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #757575;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #757575;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #757575;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #757575;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #616161;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #616161;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #616161;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #616161;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #616161;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #616161;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FB8C00;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FB8C00;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FB8C00;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FB8C00;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F57C00;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F06292;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F06292;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F06292;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F06292;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #EC407A;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #BA68C8;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #BA68C8;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #BA68C8;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #BA68C8;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #AB47BC;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F44336;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F44336;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #F44336;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #F44336;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #E53935;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FFD600;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FFD600;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FFD600;
color: #81C995;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FFD600;
color: #81C995;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5667,10 +5667,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6064,6 +6069,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #FBC02D;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,
@ -5668,10 +5668,15 @@ window.background.csd > stack > grid > scrolledwindow > viewport > box > frame >
border: none;
}
window.background.csd > stack > box > box > list {
window.background.csd > stack > box > box > list,
window.background.csd > stack > box > stack > scrolledwindow > viewport > list {
border-bottom-left-radius: 18px;
}
window.background.csd > stack > box > .sidebar > scrolledwindow > viewport > list {
padding: 0 0;
}
/***********
* Dialogs *
***********/
@ -6065,6 +6070,14 @@ window.background.csd > box.vertical > overlay > stack > box.vertical > box.hori
border-radius: 0;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame {
border: none;
}
window.background.csd > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
/*********
* Unity *
*********/

@ -2510,7 +2510,7 @@ radio {
check:checked, check:indeterminate,
radio:checked,
radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
check:checked:disabled, check:indeterminate:disabled,
@ -2681,7 +2681,7 @@ filechooser stack.view scrolledwindow treeview.view radio:checked,
treeview.view radio:indeterminate,
window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) radio:indeterminate,
filechooser stack.view scrolledwindow treeview.view radio:indeterminate {
color: #1A73E8;
color: #0F9D58;
}
treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:checked:disabled, filechooser stack.view scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(.progressbar):not(.trough) check:indeterminate:disabled, filechooser stack.view scrolledwindow treeview.view check:indeterminate:disabled,

Loading…
Cancel
Save