update
This commit is contained in:
parent
696acdda00
commit
79294f53cd
28 changed files with 1214 additions and 1102 deletions
|
@ -46,9 +46,9 @@ Usage: `./install.sh` **[OPTIONS...]**
|
|||
|-c, --color | Specify theme color variant(s) **[light/dark]** (Default: All variants)|
|
||||
|-o, --opacity | Specify theme opacity variant(s) **[standard/solid]** (Default: All variants)|
|
||||
|-a, --alt | Specify titlebutton variant(s) **[standard/alt]** (Default: All variants)|
|
||||
|-t, --theme | Change the theme color **[blue/purple/pink/red/orange/yellow/green/grey]** (Default: MacOS blue)|
|
||||
|-p, --panel | Change the panel transparency **[80%/75%/70%/65%/60%/55%/50%/45%/40%/35%]** (Default: 85%)|
|
||||
|-s, --size | Change the nautilus sidebar width size **[220px/240px/260px/280px]** (Default: 200px)|
|
||||
|-t, --theme | Change the theme color **[default/blue/purple/pink/red/orange/yellow/green/grey]** (Default: MacOS blue)|
|
||||
|-p, --panel | Change the panel opacty **[default/25/35/45/55/65/75/85]** (Default: 16)|
|
||||
|-s, --size | Change the nautilus sidebar width size **[default/220/240/260/280]** (Default: 200px)|
|
||||
|-i, --icon | Activities icon variant(s) **[standard/normal/gnome/ubuntu/arch/manjaro/fedora/debian/void]** (Default: standard variant)|
|
||||
|-g, --gdm | Install GDM theme, you should run this with sudo!|
|
||||
|-r, --remove | Remove theme, this will remove all installed themes!|
|
||||
|
@ -83,7 +83,7 @@ then you can run:
|
|||
```bash
|
||||
./install.sh -s # With no size options will run a terminal dialog to install it
|
||||
|
||||
./install.sh -s 260px # Install 260px width version
|
||||
./install.sh -s 260 # Install 260px width version
|
||||
```
|
||||
![3](pictures/install-tip-03.png)
|
||||
|
||||
|
|
411
install.sh
411
install.sh
|
@ -21,6 +21,9 @@ COLOR_VARIANTS=('-light' '-dark')
|
|||
OPACITY_VARIANTS=('' '-solid')
|
||||
ALT_VARIANTS=('' '-alt')
|
||||
ICON_VARIANTS=('' '-normal' '-gnome' '-ubuntu' '-arch' '-manjaro' '-fedora' '-debian' '-void')
|
||||
THEME_COLOR_VARIANTS=('default' 'blue' 'purple' 'pink' 'red' 'orange' 'yellow' 'green' 'grey')
|
||||
SIDEBAR_SIZE_VARIANTS=('default' '220' '240' '260' '280')
|
||||
PANEL_OPACITY_VARIANTS=('default' '25' '35' '45' '55' '65' '75' '85')
|
||||
|
||||
# COLORS
|
||||
CDEF=" \033[0m" # default color
|
||||
|
@ -73,8 +76,8 @@ usage() {
|
|||
printf " %-25s%s\n" "-c, --color VARIANTS" "Specify theme color variant(s) [light|dark] (Default: All variants)"
|
||||
printf " %-25s%s\n" "-a, --alt VARIANTS" "Specify theme titlebutton variant(s) [standard|alt] (Default: All variants)"
|
||||
printf " %-25s%s\n" "-t, --theme VARIANTS" "Change the theme color [blue|purple|pink|red|orange|yellow|green|grey] (Default: MacOS blue)"
|
||||
printf " %-25s%s\n" "-p, --panel VARIANTS" "Change the panel transparency [80%|75%|70%|65%|60%|55%|50%|45%|40%|35%] (Default: 85%)"
|
||||
printf " %-25s%s\n" "-s, --size VARIANTS" "Change the nautilus sidebar width size [220px|240px|260px|280px] (Default: 200px)"
|
||||
printf " %-25s%s\n" "-p, --panel VARIANTS" "Change the panel transparency [25|35|45|55|65|75|85] (Default: 85%)"
|
||||
printf " %-25s%s\n" "-s, --size VARIANTS" "Change the nautilus sidebar width size [220|240|260|280] (Default: 200)"
|
||||
printf " %-25s%s\n" "-i, --icon VARIANTS" "Change gnome-shell activities icon [standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void] (Default: standard)"
|
||||
printf " %-25s%s\n" "-h, --help" "Show this help"
|
||||
}
|
||||
|
@ -86,6 +89,9 @@ install() {
|
|||
local opacity=${4}
|
||||
local alt=${5}
|
||||
local icon=${6}
|
||||
local panel_opacity=${7}
|
||||
local sidebar_size=${8}
|
||||
local theme_color=${9}
|
||||
|
||||
[[ ${color} == '-light' ]] && local ELSE_LIGHT=${color}
|
||||
[[ ${color} == '-dark' ]] && local ELSE_DARK=${color}
|
||||
|
@ -174,17 +180,38 @@ install() {
|
|||
cp -r ${SRC_DIR}/other/plank/theme${color}/*.theme ${THEME_DIR}/plank
|
||||
}
|
||||
|
||||
|
||||
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}"
|
||||
for panel_opacity in "${panel_opacities[@]-${PANEL_OPACITY_VARIANTS[0]}}"; do
|
||||
for sidebar_size in "${sidebar_sizes[@]-${SIDEBAR_SIZE_VARIANTS[0]}}"; do
|
||||
for theme_color in "${theme_colors[@]-${THEME_COLOR_VARIANTS[0]}}"; do
|
||||
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${alt}" "${icon}" "${panel_opacity}" "${sidebar_size}" "${theme_color}"
|
||||
done
|
||||
done
|
||||
done
|
||||
done
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
if [[ -x /usr/bin/notify-send ]]; then
|
||||
notify-send "Finished" "Enjoy your ${THEME_NAME} "${theme_color}" theme!" -i face-smile
|
||||
fi
|
||||
}
|
||||
|
||||
install_customize_theme() {
|
||||
for panel_opacity in "${panel_opacities[@]-${PANEL_OPACITY_VARIANTS[0]}}"; do
|
||||
for sidebar_size in "${sidebar_sizes[@]-${SIDEBAR_SIZE_VARIANTS[0]}}"; do
|
||||
for theme_color in "${theme_colors[@]-${THEME_COLOR_VARIANTS[0]}}"; do
|
||||
customize_theme "${panel_opacity}" "${sidebar_size}" "${theme_color}"
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
parse_sass
|
||||
}
|
||||
|
||||
remove_theme() {
|
||||
|
@ -197,6 +224,35 @@ remove_theme() {
|
|||
done
|
||||
}
|
||||
|
||||
customize_theme() {
|
||||
# Change gnome-shell panel transparency
|
||||
if [[ "${panel:-}" == 'true' && "${panel_opacity:-}" != 'default' ]]; then
|
||||
if [[ "${pdialog}" == 'false' ]]; then
|
||||
change_transparency
|
||||
else
|
||||
run_shell_dialog
|
||||
fi
|
||||
fi
|
||||
|
||||
# Change nautilus sibarbar size
|
||||
if [[ "${size:-}" == 'true' && "${sidebar_size:-}" != 'default' ]]; then
|
||||
if [[ "${sdialog}" == 'false' ]]; then
|
||||
change_size
|
||||
else
|
||||
run_sidebar_dialog
|
||||
fi
|
||||
fi
|
||||
|
||||
# Change accent color
|
||||
if [[ "${theme:-}" == 'true' && "${theme_color:-}" != 'default' ]]; then
|
||||
if [[ "${tdialog}" == 'false' ]]; then
|
||||
change_theme_color
|
||||
else
|
||||
run_theme_dialog
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# Backup and install files related to GDM theme
|
||||
GS_THEME_FILE="/usr/share/gnome-shell/gnome-shell-theme.gresource"
|
||||
SHELL_THEME_FOLDER="/usr/share/gnome-shell/theme"
|
||||
|
@ -346,52 +402,46 @@ sidebar_dialog() {
|
|||
3 "260px" off \
|
||||
4 "280px" off --output-fd 1 )
|
||||
case "$tui" in
|
||||
1) sidebar_size="220px" ;;
|
||||
2) sidebar_size="240px" ;;
|
||||
3) sidebar_size="260px" ;;
|
||||
4) sidebar_size="280px" ;;
|
||||
1) sidebar_size="220" ;;
|
||||
2) sidebar_size="240" ;;
|
||||
3) sidebar_size="260" ;;
|
||||
4) sidebar_size="280" ;;
|
||||
*) operation_canceled ;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
run_sidebar_dialog() {
|
||||
install_dialog && sidebar_dialog && change_size && parse_sass
|
||||
install_dialog && sidebar_dialog && change_size
|
||||
}
|
||||
|
||||
shell_dialog() {
|
||||
if [[ -x /usr/bin/dialog ]]; then
|
||||
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
|
||||
--radiolist "Choose your panel transparency
|
||||
(default is 85%, 100% is fully transparent!):" 20 50 10 \
|
||||
1 "80%" on \
|
||||
2 "75%" off \
|
||||
3 "70%" off \
|
||||
4 "65%" off \
|
||||
5 "60%" off \
|
||||
6 "55%" off \
|
||||
7 "50%" off \
|
||||
8 "45%" off \
|
||||
9 "40%" off \
|
||||
0 "35%" off --output-fd 1 )
|
||||
--radiolist "Choose your panel background opacity
|
||||
(default is 0.16, value more smaller panel more transparency!):" 20 50 10 \
|
||||
1 "0.25" on \
|
||||
2 "0.35" off \
|
||||
3 "0.45" off \
|
||||
4 "0.55" off \
|
||||
5 "0.65" off \
|
||||
6 "0.75" off \
|
||||
7 "0.85" off --output-fd 1 )
|
||||
case "$tui" in
|
||||
1) panel_trans="0.20" ;;
|
||||
2) panel_trans="0.25" ;;
|
||||
3) panel_trans="0.30" ;;
|
||||
4) panel_trans="0.35" ;;
|
||||
5) panel_trans="0.40" ;;
|
||||
6) panel_trans="0.45" ;;
|
||||
7) panel_trans="0.50" ;;
|
||||
8) panel_trans="0.55" ;;
|
||||
9) panel_trans="0.60" ;;
|
||||
0) panel_trans="0.65" ;;
|
||||
1) panel_opacity="25" ;;
|
||||
2) panel_opacity="35" ;;
|
||||
3) panel_opacity="45" ;;
|
||||
4) panel_opacity="55" ;;
|
||||
5) panel_opacity="65" ;;
|
||||
6) panel_opacity="75" ;;
|
||||
7) panel_opacity="85" ;;
|
||||
*) operation_canceled ;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
run_shell_dialog() {
|
||||
install_dialog && shell_dialog && change_transparency && parse_sass
|
||||
install_dialog && shell_dialog && change_transparency
|
||||
}
|
||||
|
||||
theme_dialog() {
|
||||
|
@ -407,21 +457,21 @@ theme_dialog() {
|
|||
7 "Green" off \
|
||||
8 "Grey" off --output-fd 1 )
|
||||
case "$tui" in
|
||||
1) theme_color="#2E7CF7" ;;
|
||||
2) theme_color="#9A57A3" ;;
|
||||
3) theme_color="#E55E9C" ;;
|
||||
4) theme_color="#ED5F5D" ;;
|
||||
5) theme_color="#E9873A" ;;
|
||||
6) theme_color="#F3BA4B" ;;
|
||||
7) theme_color="#79B757" ;;
|
||||
8) theme_color="#8C8C8C" ;;
|
||||
1) theme_color="blue" ;;
|
||||
2) theme_color="purple" ;;
|
||||
3) theme_color="pink" ;;
|
||||
4) theme_color="red" ;;
|
||||
5) theme_color="orange" ;;
|
||||
6) theme_color="yellow" ;;
|
||||
7) theme_color="green" ;;
|
||||
8) theme_color="grey" ;;
|
||||
*) operation_canceled ;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
run_theme_dialog() {
|
||||
install_dialog && theme_dialog && change_theme_color && parse_sass
|
||||
install_dialog && theme_dialog && change_theme_color
|
||||
}
|
||||
|
||||
parse_sass() {
|
||||
|
@ -430,87 +480,118 @@ parse_sass() {
|
|||
|
||||
change_size() {
|
||||
cd ${SRC_DIR}/sass/gtk
|
||||
sed -i.bak "/\$nautilus_sidebar_size/s/200px/${sidebar_size}/" _applications.scss
|
||||
sed -i.bak "/\$nautilus_sidebar_size/s/sidebar_size_default/sidebar_size_${sidebar_size}/" _applications.scss
|
||||
prompt -w "Change nautilus sidebar size ..."
|
||||
}
|
||||
|
||||
change_transparency() {
|
||||
cd ${SRC_DIR}/sass
|
||||
sed -i.bak "/\$panel_opacity/s/0.16/${panel_trans}/" _colors.scss
|
||||
sed -i.bak "/\$panel_opacity/s/0.16/0.${panel_opacity}/" _variables.scss
|
||||
prompt -w "Change panel transparency ..."
|
||||
}
|
||||
|
||||
change_theme_color() {
|
||||
notify-send "Notice" "It will take a few minutes to regenerate the assets files, please be patient!" -i face-wink
|
||||
if [[ -x /usr/bin/notify-send ]]; then
|
||||
notify-send "Notice" "It will take a few minutes to regenerate the assets files, please be patient!" -i face-wink
|
||||
fi
|
||||
|
||||
cd ${SRC_DIR}/sass
|
||||
sed -i.bak "/\$selected_bg_color/s/#0860f2/${theme_color}/" _colors.scss
|
||||
sed -i.bak "/\$selected_bg_color/s/theme_color_default/theme_color_${theme_color}/" _colors.scss
|
||||
|
||||
if [[ ${theme_color} == 'blue' ]]; then
|
||||
local accent="#2E7CF7"
|
||||
elif [[ ${theme_color} == 'purple' ]]; then
|
||||
local accent="#9A57A3"
|
||||
elif [[ ${theme_color} == 'pink' ]]; then
|
||||
local accent="#E55E9C"
|
||||
elif [[ ${theme_color} == 'red' ]]; then
|
||||
local accent="#ED5F5D"
|
||||
elif [[ ${theme_color} == 'orange' ]]; then
|
||||
local accent="#E9873A"
|
||||
elif [[ ${theme_color} == 'yellow' ]]; then
|
||||
local accent="#F3BA4B"
|
||||
elif [[ ${theme_color} == 'green' ]]; then
|
||||
local accent="#79B757"
|
||||
elif [[ ${theme_color} == 'grey' ]]; then
|
||||
local accent="#8C8C8C"
|
||||
else
|
||||
prompt -i "\n Run ./install.sh -h for help or install dialog"
|
||||
prompt -i "\n Run ./install.sh again!"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd ${SRC_DIR}/assets/gtk-3.0
|
||||
mv thumbnail-dark.png thumbnail-dark.png.bak
|
||||
mv thumbnail-light.png thumbnail-light.png.bak
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" thumbnail.svg
|
||||
mv -f thumbnail-dark.png thumbnail-dark.png.bak
|
||||
mv -f thumbnail-light.png thumbnail-light.png.bak
|
||||
sed -i.bak "s/#0860f2/${accent}/g" thumbnail.svg
|
||||
./render-thumbnails.sh
|
||||
|
||||
cd ${SRC_DIR}/assets/gtk-3.0/common-assets
|
||||
mv assets assets-bak
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" assets.svg
|
||||
mv -f assets assets-bak
|
||||
sed -i.bak "s/#0860f2/${accent}/g" assets.svg
|
||||
./render-assets.sh
|
||||
|
||||
cd ${SRC_DIR}/assets/gnome-shell/common-assets
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" {checkbox.svg,more-results.svg,toggle-on.svg}
|
||||
sed -i.bak "s/#0860f2/${accent}/g" {checkbox.svg,more-results.svg,toggle-on.svg}
|
||||
|
||||
cd ${SRC_DIR}/main/gtk-2.0
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" {gtkrc-dark,gtkrc-light}
|
||||
sed -i.bak "s/#0860f2/${accent}/g" {gtkrc-dark,gtkrc-light}
|
||||
|
||||
cd ${SRC_DIR}/assets/gtk-2.0
|
||||
mv assets-dark assets-dark-bak
|
||||
mv assets-light assets-light-bak
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" {assets-dark.svg,assets-light.svg}
|
||||
mv -f assets-dark assets-dark-bak
|
||||
mv -f assets-light assets-light-bak
|
||||
sed -i.bak "s/#0860f2/${accent}/g" {assets-dark.svg,assets-light.svg}
|
||||
./render-assets.sh
|
||||
|
||||
cd ${SRC_DIR}/assets/cinnamon
|
||||
mv thumbnail-dark.png thumbnail-dark.png.bak
|
||||
mv thumbnail-light.png thumbnail-light.png.bak
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" thumbnail.svg
|
||||
mv -f thumbnail-dark.png thumbnail-dark.png.bak
|
||||
mv -f thumbnail-light.png thumbnail-light.png.bak
|
||||
sed -i.bak "s/#0860f2/${accent}/g" thumbnail.svg
|
||||
./render-thumbnails.sh
|
||||
|
||||
cd ${SRC_DIR}/assets/cinnamon/common-assets
|
||||
sed -i.bak "s/#0860f2/$theme_color/g" {checkbox.svg,radiobutton.svg,menu-hover.svg,add-workspace-active.svg,corner-ripple.svg,toggle-on.svg}
|
||||
sed -i.bak "s/#0860f2/${accent}/g" {checkbox.svg,radiobutton.svg,menu-hover.svg,add-workspace-active.svg,corner-ripple.svg,toggle-on.svg}
|
||||
|
||||
prompt -w "Change theme color ..."
|
||||
}
|
||||
|
||||
restore_assets_files() {
|
||||
echo " restore gtk-3.0 thumbnail files"
|
||||
cd ${SRC_DIR}/assets/gtk-3.0
|
||||
mv -f thumbnail.svg.bak thumbnail.svg
|
||||
mv -f thumbnail-dark.png.bak thumbnail-dark.png
|
||||
mv -f thumbnail-light.png.bak thumbnail-light.png
|
||||
|
||||
echo " restore gtk-3.0 assets files"
|
||||
cd ${SRC_DIR}/assets/gtk-3.0/common-assets
|
||||
mv -f assets.svg.bak assets.svg
|
||||
[[ -d assets-bak ]] && rm -rf assets && mv assets-bak assets
|
||||
[[ -d assets-bak ]] && rm -rf assets && mv -f assets-bak assets
|
||||
|
||||
echo " restore gnome-shell assets files"
|
||||
cd ${SRC_DIR}/assets/gnome-shell/common-assets
|
||||
mv -f checkbox.svg.bak checkbox.svg
|
||||
mv -f more-results.svg.bak more-results.svg
|
||||
mv -f toggle-on.svg.bak toggle-on.svg
|
||||
|
||||
echo " restore gtk-2.0 gtkrc files"
|
||||
cd ${SRC_DIR}/main/gtk-2.0
|
||||
mv -f gtkrc-dark.bak gtkrc-dark
|
||||
mv -f gtkrc-light.bak gtkrc-light
|
||||
|
||||
echo " restore gtk-2.0 assets files"
|
||||
cd ${SRC_DIR}/assets/gtk-2.0
|
||||
mv -f assets-dark.svg.bak assets-dark.svg
|
||||
mv -f assets-light.svg.bak assets-light.svg
|
||||
[[ -d assets-dark-bak ]] && rm -rf assets-dark && mv assets-dark-bak assets-dark
|
||||
[[ -d assets-light-bak ]] && rm -rf assets-light && mv assets-light-bak assets-light
|
||||
[[ -d assets-dark-bak ]] && rm -rf assets-dark && mv -f assets-dark-bak assets-dark
|
||||
[[ -d assets-light-bak ]] && rm -rf assets-light && mv -f assets-light-bak assets-light
|
||||
|
||||
echo " restore cinnamon thumbnail files"
|
||||
cd ${SRC_DIR}/assets/cinnamon
|
||||
mv -f thumbnail.svg.bak thumbnail.svg
|
||||
mv -f thumbnail-dark.png.bak thumbnail-dark.png
|
||||
mv -f thumbnail-light.png.bak thumbnail-light.png
|
||||
|
||||
echo " restore cinnamon assets files"
|
||||
cd ${SRC_DIR}/assets/cinnamon/common-assets
|
||||
mv -f checkbox.svg.bak checkbox.svg
|
||||
mv -f radiobutton.svg.bak radiobutton.svg
|
||||
|
@ -519,21 +600,50 @@ restore_assets_files() {
|
|||
mv -f toggle-on.svg.bak toggle-on.svg
|
||||
mv -f corner-ripple.svg.bak corner-ripple.svg
|
||||
|
||||
prompt -w "Restore assets files ..."
|
||||
echo
|
||||
prompt -w "Restore assets files finished!..."
|
||||
}
|
||||
|
||||
restore_applications_file() {
|
||||
cd ${SRC_DIR}/sass/gtk
|
||||
[[ -f _applications.scss.bak ]] && rm -rf _applications.scss
|
||||
mv _applications.scss.bak _applications.scss
|
||||
prompt -w "Restore _applications.scss file ..."
|
||||
}
|
||||
restore_files() {
|
||||
local restore_file='false'
|
||||
|
||||
restore_colors_file() {
|
||||
cd ${SRC_DIR}/sass
|
||||
[[ -f _colors.scss.bak ]] && rm -rf _colors.scss
|
||||
mv _colors.scss.bak _colors.scss
|
||||
prompt -w "Restore _colors.scss file ..."
|
||||
if [[ -f ${SRC_DIR}/sass/gtk/_applications.scss.bak ]]; then
|
||||
|
||||
local restore_file='true'
|
||||
|
||||
cd ${SRC_DIR}/sass/gtk
|
||||
rm -rf _applications.scss
|
||||
mv -f _applications.scss.bak _applications.scss
|
||||
prompt -w "Restore _applications.scss file ..."
|
||||
fi
|
||||
|
||||
if [[ -f ${SRC_DIR}/sass/_colors.scss.bak ]]; then
|
||||
|
||||
local restore_file='true'
|
||||
|
||||
cd ${SRC_DIR}/sass
|
||||
rm -rf _colors.scss
|
||||
mv -f _colors.scss.bak _colors.scss
|
||||
prompt -w "Restore _colors.scss file ..."
|
||||
fi
|
||||
|
||||
if [[ -f ${SRC_DIR}/sass/_variables.scss.bak ]]; then
|
||||
|
||||
local restore_file='true'
|
||||
|
||||
cd ${SRC_DIR}/sass
|
||||
rm -rf _variables.scss
|
||||
mv -f _variables.scss.bak _variables.scss
|
||||
prompt -w "Restore _variables.scss file ..."
|
||||
fi
|
||||
|
||||
if [[ "${restore_file:-}" == 'true' ]]; then
|
||||
parse_sass
|
||||
fi
|
||||
|
||||
if [[ -f "${SRC_DIR}"/assets/gtk-3.0/thumbnail.svg.bak ]]; then
|
||||
restore_assets_files
|
||||
fi
|
||||
}
|
||||
|
||||
while [[ $# -gt 0 ]]; do
|
||||
|
@ -684,48 +794,51 @@ while [[ $# -gt 0 ]]; do
|
|||
shift
|
||||
for theme_color in "${@}"; do
|
||||
case "${theme_color}" in
|
||||
default)
|
||||
tdialog='false'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[0]}")
|
||||
shift
|
||||
;;
|
||||
blue)
|
||||
tdialog='false'
|
||||
theme_color='#2E7CF7'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[1]}")
|
||||
shift
|
||||
;;
|
||||
purple)
|
||||
tdialog='false'
|
||||
theme_color='#9A57A3'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[2]}")
|
||||
shift
|
||||
;;
|
||||
pink)
|
||||
tdialog='false'
|
||||
theme_color='#E55E9C'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[3]}")
|
||||
shift
|
||||
;;
|
||||
red)
|
||||
tdialog='false'
|
||||
theme_color='#ED5F5D'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[4]}")
|
||||
shift
|
||||
;;
|
||||
orange)
|
||||
tdialog='false'
|
||||
theme_color='#E9873A'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[5]}")
|
||||
shift
|
||||
;;
|
||||
yellow)
|
||||
tdialog='false'
|
||||
theme_color='#F3BA4B'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[6]}")
|
||||
shift
|
||||
;;
|
||||
green)
|
||||
theme_color='#79B757'
|
||||
tdialog='false'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[7]}")
|
||||
shift
|
||||
;;
|
||||
grey)
|
||||
tdialog='false'
|
||||
theme_color='#8C8C8C'
|
||||
theme_colors+=("${THEME_COLOR_VARIANTS[8]}")
|
||||
shift
|
||||
;;
|
||||
dialog)
|
||||
run_theme_dialog
|
||||
;;
|
||||
-*|--*)
|
||||
break
|
||||
;;
|
||||
|
@ -741,28 +854,30 @@ while [[ $# -gt 0 ]]; do
|
|||
shift
|
||||
for sidebar_size in "${@}"; do
|
||||
case "${sidebar_size}" in
|
||||
220px)
|
||||
default)
|
||||
sdialog='false'
|
||||
sidebar_size='220px'
|
||||
sidebar_sizes+=("${SIDEBAR_SIZE_VARIANTS[0]}")
|
||||
shift
|
||||
;;
|
||||
240px)
|
||||
220)
|
||||
sdialog='false'
|
||||
sidebar_size='240px'
|
||||
sidebar_sizes+=("${SIDEBAR_SIZE_VARIANTS[1]}")
|
||||
shift
|
||||
;;
|
||||
260px)
|
||||
240)
|
||||
sdialog='false'
|
||||
sidebar_size='260px'
|
||||
sidebar_sizes+=("${SIDEBAR_SIZE_VARIANTS[2]}")
|
||||
shift
|
||||
;;
|
||||
280px)
|
||||
260)
|
||||
sdialog='false'
|
||||
sidebar_size='280px'
|
||||
sidebar_sizes+=("${SIDEBAR_SIZE_VARIANTS[3]}")
|
||||
shift
|
||||
;;
|
||||
dialog)
|
||||
run_sidebar_dialog
|
||||
280)
|
||||
sdialog='false'
|
||||
sidebar_sizes+=("${SIDEBAR_SIZE_VARIANTS[4]}")
|
||||
shift
|
||||
;;
|
||||
-*|--*)
|
||||
break
|
||||
|
@ -777,61 +892,48 @@ while [[ $# -gt 0 ]]; do
|
|||
panel='true'
|
||||
pdialog='true'
|
||||
shift
|
||||
for panel_trans in "${@}"; do
|
||||
case "${panel_trans}" in
|
||||
80%)
|
||||
for panel_opacity in "${@}"; do
|
||||
case "${panel_opacity}" in
|
||||
default)
|
||||
pdialog='false'
|
||||
panel_trans='0.20'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[0]}")
|
||||
shift
|
||||
;;
|
||||
75%)
|
||||
25)
|
||||
pdialog='false'
|
||||
panel_trans='0.25'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[1]}")
|
||||
shift
|
||||
;;
|
||||
70%)
|
||||
35)
|
||||
pdialog='false'
|
||||
panel_trans='0.30'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[2]}")
|
||||
shift
|
||||
;;
|
||||
65%)
|
||||
45)
|
||||
pdialog='false'
|
||||
panel_trans='0.35'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[3]}")
|
||||
shift
|
||||
;;
|
||||
60%)
|
||||
55)
|
||||
pdialog='false'
|
||||
panel_trans='0.40'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[4]}")
|
||||
shift
|
||||
;;
|
||||
55%)
|
||||
65)
|
||||
pdialog='false'
|
||||
panel_trans='0.45'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[5]}")
|
||||
shift
|
||||
;;
|
||||
50%)
|
||||
75)
|
||||
pdialog='false'
|
||||
panel_trans='0.50'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[6]}")
|
||||
shift
|
||||
;;
|
||||
45%)
|
||||
85)
|
||||
pdialog='false'
|
||||
panel_trans='0.55'
|
||||
panel_opacities+=("${PANEL_OPACITY_VARIANTS[7]}")
|
||||
shift
|
||||
;;
|
||||
40%)
|
||||
pdialog='false'
|
||||
panel_trans='0.60'
|
||||
shift
|
||||
;;
|
||||
35%)
|
||||
pdialog='false'
|
||||
panel_trans='0.65'
|
||||
shift
|
||||
;;
|
||||
dialog)
|
||||
run_shell_dialog
|
||||
;;
|
||||
-*|--*)
|
||||
break
|
||||
;;
|
||||
|
@ -853,6 +955,7 @@ while [[ $# -gt 0 ]]; do
|
|||
esac
|
||||
done
|
||||
|
||||
# Install dependency
|
||||
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
|
||||
|
@ -862,60 +965,34 @@ if [ ! "$(which glib-compile-resources 2> /dev/null)" ]; then
|
|||
fi
|
||||
fi
|
||||
|
||||
if [[ "${panel:-}" == 'true' ]]; then
|
||||
if [[ "${pdialog}" == 'false' ]]; then
|
||||
change_transparency && parse_sass
|
||||
# Install themes
|
||||
if [[ "${remove:-}" != 'true' && "${gdm:-}" != 'true' ]]; then
|
||||
if [[ "${theme:-}" != 'true' && "${size:-}" != 'true' && "${panel:-}" != 'true' ]]; then
|
||||
install_theme
|
||||
else
|
||||
run_shell_dialog
|
||||
install_customize_theme && install_theme "${panel_opacity}" "${sidebar_size}" "${theme_color}"
|
||||
fi
|
||||
# notify-send "Finished" "Enjoy your new WhiteSur theme!" -i face-smile
|
||||
fi
|
||||
|
||||
if [[ "${size:-}" == 'true' ]]; then
|
||||
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
|
||||
|
||||
if [[ "${gdm:-}" != 'true' && "${remove:-}" != 'true' ]]; then
|
||||
install_theme
|
||||
fi
|
||||
|
||||
# Install GDM theme
|
||||
if [[ "${gdm:-}" == 'true' && "${remove:-}" != 'true' && "$UID" -eq "$ROOT_UID" ]]; then
|
||||
install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}"
|
||||
install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${theme_color}"
|
||||
fi
|
||||
|
||||
# Remove themes
|
||||
if [[ "${gdm:-}" != 'true' && "${remove:-}" == 'true' ]]; then
|
||||
remove_theme
|
||||
|
||||
echo
|
||||
prompt -i $THEME_NAME themes all removed!.
|
||||
fi
|
||||
|
||||
# Remove GDM theme (only)
|
||||
if [[ "${gdm:-}" == 'true' && "${remove:-}" == 'true' && "$UID" -eq "$ROOT_UID" ]]; then
|
||||
revert_gdm
|
||||
fi
|
||||
|
||||
if [[ -f "${SRC_DIR}"/sass/gtk/_applications.scss.bak ]]; then
|
||||
restore_applications_file && parse_sass
|
||||
fi
|
||||
# Restore files
|
||||
restore_files
|
||||
|
||||
if [[ -f "${SRC_DIR}"/sass/_colors.scss.bak ]]; then
|
||||
restore_colors_file && parse_sass
|
||||
fi
|
||||
|
||||
if [[ -f "${SRC_DIR}"/assets/gtk-3.0/thumbnail.svg.bak ]]; then
|
||||
restore_assets_files
|
||||
fi
|
||||
|
||||
echo
|
||||
prompt -s Done.
|
||||
prompt -s "\n Done!".
|
||||
|
|
|
@ -24,7 +24,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #dedede;
|
||||
background-color: #656565;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #f8f8f8;
|
||||
background-color: #6d6d6d;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ stage {
|
|||
.sound-button:active, .notification-button:active, .notification-icon-button:active, #notification .notification-button:active, #notification .notification-icon-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -80,13 +80,13 @@ stage {
|
|||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:insensitive {
|
||||
|
@ -98,7 +98,7 @@ stage {
|
|||
#menu-search-entry, .notification StEntry, .menu #notification StEntry, .popup-menu #notification StEntry, #notification StEntry {
|
||||
padding: 7px;
|
||||
caret-size: 1px;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
transition-duration: 300ms;
|
||||
border-radius: 5px;
|
||||
|
@ -158,7 +158,7 @@ StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover {
|
|||
}
|
||||
|
||||
StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.separator {
|
||||
|
@ -174,7 +174,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 4px;
|
||||
-slider-background-color: rgba(255, 255, 255, 0.12);
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0;
|
||||
-slider-handle-radius: 4px;
|
||||
|
@ -535,7 +535,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.panel-left .panel-status-button:active, .panel-right .panel-button:active,
|
||||
.panel-right .panel-status-button:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.panel-top {
|
||||
|
@ -600,9 +600,9 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#selected.window-caption {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
spacing: 25px;
|
||||
}
|
||||
|
||||
|
@ -620,13 +620,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.expo-workspaces-name-entry:focus,
|
||||
#selected.expo-workspaces-name-entry:focus {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
font-style: italic;
|
||||
transition-duration: 300;
|
||||
selection-background-color: white;
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.expo-workspace-thumbnail-frame {
|
||||
|
@ -636,7 +636,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#active.expo-workspace-thumbnail-frame {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
background-color: black;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -859,7 +859,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.calendar-today:hover {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
|
@ -970,13 +970,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.switcher-list .item-box:outlined {
|
||||
padding: 8px;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border: 0px solid #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .thumbnail {
|
||||
|
@ -1098,7 +1098,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
border-radius: 3px;
|
||||
caret-color: #dadada;
|
||||
selected-color: white;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
color: #dadada;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
|
@ -1106,7 +1106,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.run-dialog-entry:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
|
@ -1240,7 +1240,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.keyboard-key:active, .keyboard-key:checked {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key:grayed {
|
||||
|
@ -1316,7 +1316,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.menu-application-button-selected {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
|
@ -1357,7 +1357,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item:active {
|
||||
border-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item StIcon {
|
||||
|
@ -1479,12 +1479,12 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
height: 4px;
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
border-radius: 2px;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.osd-window .level-bar {
|
||||
border-radius: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.window-list-box {
|
||||
|
@ -1627,7 +1627,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box:focus {
|
||||
color: #dadada;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1654,8 +1654,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1691,7 +1691,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-thumbnail-menu .item-box:outlined {
|
||||
padding: 2px;
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-thumbnail-menu .item-box:selected {
|
||||
|
@ -1721,7 +1721,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-badge {
|
||||
border-radius: 256px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-item-box {
|
||||
|
@ -1818,7 +1818,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box:focus {
|
||||
color: #dadada;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1840,8 +1840,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1985,7 +1985,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.sound-player-overlay StButton:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.sound-player-overlay StLabel {
|
||||
|
@ -2004,7 +2004,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 0.5em;
|
||||
-slider-background-color: #262626;
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0px;
|
||||
-slider-handle-radius: 0px;
|
||||
|
@ -2031,7 +2031,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-button:outlined, .workspace-button:outlined:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.workspace-button:hover {
|
||||
|
@ -2051,7 +2051,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-graph .workspace:active {
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2084,7 +2084,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.panel-launcher:hover {
|
||||
background-gradient-direction: none;
|
||||
border: 0px solid #0860f2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.panel-bottom .panel-launcher:hover {
|
||||
|
@ -2114,7 +2114,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.launcher:hover {
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2174,7 +2174,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.applet-box:checked, .applet-box:checked:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.applet-box:highlight {
|
||||
|
@ -2263,7 +2263,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.desklet-drag-placeholder {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
}
|
||||
|
||||
|
@ -2293,7 +2293,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.tile-preview, .tile-preview.snap,
|
||||
.tile-hud, .tile-hud.snap {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.xkcd-box {
|
||||
|
|
|
@ -24,7 +24,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #dedede;
|
||||
background-color: #656565;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #f8f8f8;
|
||||
background-color: #6d6d6d;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ stage {
|
|||
.sound-button:active, .notification-button:active, .notification-icon-button:active, #notification .notification-button:active, #notification .notification-icon-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -80,13 +80,13 @@ stage {
|
|||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:insensitive {
|
||||
|
@ -98,7 +98,7 @@ stage {
|
|||
#menu-search-entry, .notification StEntry, .menu #notification StEntry, .popup-menu #notification StEntry, #notification StEntry {
|
||||
padding: 7px;
|
||||
caret-size: 1px;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
transition-duration: 300ms;
|
||||
border-radius: 5px;
|
||||
|
@ -158,7 +158,7 @@ StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover {
|
|||
}
|
||||
|
||||
StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.separator {
|
||||
|
@ -174,7 +174,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 4px;
|
||||
-slider-background-color: rgba(255, 255, 255, 0.12);
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0;
|
||||
-slider-handle-radius: 4px;
|
||||
|
@ -535,7 +535,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.panel-left .panel-status-button:active, .panel-right .panel-button:active,
|
||||
.panel-right .panel-status-button:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.panel-top {
|
||||
|
@ -600,9 +600,9 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#selected.window-caption {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
spacing: 25px;
|
||||
}
|
||||
|
||||
|
@ -620,13 +620,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.expo-workspaces-name-entry:focus,
|
||||
#selected.expo-workspaces-name-entry:focus {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
font-style: italic;
|
||||
transition-duration: 300;
|
||||
selection-background-color: white;
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.expo-workspace-thumbnail-frame {
|
||||
|
@ -636,7 +636,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#active.expo-workspace-thumbnail-frame {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
background-color: black;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -859,7 +859,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.calendar-today:hover {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
|
@ -970,13 +970,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.switcher-list .item-box:outlined {
|
||||
padding: 8px;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border: 0px solid #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .thumbnail {
|
||||
|
@ -1098,7 +1098,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
border-radius: 3px;
|
||||
caret-color: #dadada;
|
||||
selected-color: white;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
color: #dadada;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
|
@ -1106,7 +1106,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.run-dialog-entry:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
|
@ -1240,7 +1240,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.keyboard-key:active, .keyboard-key:checked {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key:grayed {
|
||||
|
@ -1316,7 +1316,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.menu-application-button-selected {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
|
@ -1357,7 +1357,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item:active {
|
||||
border-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item StIcon {
|
||||
|
@ -1479,12 +1479,12 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
height: 4px;
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
border-radius: 2px;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.osd-window .level-bar {
|
||||
border-radius: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.window-list-box {
|
||||
|
@ -1627,7 +1627,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box:focus {
|
||||
color: white;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1654,8 +1654,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1691,7 +1691,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-thumbnail-menu .item-box:outlined {
|
||||
padding: 2px;
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-thumbnail-menu .item-box:selected {
|
||||
|
@ -1721,7 +1721,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-badge {
|
||||
border-radius: 256px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-item-box {
|
||||
|
@ -1818,7 +1818,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box:focus {
|
||||
color: white;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1840,8 +1840,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1985,7 +1985,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.sound-player-overlay StButton:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.sound-player-overlay StLabel {
|
||||
|
@ -2004,7 +2004,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 0.5em;
|
||||
-slider-background-color: #262626;
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0px;
|
||||
-slider-handle-radius: 0px;
|
||||
|
@ -2031,7 +2031,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-button:outlined, .workspace-button:outlined:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.workspace-button:hover {
|
||||
|
@ -2051,7 +2051,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-graph .workspace:active {
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2084,7 +2084,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.panel-launcher:hover {
|
||||
background-gradient-direction: none;
|
||||
border: 0px solid #0860f2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.panel-bottom .panel-launcher:hover {
|
||||
|
@ -2114,7 +2114,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.launcher:hover {
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2174,7 +2174,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.applet-box:checked, .applet-box:checked:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.applet-box:highlight {
|
||||
|
@ -2263,7 +2263,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.desklet-drag-placeholder {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
}
|
||||
|
||||
|
@ -2293,7 +2293,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.tile-preview, .tile-preview.snap,
|
||||
.tile-hud, .tile-hud.snap {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.xkcd-box {
|
||||
|
|
|
@ -24,7 +24,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #242424;
|
||||
background-color: white;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #0b0b0b;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ stage {
|
|||
.sound-button:active, .notification-button:active, .notification-icon-button:active, #notification .notification-button:active, #notification .notification-icon-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid #487afa;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -80,13 +80,13 @@ stage {
|
|||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:insensitive {
|
||||
|
@ -98,7 +98,7 @@ stage {
|
|||
#menu-search-entry, .notification StEntry, .menu #notification StEntry, .popup-menu #notification StEntry, #notification StEntry {
|
||||
padding: 7px;
|
||||
caret-size: 1px;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
transition-duration: 300ms;
|
||||
border-radius: 5px;
|
||||
|
@ -158,7 +158,7 @@ StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover {
|
|||
}
|
||||
|
||||
StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.separator {
|
||||
|
@ -174,7 +174,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 4px;
|
||||
-slider-background-color: rgba(0, 0, 0, 0.12);
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0;
|
||||
-slider-handle-radius: 4px;
|
||||
|
@ -535,7 +535,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.panel-left .panel-status-button:active, .panel-right .panel-button:active,
|
||||
.panel-right .panel-status-button:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.panel-dummy {
|
||||
|
@ -584,9 +584,9 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#selected.window-caption {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
spacing: 25px;
|
||||
}
|
||||
|
||||
|
@ -604,13 +604,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.expo-workspaces-name-entry:focus,
|
||||
#selected.expo-workspaces-name-entry:focus {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
font-style: italic;
|
||||
transition-duration: 300;
|
||||
selection-background-color: white;
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.expo-workspace-thumbnail-frame {
|
||||
|
@ -620,7 +620,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#active.expo-workspace-thumbnail-frame {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
background-color: black;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -843,7 +843,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.calendar-today:hover {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
|
@ -954,13 +954,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.switcher-list .item-box:outlined {
|
||||
padding: 8px;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border: 0px solid #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .thumbnail {
|
||||
|
@ -1082,7 +1082,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
border-radius: 3px;
|
||||
caret-color: #dadada;
|
||||
selected-color: white;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
color: #dadada;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
|
@ -1090,7 +1090,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.run-dialog-entry:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
|
@ -1224,7 +1224,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.keyboard-key:active, .keyboard-key:checked {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key:grayed {
|
||||
|
@ -1300,7 +1300,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.menu-application-button-selected {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid #487afa;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
|
@ -1341,7 +1341,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item:active {
|
||||
border-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item StIcon {
|
||||
|
@ -1463,12 +1463,12 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
height: 4px;
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
border-radius: 2px;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.osd-window .level-bar {
|
||||
border-radius: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.window-list-box {
|
||||
|
@ -1611,7 +1611,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box:focus {
|
||||
color: #363636;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1638,8 +1638,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1675,7 +1675,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-thumbnail-menu .item-box:outlined {
|
||||
padding: 2px;
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-thumbnail-menu .item-box:selected {
|
||||
|
@ -1705,7 +1705,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-badge {
|
||||
border-radius: 256px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-item-box {
|
||||
|
@ -1802,7 +1802,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box:focus {
|
||||
color: #363636;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1824,8 +1824,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1969,7 +1969,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.sound-player-overlay StButton:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.sound-player-overlay StLabel {
|
||||
|
@ -1988,7 +1988,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 0.5em;
|
||||
-slider-background-color: rgba(0, 0, 0, 0.12);
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0px;
|
||||
-slider-handle-radius: 0px;
|
||||
|
@ -2015,7 +2015,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-button:outlined, .workspace-button:outlined:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.workspace-button:hover {
|
||||
|
@ -2035,7 +2035,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-graph .workspace:active {
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2068,7 +2068,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.panel-launcher:hover {
|
||||
background-gradient-direction: none;
|
||||
border: 0px solid #0860f2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.panel-bottom .panel-launcher:hover {
|
||||
|
@ -2098,7 +2098,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.launcher:hover {
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2158,7 +2158,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.applet-box:checked, .applet-box:checked:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.applet-box:highlight {
|
||||
|
@ -2247,7 +2247,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.desklet-drag-placeholder {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
}
|
||||
|
||||
|
@ -2277,7 +2277,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.tile-preview, .tile-preview.snap,
|
||||
.tile-hud, .tile-hud.snap {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.xkcd-box {
|
||||
|
|
|
@ -24,7 +24,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #242424;
|
||||
background-color: white;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ stage {
|
|||
text-shadow: none;
|
||||
color: #0b0b0b;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ stage {
|
|||
.sound-button:active, .notification-button:active, .notification-icon-button:active, #notification .notification-button:active, #notification .notification-icon-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid #487afa;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
@ -80,13 +80,13 @@ stage {
|
|||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-button-box .modal-dialog-button:insensitive {
|
||||
|
@ -98,7 +98,7 @@ stage {
|
|||
#menu-search-entry, .notification StEntry, .menu #notification StEntry, .popup-menu #notification StEntry, #notification StEntry {
|
||||
padding: 7px;
|
||||
caret-size: 1px;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
transition-duration: 300ms;
|
||||
border-radius: 5px;
|
||||
|
@ -158,7 +158,7 @@ StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover {
|
|||
}
|
||||
|
||||
StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.separator {
|
||||
|
@ -174,7 +174,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 4px;
|
||||
-slider-background-color: rgba(0, 0, 0, 0.12);
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0;
|
||||
-slider-handle-radius: 4px;
|
||||
|
@ -535,7 +535,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.panel-left .panel-status-button:active, .panel-right .panel-button:active,
|
||||
.panel-right .panel-status-button:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.panel-dummy {
|
||||
|
@ -584,9 +584,9 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#selected.window-caption {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
spacing: 25px;
|
||||
}
|
||||
|
||||
|
@ -604,13 +604,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.expo-workspaces-name-entry:focus,
|
||||
#selected.expo-workspaces-name-entry:focus {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
font-style: italic;
|
||||
transition-duration: 300;
|
||||
selection-background-color: white;
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.expo-workspace-thumbnail-frame {
|
||||
|
@ -620,7 +620,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#active.expo-workspace-thumbnail-frame {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
background-color: black;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -843,7 +843,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.calendar-today:hover {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
|
@ -954,13 +954,13 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.switcher-list .item-box:outlined {
|
||||
padding: 8px;
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border: 0px solid #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.switcher-list .thumbnail {
|
||||
|
@ -1082,7 +1082,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
border-radius: 3px;
|
||||
caret-color: #dadada;
|
||||
selected-color: white;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
color: #dadada;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
|
@ -1090,7 +1090,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.run-dialog-entry:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
|
@ -1224,7 +1224,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.keyboard-key:active, .keyboard-key:checked {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key:grayed {
|
||||
|
@ -1300,7 +1300,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.menu-application-button-selected {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: 1px solid #487afa;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
|
@ -1341,7 +1341,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item:active {
|
||||
border-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.menu StScrollView.menu-application-button .popup-menu-item StIcon {
|
||||
|
@ -1463,12 +1463,12 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
height: 4px;
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
border-radius: 2px;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.osd-window .level-bar {
|
||||
border-radius: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.window-list-box {
|
||||
|
@ -1611,7 +1611,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box:focus {
|
||||
color: white;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1638,8 +1638,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1675,7 +1675,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-thumbnail-menu .item-box:outlined {
|
||||
padding: 2px;
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-thumbnail-menu .item-box:selected {
|
||||
|
@ -1705,7 +1705,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-badge {
|
||||
border-radius: 256px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.grouped-window-list-item-box {
|
||||
|
@ -1802,7 +1802,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box:focus {
|
||||
color: white;
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -1824,8 +1824,8 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.grouped-window-list-item-box .progress {
|
||||
background-gradient-direction: vertical;
|
||||
background-gradient-start: #0860f2;
|
||||
background-gradient-end: #0860f2;
|
||||
background-gradient-start: #0860F2;
|
||||
background-gradient-end: #0860F2;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -1969,7 +1969,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.sound-player-overlay StButton:active {
|
||||
text-shadow: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.sound-player-overlay StLabel {
|
||||
|
@ -1988,7 +1988,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
-slider-height: 0.5em;
|
||||
-slider-background-color: rgba(0, 0, 0, 0.12);
|
||||
-slider-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-active-background-color: #0860f2;
|
||||
-slider-active-background-color: #0860F2;
|
||||
-slider-active-border-color: rgba(0, 0, 0, 0);
|
||||
-slider-border-width: 0px;
|
||||
-slider-handle-radius: 0px;
|
||||
|
@ -2015,7 +2015,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-button:outlined, .workspace-button:outlined:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.workspace-button:hover {
|
||||
|
@ -2035,7 +2035,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.workspace-graph .workspace:active {
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2068,7 +2068,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.panel-launcher:hover {
|
||||
background-gradient-direction: none;
|
||||
border: 0px solid #0860f2;
|
||||
border: 0px solid #0860F2;
|
||||
}
|
||||
|
||||
.panel-bottom .panel-launcher:hover {
|
||||
|
@ -2098,7 +2098,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.launcher:hover {
|
||||
border: 0 solid #0860f2;
|
||||
border: 0 solid #0860F2;
|
||||
background-gradient-direction: none;
|
||||
}
|
||||
|
||||
|
@ -2158,7 +2158,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.applet-box:checked, .applet-box:checked:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.applet-box:highlight {
|
||||
|
@ -2247,7 +2247,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
.desklet-drag-placeholder {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
}
|
||||
|
||||
|
@ -2277,7 +2277,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
.tile-preview, .tile-preview.snap,
|
||||
.tile-hud, .tile-hud.snap {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.xkcd-box {
|
||||
|
|
|
@ -354,7 +354,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -364,7 +364,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -735,7 +735,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #dedede;
|
||||
caret-color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -844,7 +844,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -859,7 +859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -891,8 +891,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -994,7 +994,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -1120,7 +1120,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -1524,7 +1524,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -1538,7 +1538,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -1568,7 +1568,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -1613,7 +1613,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -1734,7 +1734,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -1769,7 +1769,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1939,7 +1939,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
|
|
@ -354,7 +354,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -364,7 +364,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -735,7 +735,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #242424;
|
||||
caret-color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -844,7 +844,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -859,7 +859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -891,8 +891,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -994,7 +994,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -1120,7 +1120,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -1524,7 +1524,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -1538,7 +1538,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -1568,7 +1568,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -1613,7 +1613,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -1734,7 +1734,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -1769,7 +1769,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1939,7 +1939,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #dedede;
|
||||
caret-color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #dedede;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #dedede;
|
||||
caret-color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #dedede;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #dedede;
|
||||
caret-color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #dedede;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #dedede;
|
||||
caret-color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #dedede;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #dedede;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #242424;
|
||||
caret-color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #242424;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #242424;
|
||||
caret-color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #242424;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #242424;
|
||||
caret-color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #242424;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -135,7 +135,7 @@ stage {
|
|||
|
||||
.hotplug-notification-item:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -446,7 +446,7 @@ stage {
|
|||
.calendar-today {
|
||||
font-weight: bold !important;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
@ -456,7 +456,7 @@ stage {
|
|||
}
|
||||
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -907,7 +907,7 @@ stage {
|
|||
|
||||
.app-view-control:checked {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ stage {
|
|||
}
|
||||
|
||||
StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
|
@ -1190,7 +1190,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
padding: 6px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -1203,7 +1203,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
|
||||
.modal-dialog-linked-button:last-child {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.modal-dialog-linked-button:hover:last-child {
|
||||
|
@ -1699,7 +1699,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.audio-selection-device:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -1804,7 +1804,7 @@ StWidget.focused .app-well-app-running-dot {
|
|||
}
|
||||
|
||||
.nm-dialog-item:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -1832,7 +1832,7 @@ StEntry {
|
|||
border-width: 0;
|
||||
color: #242424;
|
||||
caret-color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
@ -1941,7 +1941,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.keyboard-key.enter-key {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.keyboard-key.shift-key-uppercase, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.keyboard-key StIcon {
|
||||
|
@ -1988,8 +1988,8 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.login-dialog StEntry,
|
||||
.unlock-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selected-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
padding: 4px 8px;
|
||||
min-height: 20px;
|
||||
|
@ -2091,7 +2091,7 @@ StEntry StLabel.hint-text {
|
|||
.login-dialog .modal-dialog-button:default:active,
|
||||
.unlock-dialog .modal-dialog-button:default:active {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #487afa;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
|
@ -2217,7 +2217,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
|
||||
border-right: 2px solid #0860f2;
|
||||
border-right: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.login-dialog-user-list-item {
|
||||
|
@ -2420,7 +2420,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.lg-dialog StEntry {
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2538,13 +2538,13 @@ StEntry StLabel.hint-text {
|
|||
width: 60px;
|
||||
height: 60px;
|
||||
-pie-border-width: 3px;
|
||||
-pie-border-color: #0860f2;
|
||||
-pie-border-color: #0860F2;
|
||||
-pie-background-color: rgba(201, 221, 253, 0.3);
|
||||
}
|
||||
|
||||
.select-area-rubberband {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -2591,7 +2591,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.switcher-list .item-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -2627,7 +2627,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.tile-preview {
|
||||
background-color: rgba(8, 96, 242, 0.3);
|
||||
border: 1px solid #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
|
@ -2663,9 +2663,9 @@ StEntry StLabel.hint-text {
|
|||
width: 1.6em;
|
||||
-shell-counter-overlap-x: 3px;
|
||||
-shell-counter-overlap-y: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 0.9em;
|
||||
}
|
||||
|
@ -2859,7 +2859,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.magnifier-zoom-region {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
}
|
||||
|
||||
.magnifier-zoom-region.full-screen {
|
||||
|
@ -2887,7 +2887,7 @@ StEntry StLabel.hint-text {
|
|||
color: #242424;
|
||||
-barlevel-height: 4px;
|
||||
-barlevel-background-color: rgba(0, 0, 0, 0.1);
|
||||
-barlevel-active-background-color: #0860f2;
|
||||
-barlevel-active-background-color: #0860F2;
|
||||
-barlevel-overdrive-color: #f8464c;
|
||||
-barlevel-overdrive-separator-width: 2px;
|
||||
-barlevel-border-width: 0;
|
||||
|
@ -3062,7 +3062,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.cycler-highlight {
|
||||
border: 4px solid #0860f2;
|
||||
border: 4px solid #0860F2;
|
||||
}
|
||||
|
||||
.workspace-switcher-group {
|
||||
|
@ -3079,7 +3079,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.ws-switcher-active-up, .ws-switcher-active-down {
|
||||
height: 48px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
background-size: 32px;
|
||||
border-radius: 6px;
|
||||
|
@ -3352,7 +3352,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.hover:checked, .popup-menu .popup-menu-item.selected:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-menu-item:checked:active {
|
||||
|
@ -3366,7 +3366,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-menu-item.selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
|
@ -3396,7 +3396,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.popup-menu .popup-sub-menu .popup-menu-item:active {
|
||||
|
@ -3441,7 +3441,7 @@ StEntry StLabel.hint-text {
|
|||
.popup-menu-boxpointer StEntry {
|
||||
selection-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-background-color: rgba(255, 255, 255, 0.85);
|
||||
selected-color: #0860f2;
|
||||
selected-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-boxpointer {
|
||||
|
@ -3562,7 +3562,7 @@ StEntry StLabel.hint-text {
|
|||
|
||||
.emoji-panel .keyboard-key:latched {
|
||||
border-color: #1c6ff7;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.candidate-popup-content {
|
||||
|
@ -3597,7 +3597,7 @@ StEntry StLabel.hint-text {
|
|||
}
|
||||
|
||||
.candidate-box:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
|
@ -3767,7 +3767,7 @@ StEntry StLabel.hint-text {
|
|||
weight: bold;
|
||||
padding: 0 6px;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 99px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
@ -3895,7 +3895,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
@ -4012,7 +4012,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque #dash {
|
||||
|
@ -4032,7 +4032,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
}
|
||||
|
||||
#dashtodockContainer:overview #dash StWidget.focused .app-well-app-running-dot {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash {
|
||||
|
@ -4155,7 +4155,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
|
|||
|
||||
.popup-menu .search-entry {
|
||||
color: #242424;
|
||||
selection-background-color: #0860f2;
|
||||
selection-background-color: #0860F2;
|
||||
selected-color: white;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 100px;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
outline-offset: -4px;
|
||||
outline-width: 2px;
|
||||
-gtk-outline-radius: 6px;
|
||||
-gtk-secondary-caret-color: #0860f2;
|
||||
-gtk-secondary-caret-color: #0860F2;
|
||||
}
|
||||
|
||||
.background {
|
||||
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
|
||||
.gtkstyle-fallback:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@
|
|||
|
||||
.csd filechooser stack.view scrolledwindow treeview.view:selected, iconview:selected, .view:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@ label.separator {
|
|||
|
||||
label selection {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
label:disabled {
|
||||
|
@ -148,7 +148,7 @@ assistant .sidebar label {
|
|||
}
|
||||
|
||||
assistant .sidebar label.highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -385,7 +385,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
.osd entry:focus {
|
||||
color: white;
|
||||
border-color: #357ef8;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-image: none;
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
}
|
||||
|
||||
.osd entry selection:focus, .osd entry selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
|
@ -404,7 +404,7 @@ entry progress {
|
|||
margin: 0 -6px;
|
||||
border-radius: 0;
|
||||
border-width: 0 0 2px;
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
border-style: solid;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
|
@ -462,10 +462,10 @@ entry progress {
|
|||
|
||||
@keyframes needs_attention {
|
||||
from {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860F2), to(transparent));
|
||||
}
|
||||
to {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -552,7 +552,7 @@ button:hover {
|
|||
|
||||
button:active, button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-clip: padding-box;
|
||||
transition-duration: 200ms;
|
||||
|
@ -648,7 +648,7 @@ button.osd.image-button {
|
|||
}
|
||||
|
||||
button.osd:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
}
|
||||
|
@ -656,7 +656,7 @@ button.osd:hover {
|
|||
button.osd:active, button.osd:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -685,7 +685,7 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
.osd button:active, .osd button:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -723,7 +723,7 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
.osd button.flat:active, .osd button.flat:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -865,7 +865,7 @@ button.destructive-action:disabled label, label:disabled selection.destructive-a
|
|||
|
||||
button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label, .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image {
|
||||
animation: needs_attention 150ms ease-in;
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
background-size: 6px 6px, 6px 6px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 3px, right 2px;
|
||||
|
@ -1249,7 +1249,7 @@ combobox arrow {
|
|||
|
||||
.background combobox button.combo arrow {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
-gtk-icon-source: -gtk-scaled(url("assets/combobox-arrow-dark.png"), url("assets/combobox-arrow-dark@2.png"));
|
||||
min-height: 16px;
|
||||
|
@ -1765,12 +1765,12 @@ headerbar entry, .titlebar entry {
|
|||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry selection:focus, headerbar entry selection:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry progress, headerbar entry progress {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
@ -1950,7 +1950,7 @@ treeview.view {
|
|||
}
|
||||
|
||||
treeview.view acceleditor > label {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view:selected, treeview.view:selected:focus {
|
||||
|
@ -2014,11 +2014,11 @@ treeview.view.expander:checked {
|
|||
treeview.view.progressbar, treeview.view.progressbar:focus {
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: white;
|
||||
}
|
||||
|
@ -2052,7 +2052,7 @@ treeview.view header button {
|
|||
}
|
||||
|
||||
treeview.view header button:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view header button:active {
|
||||
|
@ -2085,7 +2085,7 @@ treeview.view header.button.dnd:active {
|
|||
padding: 0 6px;
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
@ -2173,7 +2173,7 @@ menu > menuitem:hover,
|
|||
.menu > menuitem:hover {
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.context-menu > menuitem:hover arrow,
|
||||
|
@ -2689,7 +2689,7 @@ scrollbar.vertical slider {
|
|||
background-image: linear-gradient(0deg, rgba(222, 222, 222, 0.25) 0%, rgba(222, 222, 222, 0.35) 100%), radial-gradient(circle farthest-corner at center, transparent 0%, transparent 0%);
|
||||
}
|
||||
to {
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2718,7 +2718,7 @@ switch:checked {
|
|||
color: transparent;
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
transition: background-image 0.3s, box-shadow 0;
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
}
|
||||
|
||||
switch:checked:disabled, label:disabled selection:checked {
|
||||
|
@ -3017,7 +3017,7 @@ scale trough:disabled {
|
|||
}
|
||||
|
||||
.osd scale trough highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
menuitem:hover scale trough, row:selected scale trough, infobar scale trough {
|
||||
|
@ -3038,7 +3038,7 @@ menuitem:hover scale trough:disabled, row:selected scale trough:disabled, infoba
|
|||
|
||||
scale highlight {
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
scale highlight:disabled {
|
||||
|
@ -3511,7 +3511,7 @@ progressbar.osd trough {
|
|||
progressbar progress {
|
||||
min-height: 4px;
|
||||
min-width: 4px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
|
@ -3559,8 +3559,8 @@ levelbar.vertical.discrete block {
|
|||
}
|
||||
|
||||
levelbar block:not(.empty) {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
|
@ -3570,8 +3570,8 @@ levelbar block.low {
|
|||
}
|
||||
|
||||
levelbar block.high {
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
levelbar block.full {
|
||||
|
@ -3908,7 +3908,7 @@ messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive
|
|||
|
||||
messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):active, messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -4110,7 +4110,7 @@ placessidebar row.sidebar-placeholder-row {
|
|||
}
|
||||
|
||||
placessidebar row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
placessidebar row:drop(active):not(:disabled) {
|
||||
|
@ -4154,7 +4154,7 @@ paned > separator {
|
|||
}
|
||||
|
||||
paned > separator:selected {
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
}
|
||||
|
||||
paned > separator.wide {
|
||||
|
@ -4207,11 +4207,11 @@ infobar {
|
|||
}
|
||||
|
||||
infobar.info > revealer > box, infobar.info:backdrop > revealer > box {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.info > revealer > box selection, infobar.info:backdrop > revealer > box selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.question > revealer > box, infobar.question:backdrop > revealer > box {
|
||||
|
@ -4298,7 +4298,7 @@ infobar.info > revealer > box selection, infobar.info:hover > revealer > box sel
|
|||
}
|
||||
|
||||
.raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:active, .nemo-window .floating-bar button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:checked, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:checked, .nemo-window .floating-bar button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
border-color: rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
|
@ -4671,7 +4671,7 @@ modelbutton.flat:active arrow,
|
|||
modelbutton.flat:selected,
|
||||
modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus,
|
||||
calendar:selected, .csd filechooser stack.view scrolledwindow treeview.view:selected:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -4915,7 +4915,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon {
|
||||
|
@ -5007,7 +5007,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nautilus-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
margin: 6px;
|
||||
|
@ -5134,7 +5134,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.conflict-row.activatable:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.nemo-window .nemo-places-sidebar.frame {
|
||||
|
@ -5182,7 +5182,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nemo-window .nemo-window-pane widget.entry {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
|
@ -5236,7 +5236,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nemo-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
|
@ -5294,7 +5294,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
|
||||
.open-document-selector-treeview.view:hover:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.open-document-selector-name-label {
|
||||
|
@ -5412,7 +5412,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
}
|
||||
|
||||
editortweak .linked > entry.search:focus + .gb-linked-scroller {
|
||||
border-top-color: #0860f2;
|
||||
border-top-color: #0860F2;
|
||||
}
|
||||
|
||||
layouttab {
|
||||
|
@ -5430,7 +5430,7 @@ eggsearchbar box.search-bar {
|
|||
|
||||
pillbox {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -5565,7 +5565,7 @@ entry.search.preferences-search {
|
|||
|
||||
entry.search.preferences-search:focus {
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid #0860f2;
|
||||
border-bottom: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton {
|
||||
|
@ -5575,7 +5575,7 @@ preferencesbin spinbutton {
|
|||
}
|
||||
|
||||
preferencesbin spinbutton:focus {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton entry,
|
||||
|
@ -5704,13 +5704,13 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row.popover-activated-row {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header {
|
||||
background-image: image(#242424);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:hover {
|
||||
|
@ -5719,12 +5719,12 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active, window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active:focus {
|
||||
background-image: image(#212a39);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header label.compressed-entries-label {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
|
@ -5805,7 +5805,7 @@ button.documents-load-more {
|
|||
}
|
||||
|
||||
.documents-icon-bg {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -5824,7 +5824,7 @@ button.documents-favorite:active:hover {
|
|||
.photos-entry-tag,
|
||||
.documents-entry-tag {
|
||||
color: white;
|
||||
background: #0860f2;
|
||||
background: #0860F2;
|
||||
border-radius: 3px;
|
||||
border-width: 0;
|
||||
margin: 2px;
|
||||
|
@ -6229,8 +6229,8 @@ stack.view.polari-entry-area:disabled {
|
|||
#gf-candidate-popup levelbar block.low,
|
||||
#gf-candidate-popup levelbar block.high,
|
||||
#gf-candidate-popup levelbar block.full {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
#gf-bubble levelbar block.empty,
|
||||
|
@ -6254,7 +6254,7 @@ stack.view.polari-entry-area:disabled {
|
|||
|
||||
#gf-input-source:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6264,7 +6264,7 @@ gf-candidate-box label {
|
|||
|
||||
gf-candidate-box:hover, gf-candidate-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6730,7 +6730,7 @@ MsdOsdWindow.background.osd {
|
|||
}
|
||||
|
||||
MsdOsdWindow.background.osd .progressbar {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-color: red;
|
||||
border-radius: 5px;
|
||||
|
@ -6781,7 +6781,7 @@ panel-toplevel.background .wnck-pager:hover {
|
|||
.mate-panel-menu-bar .wnck-pager:selected,
|
||||
panel-toplevel.background .wnck-pager:selected {
|
||||
color: #669efa;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.mate-panel-menu-bar na-tray-applet,
|
||||
|
@ -6838,7 +6838,7 @@ panel-toplevel.background na-tray-applet {
|
|||
}
|
||||
|
||||
.caja-side-pane treeview.view:active, .caja-side-pane treeview.view:selected, .caja-side-pane .view:active, .caja-side-pane .view:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.caja-side-pane textview.view text {
|
||||
|
@ -6934,7 +6934,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
|
|||
}
|
||||
|
||||
.xfce4-panel button#launcher-arrow + button.toggle:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -6964,7 +6964,7 @@ XfdesktopIconView.view {
|
|||
}
|
||||
|
||||
XfdesktopIconView.view:active, XfdesktopIconView.view:checked {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
@ -6987,7 +6987,7 @@ window#whiskermenu-window scrolledwindow > viewport button.radio:hover {
|
|||
}
|
||||
|
||||
window#whiskermenu-window scrolledwindow > viewport button.radio:checked, window#whiskermenu-window scrolledwindow > viewport button.radio:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7369,7 +7369,7 @@ window.background:not(.csd) > window > menu menuitem {
|
|||
}
|
||||
|
||||
#MozillaGtkWidget > widget text:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7626,7 +7626,7 @@ button#tasklist-button.toggle.flat:active,
|
|||
button#tasklist-button.toggle.flat:checked,
|
||||
button.flat.-panel-icon-button:active,
|
||||
button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: white;
|
||||
background: none;
|
||||
}
|
||||
|
@ -7640,7 +7640,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.unpinned button.flat.-panel-icon-button:hover, .unpinned button.flat.-panel-icon-button:active, .unpinned button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7657,7 +7657,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.pinned button.flat.-panel-icon-button.running:hover, .pinned button.flat.-panel-icon-button.running:active, .pinned button.flat.-panel-icon-button.running:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7780,7 +7780,7 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
|
||||
.menubar.panel popover .linked > button:active, .menubar.panel popover .linked > button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -7861,7 +7861,7 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
}
|
||||
|
||||
button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active image, button.flat.toggle.switcher:checked image, button.flat.toggle.switcher:selected image {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.circular label:disabled {
|
||||
|
@ -7870,12 +7870,12 @@ button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active imag
|
|||
|
||||
.circular.accent {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -8159,7 +8159,7 @@ UnityDecoration {
|
|||
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.15);
|
||||
-UnityDecoration-inactive-shadow-radius: 7px;
|
||||
-UnityDecoration-glow-size: 10px;
|
||||
-UnityDecoration-glow-color: #0860f2;
|
||||
-UnityDecoration-glow-color: #0860F2;
|
||||
-UnityDecoration-title-indent: 10px;
|
||||
-UnityDecoration-title-fade: 35px;
|
||||
-UnityDecoration-title-alignment: 0.0;
|
||||
|
@ -8206,7 +8206,7 @@ UnityPanelWidget:backdrop,
|
|||
.unity-panel.menubar .menuitem *:hover {
|
||||
border-radius: 0;
|
||||
color: white;
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
@ -8309,8 +8309,8 @@ UnityPanelWidget:backdrop,
|
|||
}
|
||||
|
||||
.overlay-bar {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
padding: 3px 6px;
|
||||
margin: 3px;
|
||||
|
@ -8384,7 +8384,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.view:selected:focus,
|
||||
.source-list.category-expander:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list scrollbar,
|
||||
|
@ -8401,7 +8401,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
padding: 0 6px;
|
||||
|
@ -8413,7 +8413,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-color: white;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list.category-expander {
|
||||
|
@ -8565,7 +8565,7 @@ GtkListBox .h4 {
|
|||
|
||||
#content_frame button:active, #content_frame button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -8608,7 +8608,7 @@ GtkListBox .h4 {
|
|||
#buttonbox_frame button:active, #buttonbox_frame button:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -8801,7 +8801,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
|
||||
.raven button.linked:active, .raven button.linked:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven button.linked:disabled, label:disabled selection.linked {
|
||||
|
@ -8897,7 +8897,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
.budgie-popover scrolledwindow.sidebar:selected,
|
||||
.budgie-popover scrolledwindow.sidebar:selected:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-popover > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack {
|
||||
|
@ -9247,7 +9247,7 @@ popover.background.places-menu row {
|
|||
|
||||
.budgie-panel menubar > menuitem:hover,
|
||||
.budgie-panel .menubar > menuitem:hover {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-panel menubar > menuitem:disabled,
|
||||
|
@ -9411,7 +9411,7 @@ button.flat.launcher:checked > image {
|
|||
.top .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: top center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.top .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9425,7 +9425,7 @@ button.flat.launcher:checked > image {
|
|||
.bottom .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: bottom center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.bottom .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9439,7 +9439,7 @@ button.flat.launcher:checked > image {
|
|||
.left .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: left center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.left .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9453,7 +9453,7 @@ button.flat.launcher:checked > image {
|
|||
.right .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: right center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.right .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9659,7 +9659,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:active, .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:disabled, .raven scrolledwindow > .frame box.audio-widget label:disabled stackswitcher.linked > selection.radio, label:disabled .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > selection.radio {
|
||||
|
@ -9716,7 +9716,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven .raven-header.top + .raven-background {
|
||||
border-style: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -9893,7 +9893,7 @@ calendar.raven-calendar {
|
|||
|
||||
calendar.raven-calendar:selected {
|
||||
border-radius: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -10146,13 +10146,13 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color theme_text_color #dadada;
|
||||
@define-color theme_bg_color #333333;
|
||||
@define-color theme_base_color #242424;
|
||||
@define-color theme_selected_bg_color #0860f2;
|
||||
@define-color theme_selected_bg_color #0860F2;
|
||||
@define-color theme_selected_fg_color white;
|
||||
@define-color fg_color #dedede;
|
||||
@define-color text_color #dadada;
|
||||
@define-color bg_color #333333;
|
||||
@define-color base_color #242424;
|
||||
@define-color selected_bg_color #0860f2;
|
||||
@define-color selected_bg_color #0860F2;
|
||||
@define-color selected_fg_color white;
|
||||
@define-color insensitive_bg_color rgba(222, 222, 222, 0.35);
|
||||
@define-color insensitive_fg_color alpha(rgba(222, 222, 222, 0.35), 0.5);
|
||||
|
@ -10182,7 +10182,7 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_button_close_active_bg #be3841;
|
||||
@define-color wm_icon_close_bg #2f343f;
|
||||
@define-color wm_button_hover_bg #454C5C;
|
||||
@define-color wm_button_active_bg #0860f2;
|
||||
@define-color wm_button_active_bg #0860F2;
|
||||
@define-color wm_button_hover_border #262932;
|
||||
@define-color wm_icon_bg #90939B;
|
||||
@define-color wm_icon_unfocused_bg #666A74;
|
||||
|
@ -10190,8 +10190,8 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_icon_active_bg white;
|
||||
@define-color titlebar_gradient_a #373737;
|
||||
@define-color titlebar_gradient_b #373737;
|
||||
@define-color budgie_tasklist_indicator_color #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active_window #184796;
|
||||
@define-color budgie_tasklist_indicator_color_attention #F27835;
|
||||
@define-color STRAWBERRY_100 #FF9262;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
outline-offset: -4px;
|
||||
outline-width: 2px;
|
||||
-gtk-outline-radius: 6px;
|
||||
-gtk-secondary-caret-color: #0860f2;
|
||||
-gtk-secondary-caret-color: #0860F2;
|
||||
}
|
||||
|
||||
.background {
|
||||
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
|
||||
.gtkstyle-fallback:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@
|
|||
|
||||
.csd filechooser stack.view scrolledwindow treeview.view:selected, iconview:selected, .view:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@ label.separator {
|
|||
|
||||
label selection {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
label:disabled {
|
||||
|
@ -148,7 +148,7 @@ assistant .sidebar label {
|
|||
}
|
||||
|
||||
assistant .sidebar label.highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -385,7 +385,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
.osd entry:focus {
|
||||
color: white;
|
||||
border-color: #357ef8;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-image: none;
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
}
|
||||
|
||||
.osd entry selection:focus, .osd entry selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
|
@ -404,7 +404,7 @@ entry progress {
|
|||
margin: 0 -6px;
|
||||
border-radius: 0;
|
||||
border-width: 0 0 2px;
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
border-style: solid;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
|
@ -462,10 +462,10 @@ entry progress {
|
|||
|
||||
@keyframes needs_attention {
|
||||
from {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860F2), to(transparent));
|
||||
}
|
||||
to {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -552,7 +552,7 @@ button:hover {
|
|||
|
||||
button:active, button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-clip: padding-box;
|
||||
transition-duration: 200ms;
|
||||
|
@ -648,7 +648,7 @@ button.osd.image-button {
|
|||
}
|
||||
|
||||
button.osd:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
}
|
||||
|
@ -656,7 +656,7 @@ button.osd:hover {
|
|||
button.osd:active, button.osd:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -685,7 +685,7 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
.osd button:active, .osd button:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -723,7 +723,7 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
.osd button.flat:active, .osd button.flat:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -865,7 +865,7 @@ button.destructive-action:disabled label, label:disabled selection.destructive-a
|
|||
|
||||
button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label, .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image {
|
||||
animation: needs_attention 150ms ease-in;
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
background-size: 6px 6px, 6px 6px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 3px, right 2px;
|
||||
|
@ -1249,7 +1249,7 @@ combobox arrow {
|
|||
|
||||
.background combobox button.combo arrow {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
-gtk-icon-source: -gtk-scaled(url("assets/combobox-arrow-dark.png"), url("assets/combobox-arrow-dark@2.png"));
|
||||
min-height: 16px;
|
||||
|
@ -1765,12 +1765,12 @@ headerbar entry, .titlebar entry {
|
|||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry selection:focus, headerbar entry selection:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry progress, headerbar entry progress {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
@ -1950,7 +1950,7 @@ treeview.view {
|
|||
}
|
||||
|
||||
treeview.view acceleditor > label {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view:selected, treeview.view:selected:focus {
|
||||
|
@ -2014,11 +2014,11 @@ treeview.view.expander:checked {
|
|||
treeview.view.progressbar, treeview.view.progressbar:focus {
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: white;
|
||||
}
|
||||
|
@ -2052,7 +2052,7 @@ treeview.view header button {
|
|||
}
|
||||
|
||||
treeview.view header button:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view header button:active {
|
||||
|
@ -2085,7 +2085,7 @@ treeview.view header.button.dnd:active {
|
|||
padding: 0 6px;
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
@ -2173,7 +2173,7 @@ menu > menuitem:hover,
|
|||
.menu > menuitem:hover {
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.context-menu > menuitem:hover arrow,
|
||||
|
@ -2689,7 +2689,7 @@ scrollbar.vertical slider {
|
|||
background-image: linear-gradient(0deg, rgba(222, 222, 222, 0.25) 0%, rgba(222, 222, 222, 0.35) 100%), radial-gradient(circle farthest-corner at center, transparent 0%, transparent 0%);
|
||||
}
|
||||
to {
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2718,7 +2718,7 @@ switch:checked {
|
|||
color: transparent;
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
transition: background-image 0.3s, box-shadow 0;
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
}
|
||||
|
||||
switch:checked:disabled, label:disabled selection:checked {
|
||||
|
@ -3017,7 +3017,7 @@ scale trough:disabled {
|
|||
}
|
||||
|
||||
.osd scale trough highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
menuitem:hover scale trough, row:selected scale trough, infobar scale trough {
|
||||
|
@ -3038,7 +3038,7 @@ menuitem:hover scale trough:disabled, row:selected scale trough:disabled, infoba
|
|||
|
||||
scale highlight {
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
scale highlight:disabled {
|
||||
|
@ -3511,7 +3511,7 @@ progressbar.osd trough {
|
|||
progressbar progress {
|
||||
min-height: 4px;
|
||||
min-width: 4px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
|
@ -3559,8 +3559,8 @@ levelbar.vertical.discrete block {
|
|||
}
|
||||
|
||||
levelbar block:not(.empty) {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
|
@ -3570,8 +3570,8 @@ levelbar block.low {
|
|||
}
|
||||
|
||||
levelbar block.high {
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
levelbar block.full {
|
||||
|
@ -3908,7 +3908,7 @@ messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive
|
|||
|
||||
messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):active, messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -4110,7 +4110,7 @@ placessidebar row.sidebar-placeholder-row {
|
|||
}
|
||||
|
||||
placessidebar row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
placessidebar row:drop(active):not(:disabled) {
|
||||
|
@ -4154,7 +4154,7 @@ paned > separator {
|
|||
}
|
||||
|
||||
paned > separator:selected {
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
}
|
||||
|
||||
paned > separator.wide {
|
||||
|
@ -4207,11 +4207,11 @@ infobar {
|
|||
}
|
||||
|
||||
infobar.info > revealer > box, infobar.info:backdrop > revealer > box {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.info > revealer > box selection, infobar.info:backdrop > revealer > box selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.question > revealer > box, infobar.question:backdrop > revealer > box {
|
||||
|
@ -4298,7 +4298,7 @@ infobar.info > revealer > box selection, infobar.info:hover > revealer > box sel
|
|||
}
|
||||
|
||||
.raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:active, .nemo-window .floating-bar button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:checked, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:checked, .nemo-window .floating-bar button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
border-color: rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
|
@ -4671,7 +4671,7 @@ modelbutton.flat:active arrow,
|
|||
modelbutton.flat:selected,
|
||||
modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus,
|
||||
calendar:selected, .csd filechooser stack.view scrolledwindow treeview.view:selected:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -4911,7 +4911,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon {
|
||||
|
@ -5003,7 +5003,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nautilus-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
margin: 6px;
|
||||
|
@ -5130,7 +5130,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.conflict-row.activatable:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.nemo-window .nemo-places-sidebar.frame {
|
||||
|
@ -5178,7 +5178,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nemo-window .nemo-window-pane widget.entry {
|
||||
border: 2px solid #0860f2;
|
||||
border: 2px solid #0860F2;
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
|
@ -5232,7 +5232,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nemo-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
|
@ -5290,7 +5290,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
|
||||
.open-document-selector-treeview.view:hover:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.open-document-selector-name-label {
|
||||
|
@ -5408,7 +5408,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
}
|
||||
|
||||
editortweak .linked > entry.search:focus + .gb-linked-scroller {
|
||||
border-top-color: #0860f2;
|
||||
border-top-color: #0860F2;
|
||||
}
|
||||
|
||||
layouttab {
|
||||
|
@ -5426,7 +5426,7 @@ eggsearchbar box.search-bar {
|
|||
|
||||
pillbox {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -5561,7 +5561,7 @@ entry.search.preferences-search {
|
|||
|
||||
entry.search.preferences-search:focus {
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid #0860f2;
|
||||
border-bottom: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton {
|
||||
|
@ -5571,7 +5571,7 @@ preferencesbin spinbutton {
|
|||
}
|
||||
|
||||
preferencesbin spinbutton:focus {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton entry,
|
||||
|
@ -5700,13 +5700,13 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row.popover-activated-row {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header {
|
||||
background-image: image(#242424);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:hover {
|
||||
|
@ -5715,12 +5715,12 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active, window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active:focus {
|
||||
background-image: image(#212a39);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header label.compressed-entries-label {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
|
@ -5801,7 +5801,7 @@ button.documents-load-more {
|
|||
}
|
||||
|
||||
.documents-icon-bg {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -5820,7 +5820,7 @@ button.documents-favorite:active:hover {
|
|||
.photos-entry-tag,
|
||||
.documents-entry-tag {
|
||||
color: white;
|
||||
background: #0860f2;
|
||||
background: #0860F2;
|
||||
border-radius: 3px;
|
||||
border-width: 0;
|
||||
margin: 2px;
|
||||
|
@ -6225,8 +6225,8 @@ stack.view.polari-entry-area:disabled {
|
|||
#gf-candidate-popup levelbar block.low,
|
||||
#gf-candidate-popup levelbar block.high,
|
||||
#gf-candidate-popup levelbar block.full {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
#gf-bubble levelbar block.empty,
|
||||
|
@ -6250,7 +6250,7 @@ stack.view.polari-entry-area:disabled {
|
|||
|
||||
#gf-input-source:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6260,7 +6260,7 @@ gf-candidate-box label {
|
|||
|
||||
gf-candidate-box:hover, gf-candidate-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6726,7 +6726,7 @@ MsdOsdWindow.background.osd {
|
|||
}
|
||||
|
||||
MsdOsdWindow.background.osd .progressbar {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-color: red;
|
||||
border-radius: 5px;
|
||||
|
@ -6777,7 +6777,7 @@ panel-toplevel.background .wnck-pager:hover {
|
|||
.mate-panel-menu-bar .wnck-pager:selected,
|
||||
panel-toplevel.background .wnck-pager:selected {
|
||||
color: #669efa;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.mate-panel-menu-bar na-tray-applet,
|
||||
|
@ -6834,7 +6834,7 @@ panel-toplevel.background na-tray-applet {
|
|||
}
|
||||
|
||||
.caja-side-pane treeview.view:active, .caja-side-pane treeview.view:selected, .caja-side-pane .view:active, .caja-side-pane .view:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.caja-side-pane textview.view text {
|
||||
|
@ -6930,7 +6930,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
|
|||
}
|
||||
|
||||
.xfce4-panel button#launcher-arrow + button.toggle:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -6960,7 +6960,7 @@ XfdesktopIconView.view {
|
|||
}
|
||||
|
||||
XfdesktopIconView.view:active, XfdesktopIconView.view:checked {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
@ -6983,7 +6983,7 @@ window#whiskermenu-window scrolledwindow > viewport button.radio:hover {
|
|||
}
|
||||
|
||||
window#whiskermenu-window scrolledwindow > viewport button.radio:checked, window#whiskermenu-window scrolledwindow > viewport button.radio:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7365,7 +7365,7 @@ window.background:not(.csd) > window > menu menuitem {
|
|||
}
|
||||
|
||||
#MozillaGtkWidget > widget text:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7622,7 +7622,7 @@ button#tasklist-button.toggle.flat:active,
|
|||
button#tasklist-button.toggle.flat:checked,
|
||||
button.flat.-panel-icon-button:active,
|
||||
button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: white;
|
||||
background: none;
|
||||
}
|
||||
|
@ -7636,7 +7636,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.unpinned button.flat.-panel-icon-button:hover, .unpinned button.flat.-panel-icon-button:active, .unpinned button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7653,7 +7653,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.pinned button.flat.-panel-icon-button.running:hover, .pinned button.flat.-panel-icon-button.running:active, .pinned button.flat.-panel-icon-button.running:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7776,7 +7776,7 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
|
||||
.menubar.panel popover .linked > button:active, .menubar.panel popover .linked > button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -7857,7 +7857,7 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
}
|
||||
|
||||
button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active image, button.flat.toggle.switcher:checked image, button.flat.toggle.switcher:selected image {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.circular label:disabled {
|
||||
|
@ -7866,12 +7866,12 @@ button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active imag
|
|||
|
||||
.circular.accent {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -8155,7 +8155,7 @@ UnityDecoration {
|
|||
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.15);
|
||||
-UnityDecoration-inactive-shadow-radius: 7px;
|
||||
-UnityDecoration-glow-size: 10px;
|
||||
-UnityDecoration-glow-color: #0860f2;
|
||||
-UnityDecoration-glow-color: #0860F2;
|
||||
-UnityDecoration-title-indent: 10px;
|
||||
-UnityDecoration-title-fade: 35px;
|
||||
-UnityDecoration-title-alignment: 0.0;
|
||||
|
@ -8202,7 +8202,7 @@ UnityPanelWidget:backdrop,
|
|||
.unity-panel.menubar .menuitem *:hover {
|
||||
border-radius: 0;
|
||||
color: white;
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
@ -8305,8 +8305,8 @@ UnityPanelWidget:backdrop,
|
|||
}
|
||||
|
||||
.overlay-bar {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
padding: 3px 6px;
|
||||
margin: 3px;
|
||||
|
@ -8380,7 +8380,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.view:selected:focus,
|
||||
.source-list.category-expander:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list scrollbar,
|
||||
|
@ -8397,7 +8397,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
padding: 0 6px;
|
||||
|
@ -8409,7 +8409,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-color: white;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list.category-expander {
|
||||
|
@ -8561,7 +8561,7 @@ GtkListBox .h4 {
|
|||
|
||||
#content_frame button:active, #content_frame button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
@ -8604,7 +8604,7 @@ GtkListBox .h4 {
|
|||
#buttonbox_frame button:active, #buttonbox_frame button:checked {
|
||||
color: white;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -8797,7 +8797,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
|
||||
.raven button.linked:active, .raven button.linked:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven button.linked:disabled, label:disabled selection.linked {
|
||||
|
@ -8893,7 +8893,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
.budgie-popover scrolledwindow.sidebar:selected,
|
||||
.budgie-popover scrolledwindow.sidebar:selected:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-popover > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack {
|
||||
|
@ -9243,7 +9243,7 @@ popover.background.places-menu row {
|
|||
|
||||
.budgie-panel menubar > menuitem:hover,
|
||||
.budgie-panel .menubar > menuitem:hover {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-panel menubar > menuitem:disabled,
|
||||
|
@ -9407,7 +9407,7 @@ button.flat.launcher:checked > image {
|
|||
.top .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: top center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.top .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9421,7 +9421,7 @@ button.flat.launcher:checked > image {
|
|||
.bottom .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: bottom center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.bottom .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9435,7 +9435,7 @@ button.flat.launcher:checked > image {
|
|||
.left .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: left center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.left .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9449,7 +9449,7 @@ button.flat.launcher:checked > image {
|
|||
.right .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: right center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.right .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9655,7 +9655,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:active, .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:disabled, .raven scrolledwindow > .frame box.audio-widget label:disabled stackswitcher.linked > selection.radio, label:disabled .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > selection.radio {
|
||||
|
@ -9712,7 +9712,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven .raven-header.top + .raven-background {
|
||||
border-style: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -9889,7 +9889,7 @@ calendar.raven-calendar {
|
|||
|
||||
calendar.raven-calendar:selected {
|
||||
border-radius: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -10142,13 +10142,13 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color theme_text_color #dadada;
|
||||
@define-color theme_bg_color #333333;
|
||||
@define-color theme_base_color #242424;
|
||||
@define-color theme_selected_bg_color #0860f2;
|
||||
@define-color theme_selected_bg_color #0860F2;
|
||||
@define-color theme_selected_fg_color white;
|
||||
@define-color fg_color #dedede;
|
||||
@define-color text_color #dadada;
|
||||
@define-color bg_color #333333;
|
||||
@define-color base_color #242424;
|
||||
@define-color selected_bg_color #0860f2;
|
||||
@define-color selected_bg_color #0860F2;
|
||||
@define-color selected_fg_color white;
|
||||
@define-color insensitive_bg_color rgba(222, 222, 222, 0.35);
|
||||
@define-color insensitive_fg_color alpha(rgba(222, 222, 222, 0.35), 0.5);
|
||||
|
@ -10178,7 +10178,7 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_button_close_active_bg #be3841;
|
||||
@define-color wm_icon_close_bg #2f343f;
|
||||
@define-color wm_button_hover_bg #454C5C;
|
||||
@define-color wm_button_active_bg #0860f2;
|
||||
@define-color wm_button_active_bg #0860F2;
|
||||
@define-color wm_button_hover_border #262932;
|
||||
@define-color wm_icon_bg #90939B;
|
||||
@define-color wm_icon_unfocused_bg #666A74;
|
||||
|
@ -10186,8 +10186,8 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_icon_active_bg white;
|
||||
@define-color titlebar_gradient_a #373737;
|
||||
@define-color titlebar_gradient_b #373737;
|
||||
@define-color budgie_tasklist_indicator_color #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active_window rgba(7, 89, 225, 0.6136);
|
||||
@define-color budgie_tasklist_indicator_color_attention #F27835;
|
||||
@define-color STRAWBERRY_100 #FF9262;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
outline-offset: -4px;
|
||||
outline-width: 2px;
|
||||
-gtk-outline-radius: 6px;
|
||||
-gtk-secondary-caret-color: #0860f2;
|
||||
-gtk-secondary-caret-color: #0860F2;
|
||||
}
|
||||
|
||||
.background {
|
||||
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
|
||||
.gtkstyle-fallback:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@
|
|||
|
||||
.csd filechooser stack.view scrolledwindow treeview.view:selected, iconview:selected, .view:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@ label.separator {
|
|||
|
||||
label selection {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
label:disabled {
|
||||
|
@ -148,7 +148,7 @@ assistant .sidebar label {
|
|||
}
|
||||
|
||||
assistant .sidebar label.highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -385,7 +385,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
.osd entry:focus {
|
||||
color: white;
|
||||
border-color: #357ef8;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-image: none;
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
}
|
||||
|
||||
.osd entry selection:focus, .osd entry selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
|
@ -404,7 +404,7 @@ entry progress {
|
|||
margin: 0 -6px;
|
||||
border-radius: 0;
|
||||
border-width: 0 0 2px;
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
border-style: solid;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
|
@ -462,10 +462,10 @@ entry progress {
|
|||
|
||||
@keyframes needs_attention {
|
||||
from {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860F2), to(transparent));
|
||||
}
|
||||
to {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -552,8 +552,8 @@ button:hover {
|
|||
|
||||
button:active, button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-clip: border-box;
|
||||
transition-duration: 200ms;
|
||||
|
@ -650,15 +650,15 @@ button.osd.image-button {
|
|||
}
|
||||
|
||||
button.osd:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
}
|
||||
|
||||
button.osd:active, button.osd:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -686,8 +686,8 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
|
||||
.osd button:active, .osd button:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -724,8 +724,8 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
|
||||
.osd button.flat:active, .osd button.flat:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -873,7 +873,7 @@ button.destructive-action:disabled label, label:disabled selection.destructive-a
|
|||
|
||||
button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label, .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image {
|
||||
animation: needs_attention 150ms ease-in;
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
background-size: 6px 6px, 6px 6px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 3px, right 4px;
|
||||
|
@ -1257,8 +1257,8 @@ combobox arrow {
|
|||
|
||||
.background combobox button.combo arrow {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
-gtk-icon-source: -gtk-scaled(url("assets/combobox-arrow-dark.png"), url("assets/combobox-arrow-dark@2.png"));
|
||||
min-height: 16px;
|
||||
|
@ -1773,12 +1773,12 @@ headerbar entry, .titlebar entry {
|
|||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry selection:focus, headerbar entry selection:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry progress, headerbar entry progress {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
@ -1958,7 +1958,7 @@ treeview.view {
|
|||
}
|
||||
|
||||
treeview.view acceleditor > label {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view:selected, treeview.view:selected:focus {
|
||||
|
@ -2022,11 +2022,11 @@ treeview.view.expander:checked {
|
|||
treeview.view.progressbar, treeview.view.progressbar:focus {
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: white;
|
||||
}
|
||||
|
@ -2060,7 +2060,7 @@ treeview.view header button {
|
|||
}
|
||||
|
||||
treeview.view header button:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view header button:active {
|
||||
|
@ -2093,7 +2093,7 @@ treeview.view header.button.dnd:active {
|
|||
padding: 0 6px;
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
@ -2181,7 +2181,7 @@ menu > menuitem:hover,
|
|||
.menu > menuitem:hover {
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.context-menu > menuitem:hover arrow,
|
||||
|
@ -2701,7 +2701,7 @@ scrollbar.vertical slider {
|
|||
background-image: linear-gradient(0deg, rgba(36, 36, 36, 0.25) 0%, rgba(36, 36, 36, 0.35) 100%), radial-gradient(circle farthest-corner at center, transparent 0%, transparent 0%);
|
||||
}
|
||||
to {
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2730,7 +2730,7 @@ switch:checked {
|
|||
color: transparent;
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
transition: background-image 0.3s, box-shadow 0;
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
}
|
||||
|
||||
switch:checked:disabled, label:disabled selection:checked {
|
||||
|
@ -3029,7 +3029,7 @@ scale trough:disabled {
|
|||
}
|
||||
|
||||
.osd scale trough highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
menuitem:hover scale trough, row:selected scale trough, infobar scale trough {
|
||||
|
@ -3050,7 +3050,7 @@ menuitem:hover scale trough:disabled, row:selected scale trough:disabled, infoba
|
|||
|
||||
scale highlight {
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
scale highlight:disabled {
|
||||
|
@ -3523,7 +3523,7 @@ progressbar.osd trough {
|
|||
progressbar progress {
|
||||
min-height: 4px;
|
||||
min-width: 4px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
|
@ -3571,8 +3571,8 @@ levelbar.vertical.discrete block {
|
|||
}
|
||||
|
||||
levelbar block:not(.empty) {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
|
@ -3582,8 +3582,8 @@ levelbar block.low {
|
|||
}
|
||||
|
||||
levelbar block.high {
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
levelbar block.full {
|
||||
|
@ -3919,7 +3919,7 @@ messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive
|
|||
}
|
||||
|
||||
messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):active, messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):checked {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -4121,7 +4121,7 @@ placessidebar row.sidebar-placeholder-row {
|
|||
}
|
||||
|
||||
placessidebar row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
placessidebar row:drop(active):not(:disabled) {
|
||||
|
@ -4165,7 +4165,7 @@ paned > separator {
|
|||
}
|
||||
|
||||
paned > separator:selected {
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
}
|
||||
|
||||
paned > separator.wide {
|
||||
|
@ -4218,11 +4218,11 @@ infobar {
|
|||
}
|
||||
|
||||
infobar.info > revealer > box, infobar.info:backdrop > revealer > box {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.info > revealer > box selection, infobar.info:backdrop > revealer > box selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.question > revealer > box, infobar.question:backdrop > revealer > box {
|
||||
|
@ -4309,7 +4309,7 @@ infobar.info > revealer > box selection, infobar.info:hover > revealer > box sel
|
|||
}
|
||||
|
||||
.raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:active, .nemo-window .floating-bar button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:checked, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:checked, .nemo-window .floating-bar button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
border-color: rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
|
@ -4693,7 +4693,7 @@ modelbutton.flat:active arrow,
|
|||
modelbutton.flat:selected,
|
||||
modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus,
|
||||
calendar:selected, .csd filechooser stack.view scrolledwindow treeview.view:selected:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -4893,7 +4893,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup label, .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup image, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row label, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row label, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row image, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row image {
|
||||
|
@ -4937,7 +4937,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon {
|
||||
|
@ -5029,7 +5029,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nautilus-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
margin: 6px;
|
||||
|
@ -5156,7 +5156,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.conflict-row.activatable:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.nemo-window .nemo-places-sidebar.frame {
|
||||
|
@ -5258,7 +5258,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nemo-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
|
@ -5316,7 +5316,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
|
||||
.open-document-selector-treeview.view:hover:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.open-document-selector-name-label {
|
||||
|
@ -5435,7 +5435,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
}
|
||||
|
||||
editortweak .linked > entry.search:focus + .gb-linked-scroller {
|
||||
border-top-color: #0860f2;
|
||||
border-top-color: #0860F2;
|
||||
}
|
||||
|
||||
layouttab {
|
||||
|
@ -5453,7 +5453,7 @@ eggsearchbar box.search-bar {
|
|||
|
||||
pillbox {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -5588,7 +5588,7 @@ entry.search.preferences-search {
|
|||
|
||||
entry.search.preferences-search:focus {
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid #0860f2;
|
||||
border-bottom: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton {
|
||||
|
@ -5598,7 +5598,7 @@ preferencesbin spinbutton {
|
|||
}
|
||||
|
||||
preferencesbin spinbutton:focus {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton entry,
|
||||
|
@ -5727,13 +5727,13 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row.popover-activated-row {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header {
|
||||
background-image: image(#ffffff);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:hover {
|
||||
|
@ -5742,12 +5742,12 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active, window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active:focus {
|
||||
background-image: image(#e6effe);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header label.compressed-entries-label {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
|
@ -5828,7 +5828,7 @@ button.documents-load-more {
|
|||
}
|
||||
|
||||
.documents-icon-bg {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -5847,7 +5847,7 @@ button.documents-favorite:active:hover {
|
|||
.photos-entry-tag,
|
||||
.documents-entry-tag {
|
||||
color: white;
|
||||
background: #0860f2;
|
||||
background: #0860F2;
|
||||
border-radius: 3px;
|
||||
border-width: 0;
|
||||
margin: 2px;
|
||||
|
@ -6252,8 +6252,8 @@ stack.view.polari-entry-area:disabled {
|
|||
#gf-candidate-popup levelbar block.low,
|
||||
#gf-candidate-popup levelbar block.high,
|
||||
#gf-candidate-popup levelbar block.full {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
#gf-bubble levelbar block.empty,
|
||||
|
@ -6277,7 +6277,7 @@ stack.view.polari-entry-area:disabled {
|
|||
|
||||
#gf-input-source:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6287,7 +6287,7 @@ gf-candidate-box label {
|
|||
|
||||
gf-candidate-box:hover, gf-candidate-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6746,7 +6746,7 @@ MsdOsdWindow.background.osd {
|
|||
}
|
||||
|
||||
MsdOsdWindow.background.osd .progressbar {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-color: red;
|
||||
border-radius: 5px;
|
||||
|
@ -6797,7 +6797,7 @@ panel-toplevel.background .wnck-pager:hover {
|
|||
.mate-panel-menu-bar .wnck-pager:selected,
|
||||
panel-toplevel.background .wnck-pager:selected {
|
||||
color: #669efa;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.mate-panel-menu-bar na-tray-applet,
|
||||
|
@ -6854,7 +6854,7 @@ panel-toplevel.background na-tray-applet {
|
|||
}
|
||||
|
||||
.caja-side-pane treeview.view:active, .caja-side-pane treeview.view:selected, .caja-side-pane .view:active, .caja-side-pane .view:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.caja-side-pane textview.view text {
|
||||
|
@ -6950,7 +6950,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
|
|||
}
|
||||
|
||||
.xfce4-panel button#launcher-arrow + button.toggle:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -6980,7 +6980,7 @@ XfdesktopIconView.view {
|
|||
}
|
||||
|
||||
XfdesktopIconView.view:active, XfdesktopIconView.view:checked {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
@ -7003,7 +7003,7 @@ window#whiskermenu-window scrolledwindow > viewport button.radio:hover {
|
|||
}
|
||||
|
||||
window#whiskermenu-window scrolledwindow > viewport button.radio:checked, window#whiskermenu-window scrolledwindow > viewport button.radio:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7396,7 +7396,7 @@ window.background:not(.csd) > window > menu menuitem {
|
|||
}
|
||||
|
||||
#MozillaGtkWidget > widget text:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7653,7 +7653,7 @@ button#tasklist-button.toggle.flat:active,
|
|||
button#tasklist-button.toggle.flat:checked,
|
||||
button.flat.-panel-icon-button:active,
|
||||
button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: #292929;
|
||||
background: none;
|
||||
}
|
||||
|
@ -7667,7 +7667,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.unpinned button.flat.-panel-icon-button:hover, .unpinned button.flat.-panel-icon-button:active, .unpinned button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: #292929;
|
||||
}
|
||||
|
||||
|
@ -7684,7 +7684,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.pinned button.flat.-panel-icon-button.running:hover, .pinned button.flat.-panel-icon-button.running:active, .pinned button.flat.-panel-icon-button.running:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: #292929;
|
||||
}
|
||||
|
||||
|
@ -7807,8 +7807,8 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
|
||||
.menubar.panel popover .linked > button:active, .menubar.panel popover .linked > button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -7889,7 +7889,7 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
}
|
||||
|
||||
button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active image, button.flat.toggle.switcher:checked image, button.flat.toggle.switcher:selected image {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.circular label:disabled {
|
||||
|
@ -7898,12 +7898,12 @@ button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active imag
|
|||
|
||||
.circular.accent {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -8190,7 +8190,7 @@ UnityDecoration {
|
|||
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.15);
|
||||
-UnityDecoration-inactive-shadow-radius: 7px;
|
||||
-UnityDecoration-glow-size: 10px;
|
||||
-UnityDecoration-glow-color: #0860f2;
|
||||
-UnityDecoration-glow-color: #0860F2;
|
||||
-UnityDecoration-title-indent: 10px;
|
||||
-UnityDecoration-title-fade: 35px;
|
||||
-UnityDecoration-title-alignment: 0.0;
|
||||
|
@ -8237,7 +8237,7 @@ UnityPanelWidget:backdrop,
|
|||
.unity-panel.menubar .menuitem *:hover {
|
||||
border-radius: 0;
|
||||
color: white;
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
@ -8340,8 +8340,8 @@ UnityPanelWidget:backdrop,
|
|||
}
|
||||
|
||||
.overlay-bar {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
padding: 3px 6px;
|
||||
margin: 3px;
|
||||
|
@ -8415,7 +8415,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.view:selected:focus,
|
||||
.source-list.category-expander:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list scrollbar,
|
||||
|
@ -8432,7 +8432,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
padding: 0 6px;
|
||||
|
@ -8444,7 +8444,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-color: white;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list.category-expander {
|
||||
|
@ -8596,8 +8596,8 @@ GtkListBox .h4 {
|
|||
|
||||
#content_frame button:active, #content_frame button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -8639,8 +8639,8 @@ GtkListBox .h4 {
|
|||
|
||||
#buttonbox_frame button:active, #buttonbox_frame button:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -8839,7 +8839,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
|
||||
.raven button.linked:active, .raven button.linked:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven button.linked:disabled, label:disabled selection.linked {
|
||||
|
@ -8935,7 +8935,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
.budgie-popover scrolledwindow.sidebar:selected,
|
||||
.budgie-popover scrolledwindow.sidebar:selected:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-popover > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack {
|
||||
|
@ -9285,7 +9285,7 @@ popover.background.places-menu row {
|
|||
|
||||
.budgie-panel menubar > menuitem:hover,
|
||||
.budgie-panel .menubar > menuitem:hover {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-panel menubar > menuitem:disabled,
|
||||
|
@ -9449,7 +9449,7 @@ button.flat.launcher:checked > image {
|
|||
.top .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: top center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.top .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9463,7 +9463,7 @@ button.flat.launcher:checked > image {
|
|||
.bottom .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: bottom center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.bottom .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9477,7 +9477,7 @@ button.flat.launcher:checked > image {
|
|||
.left .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: left center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.left .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9491,7 +9491,7 @@ button.flat.launcher:checked > image {
|
|||
.right .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: right center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.right .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9697,7 +9697,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:active, .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:disabled, .raven scrolledwindow > .frame box.audio-widget label:disabled stackswitcher.linked > selection.radio, label:disabled .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > selection.radio {
|
||||
|
@ -9754,7 +9754,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven .raven-header.top + .raven-background {
|
||||
border-style: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -9931,7 +9931,7 @@ calendar.raven-calendar {
|
|||
|
||||
calendar.raven-calendar:selected {
|
||||
border-radius: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -10183,13 +10183,13 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color theme_text_color #363636;
|
||||
@define-color theme_bg_color #f5f5f5;
|
||||
@define-color theme_base_color #ffffff;
|
||||
@define-color theme_selected_bg_color #0860f2;
|
||||
@define-color theme_selected_bg_color #0860F2;
|
||||
@define-color theme_selected_fg_color white;
|
||||
@define-color fg_color #242424;
|
||||
@define-color text_color #363636;
|
||||
@define-color bg_color #f5f5f5;
|
||||
@define-color base_color #ffffff;
|
||||
@define-color selected_bg_color #0860f2;
|
||||
@define-color selected_bg_color #0860F2;
|
||||
@define-color selected_fg_color white;
|
||||
@define-color insensitive_bg_color rgba(36, 36, 36, 0.45);
|
||||
@define-color insensitive_fg_color alpha(rgba(36, 36, 36, 0.45), 0.5);
|
||||
|
@ -10219,7 +10219,7 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_button_close_active_bg #f13039;
|
||||
@define-color wm_icon_close_bg #F8F8F9;
|
||||
@define-color wm_button_hover_bg #fdfdfd;
|
||||
@define-color wm_button_active_bg #0860f2;
|
||||
@define-color wm_button_active_bg #0860F2;
|
||||
@define-color wm_button_hover_border #D1D3DA;
|
||||
@define-color wm_icon_bg #90949E;
|
||||
@define-color wm_icon_unfocused_bg #B6B8C0;
|
||||
|
@ -10227,8 +10227,8 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_icon_active_bg white;
|
||||
@define-color titlebar_gradient_a #ffffff;
|
||||
@define-color titlebar_gradient_b #ffffff;
|
||||
@define-color budgie_tasklist_indicator_color #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active_window #73a3f2;
|
||||
@define-color budgie_tasklist_indicator_color_attention #F27835;
|
||||
@define-color STRAWBERRY_100 #FF9262;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
outline-offset: -4px;
|
||||
outline-width: 2px;
|
||||
-gtk-outline-radius: 6px;
|
||||
-gtk-secondary-caret-color: #0860f2;
|
||||
-gtk-secondary-caret-color: #0860F2;
|
||||
}
|
||||
|
||||
.background {
|
||||
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
|
||||
.gtkstyle-fallback:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@
|
|||
|
||||
.csd filechooser stack.view scrolledwindow treeview.view:selected, iconview:selected, .view:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@ label.separator {
|
|||
|
||||
label selection {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
label:disabled {
|
||||
|
@ -148,7 +148,7 @@ assistant .sidebar label {
|
|||
}
|
||||
|
||||
assistant .sidebar label.highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -385,7 +385,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
.osd entry:focus {
|
||||
color: white;
|
||||
border-color: #357ef8;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-image: none;
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,7 @@ entry:drop(active):focus, entry:drop(active) {
|
|||
}
|
||||
|
||||
.osd entry selection:focus, .osd entry selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
|
@ -404,7 +404,7 @@ entry progress {
|
|||
margin: 0 -6px;
|
||||
border-radius: 0;
|
||||
border-width: 0 0 2px;
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
border-style: solid;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
|
@ -462,10 +462,10 @@ entry progress {
|
|||
|
||||
@keyframes needs_attention {
|
||||
from {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#0860F2), to(transparent));
|
||||
}
|
||||
to {
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -552,8 +552,8 @@ button:hover {
|
|||
|
||||
button:active, button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-clip: border-box;
|
||||
transition-duration: 200ms;
|
||||
|
@ -650,15 +650,15 @@ button.osd.image-button {
|
|||
}
|
||||
|
||||
button.osd:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: rgba(98, 98, 98, 0.96);
|
||||
}
|
||||
|
||||
button.osd:active, button.osd:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -686,8 +686,8 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
|
||||
.osd button:active, .osd button:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -724,8 +724,8 @@ button.osd:disabled, label:disabled selection.osd {
|
|||
|
||||
.osd button.flat:active, .osd button.flat:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -873,7 +873,7 @@ button.destructive-action:disabled label, label:disabled selection.destructive-a
|
|||
|
||||
button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label, .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image {
|
||||
animation: needs_attention 150ms ease-in;
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860f2), to(transparent));
|
||||
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#0860F2), to(transparent));
|
||||
background-size: 6px 6px, 6px 6px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 3px, right 4px;
|
||||
|
@ -1257,8 +1257,8 @@ combobox arrow {
|
|||
|
||||
.background combobox button.combo arrow {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
-gtk-icon-source: -gtk-scaled(url("assets/combobox-arrow-dark.png"), url("assets/combobox-arrow-dark@2.png"));
|
||||
min-height: 16px;
|
||||
|
@ -1773,12 +1773,12 @@ headerbar entry, .titlebar entry {
|
|||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry selection:focus, headerbar entry selection:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nemo-window .primary-toolbar entry progress, headerbar entry progress {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
@ -1958,7 +1958,7 @@ treeview.view {
|
|||
}
|
||||
|
||||
treeview.view acceleditor > label {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view:selected, treeview.view:selected:focus {
|
||||
|
@ -2022,11 +2022,11 @@ treeview.view.expander:checked {
|
|||
treeview.view.progressbar, treeview.view.progressbar:focus {
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
background-color: white;
|
||||
}
|
||||
|
@ -2060,7 +2060,7 @@ treeview.view header button {
|
|||
}
|
||||
|
||||
treeview.view header button:hover {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
treeview.view header button:active {
|
||||
|
@ -2093,7 +2093,7 @@ treeview.view header.button.dnd:active {
|
|||
padding: 0 6px;
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
@ -2181,7 +2181,7 @@ menu > menuitem:hover,
|
|||
.menu > menuitem:hover {
|
||||
transition: none;
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.context-menu > menuitem:hover arrow,
|
||||
|
@ -2701,7 +2701,7 @@ scrollbar.vertical slider {
|
|||
background-image: linear-gradient(0deg, rgba(36, 36, 36, 0.25) 0%, rgba(36, 36, 36, 0.35) 100%), radial-gradient(circle farthest-corner at center, transparent 0%, transparent 0%);
|
||||
}
|
||||
to {
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, rgba(8, 96, 242, 0) 0%);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2730,7 +2730,7 @@ switch:checked {
|
|||
color: transparent;
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
transition: background-image 0.3s, box-shadow 0;
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860f2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
background-image: linear-gradient(0deg, #357ef8 0%, #0860F2 100%), radial-gradient(circle farthest-corner at center, rgba(8, 96, 242, 0.75) 100%, transparent 0%);
|
||||
}
|
||||
|
||||
switch:checked:disabled, label:disabled selection:checked {
|
||||
|
@ -3029,7 +3029,7 @@ scale trough:disabled {
|
|||
}
|
||||
|
||||
.osd scale trough highlight {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
menuitem:hover scale trough, row:selected scale trough, infobar scale trough {
|
||||
|
@ -3050,7 +3050,7 @@ menuitem:hover scale trough:disabled, row:selected scale trough:disabled, infoba
|
|||
|
||||
scale highlight {
|
||||
border-radius: 6px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
scale highlight:disabled {
|
||||
|
@ -3523,7 +3523,7 @@ progressbar.osd trough {
|
|||
progressbar progress {
|
||||
min-height: 4px;
|
||||
min-width: 4px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
box-shadow: none;
|
||||
|
@ -3571,8 +3571,8 @@ levelbar.vertical.discrete block {
|
|||
}
|
||||
|
||||
levelbar block:not(.empty) {
|
||||
border: 1px solid #0860f2;
|
||||
background-color: #0860f2;
|
||||
border: 1px solid #0860F2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
|
@ -3582,8 +3582,8 @@ levelbar block.low {
|
|||
}
|
||||
|
||||
levelbar block.high {
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
levelbar block.full {
|
||||
|
@ -3919,7 +3919,7 @@ messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive
|
|||
}
|
||||
|
||||
messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):active, messagedialog .dialog-action-area button:not(.suggested-action):not(.destructive-action):checked {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -4121,7 +4121,7 @@ placessidebar row.sidebar-placeholder-row {
|
|||
}
|
||||
|
||||
placessidebar row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
placessidebar row:drop(active):not(:disabled) {
|
||||
|
@ -4165,7 +4165,7 @@ paned > separator {
|
|||
}
|
||||
|
||||
paned > separator:selected {
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
}
|
||||
|
||||
paned > separator.wide {
|
||||
|
@ -4218,11 +4218,11 @@ infobar {
|
|||
}
|
||||
|
||||
infobar.info > revealer > box, infobar.info:backdrop > revealer > box {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.info > revealer > box selection, infobar.info:backdrop > revealer > box selection {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
infobar.question > revealer > box, infobar.question:backdrop > revealer > box {
|
||||
|
@ -4309,7 +4309,7 @@ infobar.info > revealer > box selection, infobar.info:hover > revealer > box sel
|
|||
}
|
||||
|
||||
.raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:active, .nemo-window .floating-bar button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child button.flat:disabled:checked, .raven scrolledwindow > .frame > box.vertical > box.vertical:last-child .raven-background .raven-mpris button.image-button:disabled:checked, .nemo-window .floating-bar button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
border-color: rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
|
@ -4693,7 +4693,7 @@ modelbutton.flat:active arrow,
|
|||
modelbutton.flat:selected,
|
||||
modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus,
|
||||
calendar:selected, .csd filechooser stack.view scrolledwindow treeview.view:selected:focus {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -4889,7 +4889,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup label, .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup image, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row label, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row label, .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image, .nautilus-window placessidebar.sidebar label:disabled selection.sidebar-row image, label:disabled .nautilus-window placessidebar.sidebar selection.sidebar-row image {
|
||||
|
@ -4933,7 +4933,7 @@ filechooser paned > separator:hover,
|
|||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon {
|
||||
|
@ -5025,7 +5025,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nautilus-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 6px;
|
||||
margin: 6px;
|
||||
|
@ -5152,7 +5152,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.conflict-row.activatable:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.nemo-window .nemo-places-sidebar.frame {
|
||||
|
@ -5254,7 +5254,7 @@ filechooser paned > separator:hover,
|
|||
|
||||
.nemo-window .floating-bar {
|
||||
padding: 2px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
|
@ -5312,7 +5312,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
|
||||
.open-document-selector-treeview.view:hover:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.open-document-selector-name-label {
|
||||
|
@ -5431,7 +5431,7 @@ window.org-gnome-gedit > overlay > box.vertical > paned.gedit-side-panel-paned s
|
|||
}
|
||||
|
||||
editortweak .linked > entry.search:focus + .gb-linked-scroller {
|
||||
border-top-color: #0860f2;
|
||||
border-top-color: #0860F2;
|
||||
}
|
||||
|
||||
layouttab {
|
||||
|
@ -5449,7 +5449,7 @@ eggsearchbar box.search-bar {
|
|||
|
||||
pillbox {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
@ -5584,7 +5584,7 @@ entry.search.preferences-search {
|
|||
|
||||
entry.search.preferences-search:focus {
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid #0860f2;
|
||||
border-bottom: 1px solid #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton {
|
||||
|
@ -5594,7 +5594,7 @@ preferencesbin spinbutton {
|
|||
}
|
||||
|
||||
preferencesbin spinbutton:focus {
|
||||
border-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
preferencesbin spinbutton entry,
|
||||
|
@ -5723,13 +5723,13 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row.popover-activated-row {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header {
|
||||
background-image: image(#ffffff);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:hover {
|
||||
|
@ -5738,12 +5738,12 @@ window.background > box.vertical box.horizontal > box.vertical > scrolledwindow
|
|||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active, window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header:active:focus {
|
||||
background-image: image(#e6effe);
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
window.background > box.vertical box.horizontal > box.vertical > scrolledwindow > viewport.frame > list row.event.activatable.compressed-row-header label.compressed-entries-label {
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
color: white;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
|
@ -5824,7 +5824,7 @@ button.documents-load-more {
|
|||
}
|
||||
|
||||
.documents-icon-bg {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
@ -5843,7 +5843,7 @@ button.documents-favorite:active:hover {
|
|||
.photos-entry-tag,
|
||||
.documents-entry-tag {
|
||||
color: white;
|
||||
background: #0860f2;
|
||||
background: #0860F2;
|
||||
border-radius: 3px;
|
||||
border-width: 0;
|
||||
margin: 2px;
|
||||
|
@ -6248,8 +6248,8 @@ stack.view.polari-entry-area:disabled {
|
|||
#gf-candidate-popup levelbar block.low,
|
||||
#gf-candidate-popup levelbar block.high,
|
||||
#gf-candidate-popup levelbar block.full {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
}
|
||||
|
||||
#gf-bubble levelbar block.empty,
|
||||
|
@ -6273,7 +6273,7 @@ stack.view.polari-entry-area:disabled {
|
|||
|
||||
#gf-input-source:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6283,7 +6283,7 @@ gf-candidate-box label {
|
|||
|
||||
gf-candidate-box:hover, gf-candidate-box:selected {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
@ -6742,7 +6742,7 @@ MsdOsdWindow.background.osd {
|
|||
}
|
||||
|
||||
MsdOsdWindow.background.osd .progressbar {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border: none;
|
||||
border-color: red;
|
||||
border-radius: 5px;
|
||||
|
@ -6793,7 +6793,7 @@ panel-toplevel.background .wnck-pager:hover {
|
|||
.mate-panel-menu-bar .wnck-pager:selected,
|
||||
panel-toplevel.background .wnck-pager:selected {
|
||||
color: #669efa;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.mate-panel-menu-bar na-tray-applet,
|
||||
|
@ -6850,7 +6850,7 @@ panel-toplevel.background na-tray-applet {
|
|||
}
|
||||
|
||||
.caja-side-pane treeview.view:active, .caja-side-pane treeview.view:selected, .caja-side-pane .view:active, .caja-side-pane .view:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.caja-side-pane textview.view text {
|
||||
|
@ -6946,7 +6946,7 @@ panel-toplevel.background button:active:not(#tasklist-button) {
|
|||
}
|
||||
|
||||
.xfce4-panel button#launcher-arrow + button.toggle:checked {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -6976,7 +6976,7 @@ XfdesktopIconView.view {
|
|||
}
|
||||
|
||||
XfdesktopIconView.view:active, XfdesktopIconView.view:checked {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
@ -6999,7 +6999,7 @@ window#whiskermenu-window scrolledwindow > viewport button.radio:hover {
|
|||
}
|
||||
|
||||
window#whiskermenu-window scrolledwindow > viewport button.radio:checked, window#whiskermenu-window scrolledwindow > viewport button.radio:active {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7392,7 +7392,7 @@ window.background:not(.csd) > window > menu menuitem {
|
|||
}
|
||||
|
||||
#MozillaGtkWidget > widget text:selected {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -7649,7 +7649,7 @@ button#tasklist-button.toggle.flat:active,
|
|||
button#tasklist-button.toggle.flat:checked,
|
||||
button.flat.-panel-icon-button:active,
|
||||
button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: #f2f2f2;
|
||||
background: none;
|
||||
}
|
||||
|
@ -7663,7 +7663,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.unpinned button.flat.-panel-icon-button:hover, .unpinned button.flat.-panel-icon-button:active, .unpinned button.flat.-panel-icon-button:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: #f2f2f2;
|
||||
}
|
||||
|
||||
|
@ -7680,7 +7680,7 @@ button.flat.-panel-icon-button:checked {
|
|||
}
|
||||
|
||||
.pinned button.flat.-panel-icon-button.running:hover, .pinned button.flat.-panel-icon-button.running:active, .pinned button.flat.-panel-icon-button.running:checked {
|
||||
box-shadow: inset 0 -2px #0860f2;
|
||||
box-shadow: inset 0 -2px #0860F2;
|
||||
color: #f2f2f2;
|
||||
}
|
||||
|
||||
|
@ -7803,8 +7803,8 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
|
||||
.menubar.panel popover .linked > button:active, .menubar.panel popover .linked > button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -7885,7 +7885,7 @@ menubar.-vala-panel-background > menuitem:disabled {
|
|||
}
|
||||
|
||||
button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active image, button.flat.toggle.switcher:checked image, button.flat.toggle.switcher:selected image {
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.circular label:disabled {
|
||||
|
@ -7894,12 +7894,12 @@ button.flat.toggle.switcher:hover image, button.flat.toggle.switcher:active imag
|
|||
|
||||
.circular.accent {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
|
@ -8186,7 +8186,7 @@ UnityDecoration {
|
|||
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.15);
|
||||
-UnityDecoration-inactive-shadow-radius: 7px;
|
||||
-UnityDecoration-glow-size: 10px;
|
||||
-UnityDecoration-glow-color: #0860f2;
|
||||
-UnityDecoration-glow-color: #0860F2;
|
||||
-UnityDecoration-title-indent: 10px;
|
||||
-UnityDecoration-title-fade: 35px;
|
||||
-UnityDecoration-title-alignment: 0.0;
|
||||
|
@ -8233,7 +8233,7 @@ UnityPanelWidget:backdrop,
|
|||
.unity-panel.menubar .menuitem *:hover {
|
||||
border-radius: 0;
|
||||
color: white;
|
||||
background-image: linear-gradient(to bottom, #0860f2, #0860f2);
|
||||
background-image: linear-gradient(to bottom, #0860F2, #0860F2);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
@ -8336,8 +8336,8 @@ UnityPanelWidget:backdrop,
|
|||
}
|
||||
|
||||
.overlay-bar {
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
border-radius: 2px;
|
||||
padding: 3px 6px;
|
||||
margin: 3px;
|
||||
|
@ -8411,7 +8411,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.view:selected:focus,
|
||||
.source-list.category-expander:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list scrollbar,
|
||||
|
@ -8428,7 +8428,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-image: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
padding: 0 6px;
|
||||
|
@ -8440,7 +8440,7 @@ toolbar.bottom-toolbar button {
|
|||
.source-list.badge:selected:focus,
|
||||
.source-list.badge:hover:selected {
|
||||
background-color: white;
|
||||
color: #0860f2;
|
||||
color: #0860F2;
|
||||
}
|
||||
|
||||
.source-list.category-expander {
|
||||
|
@ -8592,8 +8592,8 @@ GtkListBox .h4 {
|
|||
|
||||
#content_frame button:active, #content_frame button:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
border-color: #0860F2;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
@ -8635,8 +8635,8 @@ GtkListBox .h4 {
|
|||
|
||||
#buttonbox_frame button:active, #buttonbox_frame button:checked {
|
||||
color: white;
|
||||
border-color: #0860f2;
|
||||
background-color: #0860f2;
|
||||
border-color: #0860F2;
|
||||
background-color: #0860F2;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -8835,7 +8835,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
|
||||
.raven button.linked:active, .raven button.linked:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven button.linked:disabled, label:disabled selection.linked {
|
||||
|
@ -8931,7 +8931,7 @@ window.budgie-switcher-window .drop-shadow button, .drop-shadow button, .workspa
|
|||
.budgie-popover scrolledwindow.sidebar:selected,
|
||||
.budgie-popover scrolledwindow.sidebar:selected:hover {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-popover > frame.container > grid.horizontal > grid.horizontal > widget > grid.horizontal > stack {
|
||||
|
@ -9281,7 +9281,7 @@ popover.background.places-menu row {
|
|||
|
||||
.budgie-panel menubar > menuitem:hover,
|
||||
.budgie-panel .menubar > menuitem:hover {
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.budgie-panel menubar > menuitem:disabled,
|
||||
|
@ -9445,7 +9445,7 @@ button.flat.launcher:checked > image {
|
|||
.top .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: top center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.top .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9459,7 +9459,7 @@ button.flat.launcher:checked > image {
|
|||
.bottom .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 6px 3px;
|
||||
background-position: bottom center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.bottom .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9473,7 +9473,7 @@ button.flat.launcher:checked > image {
|
|||
.left .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: left center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.left .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9487,7 +9487,7 @@ button.flat.launcher:checked > image {
|
|||
.right .budgie-panel .pinned button.launcher.running.sidebar-button > image {
|
||||
background-size: 3px 6px;
|
||||
background-position: right center;
|
||||
background-image: image(#0860f2);
|
||||
background-image: image(#0860F2);
|
||||
}
|
||||
|
||||
.right .budgie-panel .unpinned button.flat.launcher:checked > image,
|
||||
|
@ -9693,7 +9693,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:active, .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:checked {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
}
|
||||
|
||||
.raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > button.text-button.radio:disabled, .raven scrolledwindow > .frame box.audio-widget label:disabled stackswitcher.linked > selection.radio, label:disabled .raven scrolledwindow > .frame box.audio-widget stackswitcher.linked > selection.radio {
|
||||
|
@ -9750,7 +9750,7 @@ frame.raven-frame > border {
|
|||
|
||||
.raven .raven-header.top + .raven-background {
|
||||
border-style: none;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -9927,7 +9927,7 @@ calendar.raven-calendar {
|
|||
|
||||
calendar.raven-calendar:selected {
|
||||
border-radius: 3px;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -10179,13 +10179,13 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color theme_text_color #363636;
|
||||
@define-color theme_bg_color #f5f5f5;
|
||||
@define-color theme_base_color #ffffff;
|
||||
@define-color theme_selected_bg_color #0860f2;
|
||||
@define-color theme_selected_bg_color #0860F2;
|
||||
@define-color theme_selected_fg_color white;
|
||||
@define-color fg_color #242424;
|
||||
@define-color text_color #363636;
|
||||
@define-color bg_color #f5f5f5;
|
||||
@define-color base_color #ffffff;
|
||||
@define-color selected_bg_color #0860f2;
|
||||
@define-color selected_bg_color #0860F2;
|
||||
@define-color selected_fg_color white;
|
||||
@define-color insensitive_bg_color rgba(36, 36, 36, 0.45);
|
||||
@define-color insensitive_fg_color alpha(rgba(36, 36, 36, 0.45), 0.5);
|
||||
|
@ -10215,7 +10215,7 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_button_close_active_bg #f13039;
|
||||
@define-color wm_icon_close_bg #F8F8F9;
|
||||
@define-color wm_button_hover_bg #fdfdfd;
|
||||
@define-color wm_button_active_bg #0860f2;
|
||||
@define-color wm_button_active_bg #0860F2;
|
||||
@define-color wm_button_hover_border #D1D3DA;
|
||||
@define-color wm_icon_bg #90949E;
|
||||
@define-color wm_icon_unfocused_bg #B6B8C0;
|
||||
|
@ -10223,8 +10223,8 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow {
|
|||
@define-color wm_icon_active_bg white;
|
||||
@define-color titlebar_gradient_a #ffffff;
|
||||
@define-color titlebar_gradient_b #ffffff;
|
||||
@define-color budgie_tasklist_indicator_color #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860f2;
|
||||
@define-color budgie_tasklist_indicator_color #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active #0860F2;
|
||||
@define-color budgie_tasklist_indicator_color_active_window rgba(25, 107, 243, 0.6136);
|
||||
@define-color budgie_tasklist_indicator_color_attention #F27835;
|
||||
@define-color STRAWBERRY_100 #FF9262;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#dashtodockContainer .notification-badge {
|
||||
color: white;
|
||||
background-color: #0860f2;
|
||||
background-color: #0860F2;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
|
||||
border-radius: 1000px;
|
||||
margin: 2px;
|
||||
|
|
26
src/sass/_colors-palette.scss
Normal file
26
src/sass/_colors-palette.scss
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Default Blue
|
||||
$theme_color_default: #0860F2;
|
||||
|
||||
// Blue
|
||||
$theme_color_blue: #2E7CF7;
|
||||
|
||||
// Purple
|
||||
$theme_color_purple: #9A57A3;
|
||||
|
||||
// pink
|
||||
$theme_color_pink: #E55E9C;
|
||||
|
||||
// red
|
||||
$theme_color_red: #ED5F5D;
|
||||
|
||||
// orange
|
||||
$theme_color_orange: #E9873A;
|
||||
|
||||
// yellow
|
||||
$theme_color_yellow: #F3BA4B;
|
||||
|
||||
// green
|
||||
$theme_color_green: #79B757;
|
||||
|
||||
// grey
|
||||
$theme_color_grey: #8C8C8C;
|
|
@ -2,6 +2,9 @@
|
|||
@return unquote("alpha(#{$c},#{$a})");
|
||||
}
|
||||
|
||||
// colors palette
|
||||
@import 'colors-palette';
|
||||
|
||||
// Base colors
|
||||
$base_color: if($variant == 'light', #ffffff, #242424);
|
||||
$text_color: if($variant == 'light', #363636, #dadada);
|
||||
|
@ -23,7 +26,7 @@ $light_track_color: rgba(white, 0.28);
|
|||
$light_divider_color: rgba(white, 0.15);
|
||||
|
||||
$selected_fg_color: $light_fg_color;
|
||||
$selected_bg_color: #0860f2;
|
||||
$selected_bg_color: $theme_color_default;
|
||||
$primary_color: $selected_bg_color;
|
||||
|
||||
$selected_borders_color: darken($selected_bg_color, 10%);
|
||||
|
@ -114,12 +117,7 @@ $dialog_bg_color: if($variant == 'light', $bg_color, $base_col
|
|||
@if $trans=='true' { $dialog_bg_color: if($variant == 'light', rgba($bg_color, 0.95), rgba($base_color, 0.95)); }
|
||||
|
||||
// Panel colors
|
||||
$panel_opacity: 0.16;
|
||||
|
||||
$panel_bg: if($variant == 'light', #f1f1f1, #2a2a2a);
|
||||
|
||||
@if $trans == 'true' { $panel_bg: if($variant == 'light', rgba(white, $panel_opacity), rgba(black, $panel_opacity)); }
|
||||
|
||||
$panel_fg: if($trans == 'true', white, $text_color);
|
||||
|
||||
@if $black == 'true' { $panel_fg: $text_color; }
|
||||
|
|
|
@ -21,6 +21,8 @@ $secondary_opacity: 0.75;
|
|||
$hint_opacity: 0.6;
|
||||
$disabled_opacity: 0.45;
|
||||
|
||||
$panel_opacity: 0.16;
|
||||
|
||||
// sizes
|
||||
$small_size: if($laptop == 'false', 24px, 20px);
|
||||
$medium_size: if($laptop == 'false', 36px, 32px);
|
||||
|
@ -28,6 +30,12 @@ $large_size: if($laptop == 'false', 48px, 44px);
|
|||
$menuitem_size: if($laptop == 'false', 32px, 28px);
|
||||
$container_padding: if($laptop == 'false', 6px, 4px);
|
||||
|
||||
$sidebar_size_default: 200px;
|
||||
$sidebar_size_220: 220px;
|
||||
$sidebar_size_240: 240px;
|
||||
$sidebar_size_260: 260px;
|
||||
$sidebar_size_280: 280px;
|
||||
|
||||
// radiuses
|
||||
$circular_radius: 9999px;
|
||||
$bt_radius: 6px;
|
||||
|
|
|
@ -9,6 +9,8 @@ $_bubble_bg_color: opacify($osd_bg_color,0.25);
|
|||
$_bubble_fg_color: $osd_fg_color;
|
||||
$_bubble_borders_color: transparentize($osd_fg_color,0.8);
|
||||
|
||||
@if $trans == 'true' { $panel_bg: if($variant == 'light', rgba(white, $panel_opacity), rgba(black, $panel_opacity)); }
|
||||
|
||||
stage {
|
||||
font-family: $font-family;
|
||||
@include fontsize($font-size);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
|
||||
@if $trans == 'true' { $panel_bg: if($variant == 'light', rgba(white, $panel_opacity), rgba(black, $panel_opacity)); }
|
||||
$shell_panel_bg: if($trans == 'true', $panel_bg, rgba($panel_bg, 0.75));
|
||||
|
||||
#panel {
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
|
||||
@if $trans == 'true' { $panel_bg: if($variant == 'light', rgba(white, $panel_opacity), rgba(black, $panel_opacity)); }
|
||||
|
||||
//
|
||||
// GNOME Terminal, MATE Terminal
|
||||
//
|
||||
|
||||
.mate-terminal {
|
||||
notebook {
|
||||
> header.top {
|
||||
|
@ -62,7 +63,7 @@ window.background.csd { // gnome-terminal 3.32 setting
|
|||
//
|
||||
|
||||
$nautilus_radius: $wm_radius + 2px;
|
||||
$nautilus_sidebar_size: 200px;
|
||||
$nautilus_sidebar_size: $sidebar_size_default;
|
||||
$nautilus_header_image: linear-gradient(90deg, $dark_sidebar_bg 0%,
|
||||
$dark_sidebar_bg $nautilus_sidebar_size,
|
||||
darken($dark_sidebar_bg, 12%) $nautilus_sidebar_size,
|
||||
|
|
Loading…
Reference in a new issue