Update #89
This commit is contained in:
parent
966d23dfe0
commit
cd4b47cecd
10 changed files with 268 additions and 68 deletions
302
install.sh
302
install.sh
|
@ -242,6 +242,18 @@ install_gdm() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
install_theme() {
|
||||||
|
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
|
||||||
|
for opacity in "${opacities[@]-${OPACITY_VARIANTS[@]}}"; do
|
||||||
|
for alt in "${alts[@]-${ALT_VARIANTS[@]}}"; do
|
||||||
|
for icon in "${icons[@]-${ICON_VARIANTS[0]}}"; do
|
||||||
|
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${alt}" "${icon}"
|
||||||
|
done
|
||||||
|
done
|
||||||
|
done
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
remove_theme() {
|
remove_theme() {
|
||||||
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
|
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
|
||||||
for opacity in "${opacities[@]-${OPACITY_VARIANTS[@]}}"; do
|
for opacity in "${opacities[@]-${OPACITY_VARIANTS[@]}}"; do
|
||||||
|
@ -313,38 +325,29 @@ install_dialog() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install_depends() {
|
sidebar_dialog() {
|
||||||
if [ ! "$(which glib-compile-resources 2> /dev/null)" ]; then
|
|
||||||
prompt -w "\n 'glib2.0' needs to be installed for this shell"
|
|
||||||
if has_command apt; then
|
|
||||||
sudo apt install libglib2.0-dev-bin
|
|
||||||
elif has_command dnf; then
|
|
||||||
sudo dnf install -y glib2-devel
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
run_sidebar_dialog() {
|
|
||||||
if [[ -x /usr/bin/dialog ]]; then
|
if [[ -x /usr/bin/dialog ]]; then
|
||||||
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
||||||
--radiolist "Choose your nautilus sidebar size (default is 200px width):" 15 40 5 \
|
--radiolist "Choose your nautilus sidebar size (default is 200px width):" 15 40 5 \
|
||||||
1 "200px" on \
|
1 "220px" on \
|
||||||
2 "220px" off \
|
2 "240px" off \
|
||||||
3 "240px" off \
|
3 "260px" off \
|
||||||
4 "260px" off \
|
4 "280px" off --output-fd 1 )
|
||||||
5 "280px" off --output-fd 1 )
|
|
||||||
case "$tui" in
|
case "$tui" in
|
||||||
1) sidebar_size="200px" ;;
|
1) sidebar_size="220px" ;;
|
||||||
2) sidebar_size="220px" ;;
|
2) sidebar_size="240px" ;;
|
||||||
3) sidebar_size="240px" ;;
|
3) sidebar_size="260px" ;;
|
||||||
4) sidebar_size="260px" ;;
|
4) sidebar_size="280px" ;;
|
||||||
5) sidebar_size="280px" ;;
|
|
||||||
*) operation_canceled ;;
|
*) operation_canceled ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
run_shell_dialog() {
|
run_sidebar_dialog() {
|
||||||
|
install_dialog && sidebar_dialog && change_size && parse_sass
|
||||||
|
}
|
||||||
|
|
||||||
|
shell_dialog() {
|
||||||
if [[ -x /usr/bin/dialog ]]; then
|
if [[ -x /usr/bin/dialog ]]; then
|
||||||
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
||||||
--radiolist "Choose your panel transparency
|
--radiolist "Choose your panel transparency
|
||||||
|
@ -375,7 +378,11 @@ run_shell_dialog() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
run_theme_dialog() {
|
run_shell_dialog() {
|
||||||
|
install_dialog && shell_dialog && change_transparency && parse_sass
|
||||||
|
}
|
||||||
|
|
||||||
|
theme_dialog() {
|
||||||
if [[ -x /usr/bin/dialog ]]; then
|
if [[ -x /usr/bin/dialog ]]; then
|
||||||
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
||||||
--radiolist "Choose your theme color (default is Mac Blue):" 20 50 10 \
|
--radiolist "Choose your theme color (default is Mac Blue):" 20 50 10 \
|
||||||
|
@ -401,6 +408,10 @@ run_theme_dialog() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
run_theme_dialog() {
|
||||||
|
install_dialog && theme_dialog && change_theme_color && parse_sass
|
||||||
|
}
|
||||||
|
|
||||||
parse_sass() {
|
parse_sass() {
|
||||||
cd ${REPO_DIR} && ./parse-sass.sh
|
cd ${REPO_DIR} && ./parse-sass.sh
|
||||||
}
|
}
|
||||||
|
@ -412,6 +423,13 @@ change_size() {
|
||||||
prompt -w "Change nautilus sidebar size ..."
|
prompt -w "Change nautilus sidebar size ..."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
change_transparency() {
|
||||||
|
cd ${SRC_DIR}/sass
|
||||||
|
cp -an _colors.scss _colors.scss.bak
|
||||||
|
sed -i "/\$panel_opacity/s/0.16/${panel_trans}/" _colors.scss
|
||||||
|
prompt -w "Change panel transparency ..."
|
||||||
|
}
|
||||||
|
|
||||||
change_theme_color() {
|
change_theme_color() {
|
||||||
notify-send "Notice" "It will take a few minutes to regenerate the assets files, please be patient!" -i face-wink
|
notify-send "Notice" "It will take a few minutes to regenerate the assets files, please be patient!" -i face-wink
|
||||||
|
|
||||||
|
@ -511,13 +529,6 @@ restore_assets_files() {
|
||||||
prompt -w "Restore assets files ..."
|
prompt -w "Restore assets files ..."
|
||||||
}
|
}
|
||||||
|
|
||||||
change_transparency() {
|
|
||||||
cd ${SRC_DIR}/sass
|
|
||||||
cp -an _colors.scss _colors.scss.bak
|
|
||||||
sed -i "/\$panel_opacity/s/0.16/${panel_trans}/" _colors.scss
|
|
||||||
prompt -w "Change panel transparency ..."
|
|
||||||
}
|
|
||||||
|
|
||||||
restore_applications_file() {
|
restore_applications_file() {
|
||||||
cd ${SRC_DIR}/sass/gtk
|
cd ${SRC_DIR}/sass/gtk
|
||||||
[[ -f _applications.scss.bak ]] && rm -rf _applications.scss
|
[[ -f _applications.scss.bak ]] && rm -rf _applications.scss
|
||||||
|
@ -550,18 +561,6 @@ while [[ $# -gt 0 ]]; do
|
||||||
gdm='true'
|
gdm='true'
|
||||||
shift 1
|
shift 1
|
||||||
;;
|
;;
|
||||||
-s|--size)
|
|
||||||
size='true'
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
-t|--theme)
|
|
||||||
theme='true'
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
-p|--panel)
|
|
||||||
panel='true'
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
-r|--remove)
|
-r|--remove)
|
||||||
remove='true'
|
remove='true'
|
||||||
shift 1
|
shift 1
|
||||||
|
@ -686,6 +685,169 @@ while [[ $# -gt 0 ]]; do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
-t|--theme)
|
||||||
|
theme='true'
|
||||||
|
tdialog='true'
|
||||||
|
shift
|
||||||
|
for theme_color in "${@}"; do
|
||||||
|
case "${theme_color}" in
|
||||||
|
blue)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#2E7CF7'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
purple)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#9A57A3'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
pink)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#E55E9C'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
red)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#ED5F5D'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
orange)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#E9873A'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
yellow)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#F3BA4B'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
green)
|
||||||
|
theme_color='#79B757'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
grey)
|
||||||
|
tdialog='false'
|
||||||
|
theme_color='#8C8C8C'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
dialog)
|
||||||
|
run_theme_dialog
|
||||||
|
;;
|
||||||
|
-*|--*)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
run_theme_dialog
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
-s|--size)
|
||||||
|
size='true'
|
||||||
|
sdialog='true'
|
||||||
|
shift
|
||||||
|
for sidebar_size in "${@}"; do
|
||||||
|
case "${sidebar_size}" in
|
||||||
|
220px)
|
||||||
|
sdialog='false'
|
||||||
|
sidebar_size='220px'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
240px)
|
||||||
|
sdialog='false'
|
||||||
|
sidebar_size='240px'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
260px)
|
||||||
|
sdialog='false'
|
||||||
|
sidebar_size='260px'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
280px)
|
||||||
|
sdialog='false'
|
||||||
|
sidebar_size='280px'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
dialog)
|
||||||
|
run_sidebar_dialog
|
||||||
|
;;
|
||||||
|
-*|--*)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
run_sidebar_dialog
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
-p|--panel)
|
||||||
|
panel='true'
|
||||||
|
pdialog='true'
|
||||||
|
shift
|
||||||
|
for panel_trans in "${@}"; do
|
||||||
|
case "${panel_trans}" in
|
||||||
|
80%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.20'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
75%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.25'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
70%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.30'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
65%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.35'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
60%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.40'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
55%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.45'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
50%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.50'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
45%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.55'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
40%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.60'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
35%)
|
||||||
|
pdialog='false'
|
||||||
|
panel_trans='0.65'
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
dialog)
|
||||||
|
run_shell_dialog
|
||||||
|
;;
|
||||||
|
-*|--*)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
run_shell_dialog
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
;;
|
||||||
-h|--help)
|
-h|--help)
|
||||||
usage
|
usage
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -698,34 +860,40 @@ while [[ $# -gt 0 ]]; do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
install_theme() {
|
if [ ! "$(which glib-compile-resources 2> /dev/null)" ]; then
|
||||||
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
|
prompt -w "\n 'glib2.0' needs to be installed for this shell"
|
||||||
for opacity in "${opacities[@]-${OPACITY_VARIANTS[@]}}"; do
|
if has_command apt; then
|
||||||
for alt in "${alts[@]-${ALT_VARIANTS[@]}}"; do
|
sudo apt install libglib2.0-dev-bin
|
||||||
for icon in "${icons[@]-${ICON_VARIANTS[0]}}"; do
|
elif has_command dnf; then
|
||||||
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${alt}" "${icon}"
|
sudo dnf install -y glib2-devel
|
||||||
done
|
|
||||||
done
|
|
||||||
done
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
install_depends
|
|
||||||
|
|
||||||
if [[ "${size:-}" == 'true' ]]; then
|
|
||||||
install_dialog && run_sidebar_dialog
|
|
||||||
|
|
||||||
if [[ "$sidebar_size" != '200px' ]]; then
|
|
||||||
change_size && parse_sass
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${theme:-}" == 'true' ]]; then
|
if [[ "${panel:-}" == 'true' ]]; then
|
||||||
install_dialog && run_theme_dialog && change_theme_color && parse_sass
|
if [[ "${pdialog}" == 'false' ]]; then
|
||||||
|
change_transparency && parse_sass
|
||||||
|
else
|
||||||
|
run_shell_dialog
|
||||||
|
fi
|
||||||
|
notify-send "Finished" "Enjoy your new WhiteSur theme!" -i face-smile
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${panel:-}" == 'true' ]]; then
|
if [[ "${size:-}" == 'true' ]]; then
|
||||||
install_dialog && run_shell_dialog && change_transparency && parse_sass
|
if [[ "${sdialog}" == 'false' ]]; then
|
||||||
|
change_size && parse_sass
|
||||||
|
else
|
||||||
|
run_sidebar_dialog
|
||||||
|
fi
|
||||||
|
notify-send "Finished" "Enjoy your new WhiteSur theme!" -i face-smile
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${theme:-}" == 'true' ]]; then
|
||||||
|
if [[ "${tdialog}" == 'false' ]]; then
|
||||||
|
change_theme_color && parse_sass
|
||||||
|
else
|
||||||
|
run_theme_dialog
|
||||||
|
fi
|
||||||
|
notify-send "Finished" "Enjoy your new WhiteSur theme!" -i face-smile
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${gdm:-}" != 'true' && "${remove:-}" != 'true' ]]; then
|
if [[ "${gdm:-}" != 'true' && "${remove:-}" != 'true' ]]; then
|
||||||
|
@ -756,7 +924,5 @@ if [[ -f "${SRC_DIR}"/assets/gtk-3.0/thumbnail.svg.bak ]]; then
|
||||||
restore_assets_files
|
restore_assets_files
|
||||||
fi
|
fi
|
||||||
|
|
||||||
notify-send "Finished" "Enjoy your new WhiteSur theme!" -i face-smile
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
prompt -s Done.
|
prompt -s Done.
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(16, 16, 16, 0.25);
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(255, 255, 255, 0.85);
|
background-color: rgba(255, 255, 255, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(16, 16, 16, 0.25);
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(255, 255, 255, 0.85);
|
background-color: rgba(255, 255, 255, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(16, 16, 16, 0.25);
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(255, 255, 255, 0.85);
|
background-color: rgba(255, 255, 255, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(16, 16, 16, 0.25);
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(16, 16, 16, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(255, 255, 255, 0.85);
|
background-color: rgba(255, 255, 255, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(241, 241, 241, 0.15);
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(0, 0, 0, 0.85);
|
background-color: rgba(0, 0, 0, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(241, 241, 241, 0.15);
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(0, 0, 0, 0.85);
|
background-color: rgba(0, 0, 0, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(241, 241, 241, 0.15);
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(0, 0, 0, 0.85);
|
background-color: rgba(0, 0, 0, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3942,6 +3942,10 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||||
background-color: rgba(241, 241, 241, 0.15);
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#dashtodockContainer #dash {
|
||||||
|
background-color: rgba(241, 241, 241, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
#dashtodockContainer #dash .app-well-app-running-dot {
|
#dashtodockContainer #dash .app-well-app-running-dot {
|
||||||
background-color: rgba(0, 0, 0, 0.85);
|
background-color: rgba(0, 0, 0, 0.85);
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,6 +100,8 @@ $dash_radius: 18px;
|
||||||
&.dashtodock #dash { background-color: $dash_panel_bg; }
|
&.dashtodock #dash { background-color: $dash_panel_bg; }
|
||||||
|
|
||||||
#dash { // default-mode
|
#dash { // default-mode
|
||||||
|
background-color: $dash_panel_bg;
|
||||||
|
|
||||||
.app-well-app-running-dot {
|
.app-well-app-running-dot {
|
||||||
background-color: rgba($dash_panel_fg, 0.85);
|
background-color: rgba($dash_panel_fg, 0.85);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue