This commit is contained in:
vinceliuice 2021-01-23 15:46:38 +08:00
parent c5ae491622
commit 3b29eb078e
39 changed files with 1270 additions and 1348 deletions

View File

@ -199,8 +199,6 @@ install() {
cp -r ${SRC_DIR}/other/plank/theme${color}/*.theme ${THEME_DIR}/plank
}
nautilus_use_colors='false'
while [[ $# -gt 0 ]]; do
case "${1}" in
-d|--dest)
@ -223,10 +221,14 @@ while [[ $# -gt 0 ]]; do
remove='true'
shift 1
;;
-dialog|--dialog)
--dialog)
dialogs='true'
shift 1
;;
--nautilus-use-colors)
nautilus_use_colors='true'
shift 1
;;
-a|--alt)
shift
for alt in "${@}"; do
@ -499,10 +501,6 @@ while [[ $# -gt 0 ]]; do
usage
exit 0
;;
--nautilus-use-colors)
nautilus_use_colors='true'
break
;;
*)
prompt -e "ERROR: Unrecognized installation option '$1'."
prompt -i "Try '$0 --help' for more information."
@ -565,7 +563,7 @@ customize_theme() {
fi
# Force nautilus to use colors instead of images
if [[ "${nautilus_use_colors}" == 'true' ]]; then
if [[ "${nautilus_use_colors:-}" == 'true' ]]; then
force_nautilus_use_colors
fi
}
@ -781,11 +779,21 @@ customize_theme_dialogs() {
4) sidebar_size="280" ;;
*) operation_canceled ;;
esac
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
--radiolist "Choose your nautilus sidebar style (default is Big Sur style):" 15 40 5 \
1 "BigSur" on \
2 "Mojave" off --output-fd 1 )
case "$tui" in
1) nautilus_use_colors="false" ;;
2) nautilus_use_colors="true" ;;
*) operation_canceled ;;
esac
fi
}
run_customize_theme_dialogs() {
install_dialog && customize_theme_dialogs && change_transparency && change_size && parse_sass
install_dialog && customize_theme_dialogs && change_transparency && change_size && force_nautilus_use_colors && parse_sass
}
parse_sass() {
@ -852,7 +860,7 @@ if [[ "${remove:-}" != 'true' && "${gdm:-}" != 'true' ]]; then
run_customize_theme_dialogs
fi
if [[ "${size:-}" != 'true' && "${panel:-}" != 'true' ]]; then
if [[ "${size:-}" != 'true' && "${panel:-}" != 'true' && "${nautilus_use_colors:-}" != 'true' ]]; then
install_theme
else
install_customize_theme && parse_sass && install_theme "${panel_opacity}" "${sidebar_size}"

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #333333 0%, #333333 200px, #141414 200px, #141414 201px, #242424 201px, #242424 100%);
}
@ -4872,7 +4845,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #333333 0%, #333333 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4894,11 +4867,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4008,7 +4008,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4824,33 +4824,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4858,8 +4831,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.95) 0%, rgba(51, 51, 51, 0.95) 200px, rgba(20, 20, 20, 0.95) 200px, rgba(20, 20, 20, 0.95) 201px, #242424 201px, #242424 100%);
}
@ -4868,7 +4841,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4890,11 +4863,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#242424);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(255, 255, 255, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 200px, #d1d1d1 200px, #d1d1d1 201px, #ffffff 201px, #ffffff 100%);
}
@ -4894,7 +4867,7 @@ filechooser paned > separator:hover,
background-image: linear-gradient(0deg, #f0f0f0 0%, #f0f0f0 95%, transparent 95%, transparent 100%);
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4916,11 +4889,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -4019,7 +4019,7 @@ messagedialog.csd.background {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 8px 8px;
background-size: 12px 12px;
background-position: left bottom;
}
@ -4846,33 +4846,6 @@ window.background.csd > box.vertical > box.horizontal > stack > widget > noteboo
border-bottom-right-radius: 12px;
}
filechooser paned > separator,
.nautilus-window paned > separator {
border: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: left bottom;
background-repeat: no-repeat;
}
filechooser paned > separator:dir(ltr),
.nautilus-window paned > separator:dir(ltr) {
margin-left: -1px;
}
filechooser paned > separator:dir(rtl),
.nautilus-window paned > separator:dir(rtl) {
margin-right: -1px;
}
filechooser paned > separator:hover,
.nautilus-window paned > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window.background.csd {
border-radius: 0 0 12px 12px;
background-color: transparent;
@ -4880,8 +4853,8 @@ filechooser paned > separator:hover,
}
.nautilus-window.background.csd > headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
border: none;
background-color: transparent;
background-image: linear-gradient(90deg, rgba(240, 240, 240, 0.94) 0%, rgba(240, 240, 240, 0.94) 200px, rgba(209, 209, 209, 0.94) 200px, rgba(209, 209, 209, 0.94) 201px, #ffffff 201px, #ffffff 100%);
}
@ -4890,7 +4863,7 @@ filechooser paned > separator:hover,
margin-left: 120px;
}
.nautilus-window.background.csd > grid.horizontal > paned.horizontal > box.vertical > placessidebar {
.nautilus-window.background.csd placessidebar.sidebar {
border-bottom-left-radius: 12px;
}
@ -4912,11 +4885,35 @@ filechooser paned > separator:hover,
background-color: transparent;
}
.nautilus-window paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
.nautilus-window > grid.horizontal > paned.horizontal > separator {
border-left: none;
background-color: transparent;
background-image: image(#ffffff);
background-size: 12px 12px;
background-position: bottom left;
background-repeat: no-repeat;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: -1px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(ltr) {
margin-left: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:dir(rtl) {
margin-right: 2px;
}
.nautilus-window > grid.horizontal > paned.horizontal > separator:hover {
background-image: image(rgba(0, 0, 0, 0.12));
background-size: 2px 100px;
background-position: center center;
}
.nautilus-window placessidebar.sidebar {

View File

@ -83,64 +83,41 @@ $nautilus_background_image: linear-gradient(90deg, $dark_sidebar_bg 0%,
$base_color ($nautilus_sidebar_size + 1px),
$base_color 100%);
filechooser,
.nautilus-window {
paned > separator { // Use paned separator to hide stack border-bottom-left-radius
border: none;
@if $nautilus_use_colors {
background-color: rgba($bg_color, 0.95);
} @else {
background-color: transparent;
background-image: image($base_color);
}
background-size: $wm_radius $wm_radius;
background-position: left bottom;
background-repeat: no-repeat;
&:dir(ltr) { margin-left: -1px; }
&:dir(rtl) { margin-right: -1px; }
&:hover {
background-image: image($borders_color);
background-size: 2px 100px;
background-position: center center;
}
}
}
.nautilus-window {
&.background.csd {
border-radius: 0 0 $wm_radius $wm_radius;
@if $nautilus_use_colors {
background-color: rgba($bg_color, 0.95);
background-color: $dark_sidebar_bg;
} @else {
background-color: transparent;
background-image: $nautilus_background_image;
}
> headerbar.titlebar {
border: none;
box-shadow: inset 0 1px rgba(white, 0.1);
background: none;
@if $nautilus_use_colors {
background-color: $base_color;
background-color: $header_bg;
} @else {
border: none;
background-color: transparent;
background-image: $nautilus_header_image;
}
> .linked.raised > button:first-child { margin-left: $nautilus_sidebar_size - 80px; }
> .linked.raised > button:first-child { margin-left: $nautilus_sidebar_size - 80px; }
@if $trans == 'false' {
> box.left.horizontal {
background-image: linear-gradient(0deg, $dark_sidebar_bg 0%,
$dark_sidebar_bg 95%,
transparent 95%,
transparent 100%);
@if $trans == 'false' {
> box.left.horizontal {
background-image: linear-gradient(0deg, $dark_sidebar_bg 0%,
$dark_sidebar_bg 95%,
transparent 95%,
transparent 100%);
}
}
}
}
> grid.horizontal > paned.horizontal > box.vertical > placessidebar {
placessidebar.sidebar {
border-bottom-left-radius: $wm_radius;
}
}
@ -165,19 +142,40 @@ filechooser,
}
}
paned > separator {
background-image: none;
background-size: 0 0;
min-width: 0;
min-height: 0;
> grid.horizontal > paned.horizontal > separator { // Use paned separator to hide stack border-bottom-left-radius
border-left: none;
background-color: transparent;
background-image: image($base_color);
background-size: $wm_radius $wm_radius;
background-position: bottom left;
background-repeat: no-repeat;
&:dir(ltr) { margin-left: -1px; }
&:dir(rtl) { margin-right: -1px; }
@if $nautilus_use_colors {} @else {
&:dir(ltr) { margin-left: 2px; }
&:dir(rtl) { margin-right: 2px; }
&:hover {
background-image: image($borders_color);
background-size: 2px 100px;
background-position: center center;
}
}
}
placessidebar.sidebar {
margin-bottom: $wm_radius;
border: none;
min-width: $nautilus_sidebar_size;
background-color: transparent;
background-image: if($trans == 'true', none, $nautilus_sidebar_image);
@if $nautilus_use_colors {
background-color: transparent;
&.frame { border-right: 1px solid if($variant=='light', $solid_borders_color, $header_border); }
} @else {
margin-bottom: $wm_radius;
border: none;
min-width: $nautilus_sidebar_size;
background-color: transparent;
background-image: if($trans == 'true', none, $nautilus_sidebar_image);
}
row.sidebar-row {
color: $dark_sidebar_fg;
@ -193,38 +191,62 @@ filechooser,
&:backdrop { opacity: 0.85; }
&:hover {
transition: background-image 0;
background-repeat: no-repeat;
background-color: transparent;
background-position: left center;
background-size: $nautilus_sidebar_size 28px;
background-image: -gtk-scaled(url("assets/sidebar-view-hover-#{$nautilus_sidebar_size}#{$asset_suffix}.png"),
url("assets/sidebar-view-hover-#{$nautilus_sidebar_size}#{$asset_suffix}@2.png"));
}
@if $nautilus_use_colors {
border-radius: $bt_radius;
margin: 0 6px;
padding: 2px 4px;
&:active, &:active:hover {
transition: background-image ease-out 200ms;
background-repeat: no-repeat;
background-color: transparent;
background-position: left center;
background-size: $nautilus_sidebar_size 28px;
background-image: -gtk-scaled(url("assets/sidebar-view-active-#{$nautilus_sidebar_size}#{$asset_suffix}.png"),
url("assets/sidebar-view-active-#{$nautilus_sidebar_size}#{$asset_suffix}@2.png"));
}
&:hover {
background-color: rgba($fg_color, 0.1);
}
&:selected.has-open-popup,
&:selected, &:selected:hover {
color: $fg_color;
transition: background-image ease-out 200ms;
background-repeat: no-repeat;
background-position: left center;
background-size: $nautilus_sidebar_size 28px;
background-color: transparent;
background-image: -gtk-scaled(url("assets/sidebar-view-checked-#{$nautilus_sidebar_size}#{$asset_suffix}.png"),
url("assets/sidebar-view-checked-#{$nautilus_sidebar_size}#{$asset_suffix}@2.png"));
&:active, &:active:hover {
transition: background-color ease-out 200ms;
background-color: rgba($fg_color, 0.2);
}
&, label { color: $fg_color; }
&:selected.has-open-popup,
&:selected, &:selected:hover {
color: $fg_color;
transition: background-color ease-out 200ms;
background-color: rgba($fg_color, 0.15);
&, label { color: $fg_color; }
}
} @else {
&:hover {
transition: background-image 0;
background-repeat: no-repeat;
background-color: transparent;
background-position: left center;
background-size: $nautilus_sidebar_size 28px;
background-image: -gtk-scaled(url("assets/sidebar-view-hover-#{$nautilus_sidebar_size}#{$asset_suffix}.png"),
url("assets/sidebar-view-hover-#{$nautilus_sidebar_size}#{$asset_suffix}@2.png"));
}
&:active, &:active:hover {
transition: background-image ease-out 200ms;
background-repeat: no-repeat;
background-color: transparent;
background-position: left center;
background-size: $nautilus_sidebar_size 28px;
background-image: -gtk-scaled(url("assets/sidebar-view-active-#{$nautilus_sidebar_size}#{$asset_suffix}.png"),
url("assets/sidebar-view-active-#{$nautilus_sidebar_size}#{$asset_suffix}@2.png"));
}
&:selected.has-open-popup,
&:selected, &:selected:hover {
color: $fg_color;
transition: background-image ease-out 200ms;
background-repeat: no-repeat;
background-position: left center;
background-size: $nautilus_sidebar_size 28px;
background-color: transparent;
background-image: -gtk-scaled(url("assets/sidebar-view-checked-#{$nautilus_sidebar_size}#{$asset_suffix}.png"),
url("assets/sidebar-view-checked-#{$nautilus_sidebar_size}#{$asset_suffix}@2.png"));
&, label { color: $fg_color; }
}
}
&.sidebar-new-bookmark-row {

View File

@ -3329,7 +3329,7 @@ filechooser {
border: none;
background-color: transparent;
background-image: image($base_color);
background-size: 8px 8px;
background-size: $wm_radius $wm_radius;
background-position: left bottom;
&:dir(ltr) { margin-left: -1px; }