From: Harris Lapiroff Date: Fri, 10 Jun 2011 14:44:50 +0000 (-0400) Subject: Added shadows to windows, woooooo. X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/6c54cf639cfab9d8d500fc242c593a155630c5dd?ds=sidebyside;hp=--cc Added shadows to windows, woooooo. --- 6c54cf639cfab9d8d500fc242c593a155630c5dd diff --git a/philo/contrib/gilbert/static/gilbert/murano/css/murano.css b/philo/contrib/gilbert/static/gilbert/murano/css/murano.css index 805ca54..a4fef18 100644 --- a/philo/contrib/gilbert/static/gilbert/murano/css/murano.css +++ b/philo/contrib/gilbert/static/gilbert/murano/css/murano.css @@ -170,10 +170,10 @@ body { -ms-border-radius: 6px 6px 0 0; -khtml-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; - -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; - -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; - -o-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; + -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 3px 8px 0 rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; + -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 3px 8px 0 rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; + -o-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 3px 8px 0 rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.425), 0 3px 8px 0 rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.425) inset; border: 1px solid rgba(255, 255, 255, 0.5); border-top-color: white; } diff --git a/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_window.scss b/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_window.scss index a39e244..687bd2b 100644 --- a/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_window.scss +++ b/philo/contrib/gilbert/static/gilbert/murano/sass/murano/components/_window.scss @@ -1,7 +1,7 @@ .x-window{ background: $base-background-color; @include border-radius($base-border-radius-width $base-border-radius-width 0 0); - @include box-shadow(0 0 0 1px bla($base-background-alpha*.5), 0 0 0 1px bla($base-background-alpha*.5) inset); + @include box-shadow(0 0 0 1px bla($base-background-alpha*.5), 0 3px 8px 0 bla(.35), 0 0 0 1px bla($base-background-alpha*.5) inset); border:1px solid wha(.5); border-top-color: wha(1); }