Sha256: 6d4ed9b293920bc0a09d366f1b8dff24e467ec538001fe303298787da739d8d8

Contents?: true

Size: 710 Bytes

Versions: 11

Compression:

Stored size: 710 Bytes

Contents

//  Cross-browser mixins

// example: text-shadow(#333, 1px, 1px, 1)
@mixin text-shadow($color, $x, $y, $blur)
  text-shadow: $color $x $y #{$blur}px
  //:-ms-filter "progid:DXImageTransform.Microsoft.Shadow(Color=#{$color},Direction=135,Strength=#{$blur})"

// example: box-shadow(5px 5px 5px #000)
@mixin box-shadow($value)
  -webkit-box-shadow: $value
  -moz-box-shadow: $value
  box-shadow: $value

@mixin rounded-corners($radius)
  -moz-border-radius: $radius
  -webkit-border-radius: $radius
  border-radius: $radius

@mixin rounded-corner($vert, $side, $radius)
  -moz-border-radius-#{$vert}#{$side}: $radius
  -webkit-border-#{$vert}-#{$side}-radius: $radius
  border-#{$vert}-#{$side}-radius: $radius

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
manageable-0.1.4 app/assets/stylesheets/manageable/themes/activo/mixins.sass
manageable-0.1.3 app/assets/stylesheets/manageable/themes/activo/mixins.sass
manageable-0.1.2 app/assets/stylesheets/manageable/themes/activo/mixins.sass
manageable-0.1.1 app/assets/stylesheets/manageable/themes/activo/mixins.sass
activoate-0.8.1 app/assets/stylesheets/activo/mixins.sass
activoate-0.7.9 app/assets/stylesheets/activo/mixins.sass
activoate-0.7.5 app/assets/stylesheets/activo/mixins.sass
activoate-0.7.2 app/assets/stylesheets/activo/mixins.sass
activoate-0.6.8 app/assets/stylesheets/activo/mixins.sass
activoate-0.5.0 app/assets/stylesheets/activo-2/mixins.sass
activoate-0.4.5 app/assets/stylesheets/activo-2/mixins.sass