some stuff
This commit is contained in:
parent
8ced143c2f
commit
3ef6d303da
|
@ -44,6 +44,7 @@
|
|||
@import url("apps/gnome-tweak-tool.css");
|
||||
@import url("apps/gnome-weather.css");
|
||||
@import url("apps/logs.css");
|
||||
@import url("apps/midori.css");
|
||||
@import url("apps/nautilus.css");
|
||||
@import url("apps/pantheon.css");
|
||||
@import url("apps/rhythmbox.css");
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
/* Copyright 2015 Sam Hewitt.
|
||||
*
|
||||
* This file is part of the Paper GTK theme.
|
||||
*
|
||||
* The Paper GTK theme is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* The Paper GTK theme is distributed in the hope that it will be
|
||||
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||
* Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
|
||||
@define-color midori #5CCA10;
|
||||
|
||||
/**********
|
||||
* Header *
|
||||
**********/
|
||||
|
||||
MidoriBrowser .toolbar.primary-toolbar {
|
||||
background-color: @midori;
|
||||
}
|
||||
|
||||
MidoriBrowser .toolbar.primary-toolbar:backdrop {
|
||||
background-color: shade(@midori,0.9);
|
||||
}
|
||||
|
||||
|
||||
MidoriBrowser .toolbar.primary-toolbar .entry,
|
||||
MidoriBrowser .toolbar.primary-toolbar .entry:focus {
|
||||
background-color: @midori;
|
||||
}
|
||||
|
||||
MidoriBrowser .toolbar.primary-toolbar .entry:backdrop,
|
||||
MidoriBrowser .toolbar.primary-toolbar .entry:backdrop:focus {
|
||||
background-color: @midori; background-color: shade(@midori,0.9);
|
||||
}
|
||||
|
||||
|
||||
MidoriBrowser .toolbar.primary-toolbar .toolbar .entry:insensitive:backdrop,
|
||||
MidoriBrowser .toolbar.primary-toolbar .toolbar .entry:insensitive {
|
||||
color: @insensitive_header_text;
|
||||
}
|
|
@ -23,7 +23,8 @@
|
|||
GtkCalendar {
|
||||
padding: 2px;
|
||||
border-radius: 2px;
|
||||
background-color: shade(@background, 0.8)
|
||||
background-color: shade(@background, 0.8);
|
||||
color:@text;
|
||||
}
|
||||
|
||||
GtkCalendar.view {
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
.composited-indicator {
|
||||
background-color: transparent;
|
||||
color: #fff;
|
||||
color: @panel_text;
|
||||
}
|
||||
|
||||
.composited-indicator > GtkWidget > GtkWidget:first-child {
|
||||
|
|
|
@ -362,7 +362,8 @@
|
|||
color: @toolbar_text;
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .entry:focus {
|
||||
.primary-toolbar.toolbar .entry:focus,
|
||||
.primary-toolbar.toolbar .entry:focus:backdrop {
|
||||
color: @toolbar_text;
|
||||
border: solid @insensitive_toolbar_text;
|
||||
border-bottom-width: 1px;
|
||||
|
@ -381,7 +382,7 @@
|
|||
background-color:@toolbar;
|
||||
color: @backdrop_toolbar_text;
|
||||
border: solid @backdrop_toolbar_text;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
/* Images */
|
||||
|
|
Loading…
Reference in New Issue