Skip to content

Commit 99220aa

Browse files
committed
Fix #13
1 parent 42efcc4 commit 99220aa

File tree

9 files changed

+110
-4
lines changed

9 files changed

+110
-4
lines changed

gtk/src/Stilo-dark/gtk-2.0/gtkrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ style "default" {
112112
# Documentation: https://wiki.ubuntu.com/Artwork/Documentation/Murrine#The_Murrine_Engine
113113
engine "murrine" {
114114
animation = FALSE
115-
arrowstyle = 0
115+
arrowstyle = 1
116116
border_shades = {1.0,1.0}
117117
cellstyle = 0
118118
colorize_scrollbar = TRUE

gtk/src/Stilo/gtk-2.0/gtkrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ style "default" {
112112
# Documentation: https://wiki.ubuntu.com/Artwork/Documentation/Murrine#The_Murrine_Engine
113113
engine "murrine" {
114114
animation = FALSE
115-
arrowstyle = 0
115+
arrowstyle = 1
116116
border_shades = {1.0,1.0}
117117
cellstyle = 0
118118
colorize_scrollbar = TRUE

gtk/src/Stilo/gtk-3.0/_custom.scss

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -875,4 +875,46 @@ list.tweak-categories separator {
875875

876876
&:selected { &:focus, & { @extend %selected_items; }}
877877
}
878+
879+
.sidebar {
880+
scrolledwindow.frame.nemo-places-sidebar {
881+
// get rid of double border in sidebar
882+
border: none;
883+
}
884+
}
885+
886+
.primary-toolbar {
887+
button {
888+
@include button(undecorated);
889+
890+
&:hover {
891+
@include button(hover);
892+
}
893+
894+
&:active, &:checked, &:hover:active, &:hover:checked {
895+
@include button(active);
896+
}
897+
}
898+
}
899+
900+
.path-bar {
901+
button {
902+
@include button(undecorated);
903+
border-radius: $button_radius;
904+
border: 1px solid transparent;
905+
margin: 0 2px;
906+
&:hover {
907+
background-color: $light_selection;
908+
border: 1px solid $light_selection_border;
909+
color: $fg_color;
910+
box-shadow: none;
911+
}
912+
&:active, &:checked, &:hover:active, &:hover:checked {
913+
@include button(undecorated);
914+
background-color: $selected_bg_color;
915+
color: $selected_fg_color;
916+
box-shadow: none;
917+
}
918+
}
919+
}
878920
}

gtk/src/Stilo/gtk-3.0/gtk-dark.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2166,3 +2166,19 @@ list.tweak-categories separator { background: transparent; }
21662166
.table-header { padding: 4px 0 4px 0; min-height: 24px; }
21672167

21682168
.nemo-window .nemo-window-pane widget.entry { border: 1px solid; border-radius: 0; box-shadow: inset 0 0 0 1px #4a79c7; border-color: #4a79c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2169+
2170+
.nemo-window .sidebar scrolledwindow.frame.nemo-places-sidebar { border: none; }
2171+
2172+
.nemo-window .primary-toolbar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
2173+
2174+
.nemo-window .primary-toolbar button:hover { color: #f6f6f7; outline-color: rgba(246, 246, 247, 0.3); border-color: transparent; background-color: #484d50; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2175+
2176+
.nemo-window .primary-toolbar button:active, .nemo-window .primary-toolbar button:checked, .nemo-window .primary-toolbar button:hover:active, .nemo-window .primary-toolbar button:hover:checked { color: #f6f6f7; outline-color: rgba(246, 246, 247, 0.3); border-color: #040505; background-image: image(#18191a); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 2px rgba(0, 0, 0, 0.04); text-shadow: none; -gtk-icon-shadow: none; }
2177+
2178+
.nemo-window .primary-toolbar button:active:hover, .nemo-window .primary-toolbar button:checked:hover, .nemo-window .primary-toolbar button:hover:active:hover, .nemo-window .primary-toolbar button:hover:checked:hover { background-image: image(#0e0f10); }
2179+
2180+
.nemo-window .path-bar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; border-radius: 0; border: 1px solid transparent; margin: 0 2px; }
2181+
2182+
.nemo-window .path-bar button:hover { background-color: rgba(74, 121, 199, 0.3); border: 1px solid #4a79c7; color: #f6f6f7; box-shadow: none; }
2183+
2184+
.nemo-window .path-bar button:active, .nemo-window .path-bar button:checked, .nemo-window .path-bar button:hover:active, .nemo-window .path-bar button:hover:checked { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; background-color: #4a79c7; color: #ffffff; box-shadow: none; }

gtk/src/Stilo/gtk-3.0/gtk-stiloetto-dark.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2166,3 +2166,19 @@ list.tweak-categories separator { background: transparent; }
21662166
.table-header { padding: 4px 0 4px 0; min-height: 24px; }
21672167

21682168
.nemo-window .nemo-window-pane widget.entry { border: 1px solid; border-radius: 2px; box-shadow: inset 0 0 0 1px #4a79c7; border-color: #4a79c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2169+
2170+
.nemo-window .sidebar scrolledwindow.frame.nemo-places-sidebar { border: none; }
2171+
2172+
.nemo-window .primary-toolbar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
2173+
2174+
.nemo-window .primary-toolbar button:hover { color: #f6f6f7; outline-color: rgba(246, 246, 247, 0.3); border-color: transparent; background-color: #484d50; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2175+
2176+
.nemo-window .primary-toolbar button:active, .nemo-window .primary-toolbar button:checked, .nemo-window .primary-toolbar button:hover:active, .nemo-window .primary-toolbar button:hover:checked { color: #f6f6f7; outline-color: rgba(246, 246, 247, 0.3); border-color: #040505; background-image: image(#18191a); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 2px rgba(0, 0, 0, 0.04); text-shadow: none; -gtk-icon-shadow: none; }
2177+
2178+
.nemo-window .primary-toolbar button:active:hover, .nemo-window .primary-toolbar button:checked:hover, .nemo-window .primary-toolbar button:hover:active:hover, .nemo-window .primary-toolbar button:hover:checked:hover { background-image: image(#0e0f10); }
2179+
2180+
.nemo-window .path-bar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; border-radius: 2px; border: 1px solid transparent; margin: 0 2px; }
2181+
2182+
.nemo-window .path-bar button:hover { background-color: rgba(74, 121, 199, 0.3); border: 1px solid #4a79c7; color: #f6f6f7; box-shadow: none; }
2183+
2184+
.nemo-window .path-bar button:active, .nemo-window .path-bar button:checked, .nemo-window .path-bar button:hover:active, .nemo-window .path-bar button:hover:checked { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; background-color: #4a79c7; color: #ffffff; box-shadow: none; }

gtk/src/Stilo/gtk-3.0/gtk-stiloetto.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,3 +2116,19 @@ list.tweak-categories separator { background: transparent; }
21162116
.table-header { padding: 4px 0 4px 0; min-height: 24px; }
21172117

21182118
.nemo-window .nemo-window-pane widget.entry { border: 1px solid; border-radius: 2px; box-shadow: inset 0 0 0 1px #3665b3; border-color: #3665b3; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2119+
2120+
.nemo-window .sidebar scrolledwindow.frame.nemo-places-sidebar { border: none; }
2121+
2122+
.nemo-window .primary-toolbar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
2123+
2124+
.nemo-window .primary-toolbar button:hover { color: #3C3C3C; outline-color: rgba(60, 60, 60, 0.3); border-color: transparent; background-color: white; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2125+
2126+
.nemo-window .primary-toolbar button:active, .nemo-window .primary-toolbar button:checked, .nemo-window .primary-toolbar button:hover:active, .nemo-window .primary-toolbar button:hover:checked { color: #3C3C3C; outline-color: rgba(60, 60, 60, 0.3); border-color: #9c9c9f; background-image: image(#cdcdcf); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 2px rgba(0, 0, 0, 0.04); text-shadow: none; -gtk-icon-shadow: none; }
2127+
2128+
.nemo-window .primary-toolbar button:active:hover, .nemo-window .primary-toolbar button:checked:hover, .nemo-window .primary-toolbar button:hover:active:hover, .nemo-window .primary-toolbar button:hover:checked:hover { background-image: image(#c3c3c5); }
2129+
2130+
.nemo-window .path-bar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; border-radius: 2px; border: 1px solid transparent; margin: 0 2px; }
2131+
2132+
.nemo-window .path-bar button:hover { background-color: #b3c7e8; border: 1px solid #8caadc; color: #3C3C3C; box-shadow: none; }
2133+
2134+
.nemo-window .path-bar button:active, .nemo-window .path-bar button:checked, .nemo-window .path-bar button:hover:active, .nemo-window .path-bar button:hover:checked { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; background-color: #3665b3; color: #ffffff; box-shadow: none; }

gtk/src/Stilo/gtk-3.0/gtk.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,3 +2116,19 @@ list.tweak-categories separator { background: transparent; }
21162116
.table-header { padding: 4px 0 4px 0; min-height: 24px; }
21172117

21182118
.nemo-window .nemo-window-pane widget.entry { border: 1px solid; border-radius: 0; box-shadow: inset 0 0 0 1px #3665b3; border-color: #3665b3; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2119+
2120+
.nemo-window .sidebar scrolledwindow.frame.nemo-places-sidebar { border: none; }
2121+
2122+
.nemo-window .primary-toolbar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
2123+
2124+
.nemo-window .primary-toolbar button:hover { color: #3C3C3C; outline-color: rgba(60, 60, 60, 0.3); border-color: transparent; background-color: white; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
2125+
2126+
.nemo-window .primary-toolbar button:active, .nemo-window .primary-toolbar button:checked, .nemo-window .primary-toolbar button:hover:active, .nemo-window .primary-toolbar button:hover:checked { color: #3C3C3C; outline-color: rgba(60, 60, 60, 0.3); border-color: #9c9c9f; background-image: image(#cdcdcf); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 2px rgba(0, 0, 0, 0.04); text-shadow: none; -gtk-icon-shadow: none; }
2127+
2128+
.nemo-window .primary-toolbar button:active:hover, .nemo-window .primary-toolbar button:checked:hover, .nemo-window .primary-toolbar button:hover:active:hover, .nemo-window .primary-toolbar button:hover:checked:hover { background-image: image(#c3c3c5); }
2129+
2130+
.nemo-window .path-bar button { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; border-radius: 0; border: 1px solid transparent; margin: 0 2px; }
2131+
2132+
.nemo-window .path-bar button:hover { background-color: #b3c7e8; border: 1px solid #8caadc; color: #3C3C3C; box-shadow: none; }
2133+
2134+
.nemo-window .path-bar button:active, .nemo-window .path-bar button:checked, .nemo-window .path-bar button:hover:active, .nemo-window .path-bar button:hover:checked { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; background-color: #3665b3; color: #ffffff; box-shadow: none; }

gtk/src/Stiloetto-dark/gtk-2.0/gtkrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ style "default" {
112112
# Documentation: https://wiki.ubuntu.com/Artwork/Documentation/Murrine#The_Murrine_Engine
113113
engine "murrine" {
114114
animation = FALSE
115-
arrowstyle = 0
115+
arrowstyle = 1
116116
border_shades = {1.0,1.0}
117117
cellstyle = 0
118118
colorize_scrollbar = TRUE

gtk/src/Stiloetto/gtk-2.0/gtkrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ style "default" {
112112
# Documentation: https://wiki.ubuntu.com/Artwork/Documentation/Murrine#The_Murrine_Engine
113113
engine "murrine" {
114114
animation = FALSE
115-
arrowstyle = 0
115+
arrowstyle = 1
116116
border_shades = {1.0,1.0}
117117
cellstyle = 0
118118
colorize_scrollbar = TRUE

0 commit comments

Comments
 (0)