This commit is contained in:
Sam Hewitt 2015-02-23 17:58:10 -05:00
parent ee9fe2c020
commit f3c97a66e8
3 changed files with 21 additions and 8 deletions

View File

@ -16,7 +16,7 @@
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/. * with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/ */
@define-color disks #9B26AF; @define-color disks #7C5183;
/********** /**********
* Header * * Header *
@ -25,6 +25,7 @@
GduWindow .titlebar, GduWindow .titlebar,
GduWindow .header-bar { GduWindow .header-bar {
background-color: @disks; background-color: @disks;
color: @text;
} }
GduWindow .titlebar:backdrop, GduWindow .titlebar:backdrop,
@ -32,10 +33,13 @@ GduWindow .header-bar:backdrop {
background-color: shade(@disks,0.9); background-color: shade(@disks,0.9);
} }
GduVolumeGrid *:active, GduVolumeGrid .toolbar {
GduVolumeGrid *:focus, background-color: @disks;
GduVolumeGrid *:selected { }
background-color: @selection;
color: @selection_foreground; GduVolumeGrid,
GduVolumeGrid:*,
GduVolumeGrid * {
color: @text;
} }

View File

@ -71,7 +71,7 @@ CcShellItemView .button {
* Iconview * * Iconview *
************/ ************/
CcWindow GtkIconView.view.cell { /*CcWindow GtkIconView.view.cell {
border: none; border: none;
} }
@ -85,7 +85,7 @@ CcWindow GtkIconView.view.cell:selected,
CcWindow GtkIconView.view.cell:selected:focus { CcWindow GtkIconView.view.cell:selected:focus {
border: 1px solid @settings; border: 1px solid @settings;
background-color: @settings; background-color: @settings;
} }*/
/************ /************
@ -138,4 +138,8 @@ CcWindow .button.list-row:active:selected:hover {
CcWindow .button.list-row:hover:selected { CcWindow .button.list-row:hover:selected {
background-color: alpha(@settings, 0.2); background-color: alpha(@settings, 0.2);
color: @settings; color: @settings;
}
CcNetworkPanel GtkNotebook > .frame {
border: none;
} }

View File

@ -56,6 +56,11 @@
font: Bold 11; font: Bold 11;
} }
.titlebar .subtitle {
color: @header_text;
}
.titlebar .subtitle:backdrop,
.titlebar .title:backdrop { .titlebar .title:backdrop {
color: @backdrop_header_text; color: @backdrop_header_text;
} }