Added some shadow effects

pull/20/merge
Satyajit Sahoo 2013-02-27 14:50:12 +05:30
parent 273ab5dbe0
commit 10f85b968d
1 changed files with 10 additions and 0 deletions

View File

@ -114,6 +114,14 @@ GtkWindow {
* common effects * * common effects *
******************/ ******************/
/* inset shadow */ /* inset shadow */
.button:active,
.primary-toolbar .button:active {
box-shadow: inset 1px 0 alpha(@dark_shadow, 0.07),
inset 0 1px alpha(@dark_shadow, 0.08),
inset -1px 0 alpha(@dark_shadow, 0.07),
inset 0 -1px alpha(@dark_shadow, 0.05);
}
.entry { .entry {
box-shadow: inset 1px 0 alpha(@dark_shadow, 0.10), box-shadow: inset 1px 0 alpha(@dark_shadow, 0.10),
inset 0 1px alpha(@dark_shadow, 0.12), inset 0 1px alpha(@dark_shadow, 0.12),
@ -121,6 +129,8 @@ GtkWindow {
inset 0 -1px alpha(@dark_shadow, 0.05); inset 0 -1px alpha(@dark_shadow, 0.05);
} }
.button:active:insensitive,
.primary-toolbar .button:active:insensitive,
.entry:insensitive { .entry:insensitive {
box-shadow: none; box-shadow: none;
} }