From 2828342821c4a2999c32a835b025715ec39b5c0b Mon Sep 17 00:00:00 2001 From: Derek Myers Date: Wed, 12 Nov 2014 14:14:20 -0600 Subject: [PATCH] Changed text shadows to use mixin --- source/stylesheets/screen.css.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/stylesheets/screen.css.scss b/source/stylesheets/screen.css.scss index f9fd16e..6880e1b 100644 --- a/source/stylesheets/screen.css.scss +++ b/source/stylesheets/screen.css.scss @@ -483,7 +483,7 @@ html, body { aside { padding-top: 1em; padding-bottom: 1em; - text-shadow: 0 1px 0 lighten($aside-notice-bg, 15%); + @include text-shadow(0 1px 0 lighten($aside-notice-bg, 15%)); margin-top: 1.5em; margin-bottom: 1.5em; background: $aside-notice-bg; @@ -491,12 +491,12 @@ html, body { &.warning { background-color: $aside-warning-bg; - text-shadow: 0 1px 0 lighten($aside-warning-bg, 15%); + @include text-shadow(0 1px 0 lighten($aside-warning-bg, 15%)); } &.success { background-color: $aside-success-bg; - text-shadow: 0 1px 0 lighten($aside-success-bg, 15%); + @include text-shadow(0 1px 0 lighten($aside-success-bg, 15%)); } } @@ -523,7 +523,7 @@ html, body { margin: -2px; border-radius: 4px; border: 1px solid #F7E633; - text-shadow: 1px 1px 0 #666; + @include text-shadow(1px 1px 0 #666); @include background(linear-gradient(bottom right, #F7E633 0%, #F1D32F 100%)); } }