forked from linuxmint/nemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request linuxmint#188 from mtwebster/breadcrumbs-themes-suck
Fix breadcrumb rendering for all themes.
- Loading branch information
Showing
8 changed files
with
163 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Development: 1/22/2013: | ||
|
||
- Breadcrumbs: Stylable by themes, see src/nemo-styles-fallback.css for default style information. | ||
Border radius, color, background color, and text color can be customized through that. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.breadcrumbs-no-displacement { | ||
-GtkButton-child-displacement-x: 0; | ||
-GtkButton-child-displacement-y: 0; | ||
} | ||
|
||
.nemo-inactive-pane .view { | ||
background-color: shade(@theme_base_color, 0.9); | ||
} | ||
|
||
/* for nemo-cell-renderer-disk.c */ | ||
|
||
.nemo-disk-renderer-bg { | ||
border-radius: 1px; | ||
border-style: solid; | ||
border-width: 1px; | ||
border-color: shade(@theme_bg_color, .65); | ||
} | ||
|
||
.nemo-disk-renderer-bg row:selected { | ||
border-radius: 1px; | ||
border-style: solid; | ||
border-width: 1px; | ||
border-color: shade(@theme_bg_color, 2.0); | ||
} | ||
|
||
.nemo-disk-renderer-fg { | ||
border-radius: 1px; | ||
border-style: solid; | ||
border-width: 1px; | ||
border-color: shade(@theme_selected_bg_color, 1.0); | ||
} | ||
|
||
.nemo-disk-renderer-fg row:selected { | ||
border-radius: 1px; | ||
border-style: solid; | ||
border-width: 1px; | ||
border-color: shade(@theme_fg_color, 2.0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
.nemo-pathbar-button, | ||
NemoPathbarButton { | ||
background-image: -gtk-gradient(linear, left top, left bottom, | ||
color-stop (0, shade(alpha(@bg_color, 0.8), 1.1)), | ||
color-stop (.3, shade(alpha(@bg_color, 0.8), 1.1)), | ||
color-stop (.7, shade(alpha(@bg_color, 0.8), 0.90)), | ||
color-stop (1, shade(alpha(@bg_color, 0.8), 0.80))); | ||
border-color: #808080; | ||
-NemoPathbarButton-border-radius: 3px; | ||
} | ||
|
||
NemoPathbarButton:active { | ||
background-image: -gtk-gradient(linear, left top, left bottom, | ||
color-stop (0, shade(alpha(@bg_color, 0.8), .8)), | ||
color-stop (.3, shade(alpha(@bg_color, 0.8), .9)), | ||
color-stop (1, shade(alpha(@bg_color, 0.8), 1.0))); | ||
border-color: #808080; | ||
} | ||
|
||
NemoPathbarButton:hover { | ||
background-image: -gtk-gradient(linear, left top, left bottom, | ||
color-stop (0, shade(alpha(@selected_bg_color, 0.8), 1.25)), | ||
color-stop (.3, shade(alpha(@selected_bg_color, 0.8), 1.25)), | ||
color-stop (.7, shade(alpha(@selected_bg_color, 0.8), 0.95)), | ||
color-stop (1, shade(alpha(@selected_bg_color, 0.8), 0.85))); | ||
border-color: #808080; | ||
} | ||
|
||
NemoPathbarButton:active:hover { | ||
background-image: -gtk-gradient(linear, left top, left bottom, | ||
color-stop (0, shade(alpha(@selected_bg_color, 0.8), .80)), | ||
color-stop (.3, shade(alpha(@selected_bg_color, 0.8), .95)), | ||
color-stop (1, shade(alpha(@selected_bg_color, 0.8), 1.25))); | ||
border-color: #808080; | ||
} |
Oops, something went wrong.