github.com/sym3tri/etcd@v0.2.1-0.20140422215517-a563d82f95d6/mod/dashboard/app/coreos-web/sass/mixin/_prefix.scss (about)

     1  // Generic mixin to apply vendor prefixes an arbitrary CSS properties.
     2  
     3  @mixin co-x-prefix($property, $value) {
     4    #{$property}: $value;
     5    -webkit-#{$property}: $value;
     6    -moz-#{$property}: $value;
     7    -ms-#{$property}: $value;
     8    -o-#{$property}: $value;
     9  }