]> git.proxmox.com Git - sencha-touch.git/blob - src/resources/themes/vendor/compass-recipes/stylesheets/recipes/background/_radial-overlay.scss
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / resources / themes / vendor / compass-recipes / stylesheets / recipes / background / _radial-overlay.scss
1 /**
2 * Background overlay inspired by Google Chrome modal overlay
3 *
4 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
5 */
6
7 @import "compass/css3/images";
8
9 @mixin background-radial-overlay(
10 $background-color: rgba(#000, .7),
11 $foreground-color: rgba(#7f7f7f, .5),
12 $radial-change-color-distance: 35%)
13 {
14 @include background-image(radial-gradient($foreground-color, $foreground-color $radial-change-color-distance, $background-color));
15 }