diff options
| author | Ofer Lehr <ofer@oferlehr.com> | 2014-12-05 23:40:06 +0200 |
|---|---|---|
| committer | Ofer Lehr <ofer@oferlehr.com> | 2014-12-05 23:41:01 +0200 |
| commit | 37aa73b88961f6188d6608dd32eee32080d6c409 (patch) | |
| tree | 0200df39d7d831672b7a04a1da456dd6efdbae7c /res/css/partials/search-bar.scss | |
| parent | bcde522ed96dc407aa4b71f6842767fe69a95d50 (diff) | |
fixes #182
Also started using mixins for browser prefixes - box shadow and box
sizing
Diffstat (limited to 'res/css/partials/search-bar.scss')
| -rw-r--r-- | res/css/partials/search-bar.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/res/css/partials/search-bar.scss b/res/css/partials/search-bar.scss index 3fcbe378..cd671f33 100644 --- a/res/css/partials/search-bar.scss +++ b/res/css/partials/search-bar.scss @@ -1,10 +1,10 @@ +@import '../modules/mixins'; + .search-bar{ width:100%; height:$four-baselines; background: white; - -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); - -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); - box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); + @include rz-box-shadow(0px, 1px, 6px, 0px, rgba(0,0,0,0.3) ); z-index: 100; } |
