Q
Version: 1.0.1
Source on Github

Compass Appearance

Provides a mixin for appearance. See the CSS3 specification: appearance.

This file can be imported using: @import "compass/css3/appearance"

Imports

  1. Browser Support – Provides configuration options for the Compass Browser Support Matrix.

Mixins

view source

=appearance($appearance)
  // There is no caniuse tracking for appearance.
  $appearance: unquote($appearance)
  +with-prefix(-moz)
    -moz-appearance: $appearance

  +with-prefix(-webkit)
    -webkit-appearance: $appearance
@mixin appearance($appearance) {
  // There is no caniuse tracking for appearance.
  $appearance: unquote($appearance);
  @include with-prefix(-moz) {
    -moz-appearance: $appearance;
  }

  @include with-prefix(-webkit) {
    -webkit-appearance: $appearance;
  }
}

Change the appearance for Mozilla, Webkit and possibly the future. The appearance property is currently not present in any newer CSS specification.

There is no official list of accepted values, but you might check these source: