Sha256: 26d96eef45dfce3ece5871e3c82556ca410081215779c4914b3c4c88b6c9c4ab

Contents?: true

Size: 1.25 KB

Versions: 29

Compression:

Stored size: 1.25 KB

Contents

@mixin placeholder {
    &.placeholder { @content; }
    &:-moz-placeholder { @content; }
    &::-moz-placeholder { @content; }
    &:-ms-input-placeholder { @content; }
    &::-webkit-input-placeholder { @content; }
}

@mixin transform($transformations...) {
    -ms-transform: $transformations;
    -webkit-transform: $transformations;
    -moz-transform: $transformations;
    transform: $transformations;
}

@mixin transition($transitions...) {
    -ms-transition: $transitions;
    -moz-transition: $transitions;
    -webkit-transition: $transitions;
    transition: $transitions;
}

@mixin box-shadow($box-shadows...) {
    -webkit-box-shadow: $box-shadows;
    -moz-box-shadow: $box-shadows;
    box-shadow: $box-shadows;
}

@mixin filter($filter...) {
    -webkit-filter: $filter;
    -moz-filter: $filter;
    -o-filter: $filter;
    -ms-filter: $filter;
    filter: $filter;
}

@mixin user-select($value) {
    -webkit-user-select: $value;
    -moz-user-select: $value;
    -ms-user-select: $value;
    user-select: $value;
}

@mixin appearance($value) {
    -webkit-appearance: $value;
    -moz-appearance: $value;
    appearance: $value;
}

@mixin border-radius($radius) {
    -webkit-border-radius: $radius;
    -moz-border-radius: $radius;
    border-radius: $radius;
}

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
eucalypt-0.3.1 lib/eucalypt/core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.3.0 lib/eucalypt/core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.2.2 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.2.1 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.2.0 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.1.3 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.1.2 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.1.1 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
eucalypt-0.1.0 lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss