Sha256: 5d96ecc57751df53f1ae47b7b2005f63837b75d8cfae43d4419c371158e03c96
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
// User Interface ------------------------------------------------------------ // This file can be expanded to handle all the user interface properties as // they become available in browsers: // http://www.w3.org/TR/2000/WD-css3-userint-20000216 @import "shared"; // This property controls the selection model and granularity of an element. // // @param $select // [ none | text | toggle | element | elements | all | inherit ] @mixin user-select($select) { $select: unquote($select); @include experimental(user-select, $select, -moz, -webkit, not -o, not -ms, -khtml, official ); } // Style the html5 input placeholder in browsers that support it. // // The styles for the input placeholder are passed as mixin content. // For example: // // @include input-placeholder { // color: #bfbfbf; // font-style: italic; // } @mixin input-placeholder { @if $experimental-support-for-webkit { &::-webkit-input-placeholder { @content; } } @if $experimental-support-for-mozilla { &:-moz-placeholder { @content; } } @if $experimental-support-for-microsoft { &:-ms-input-placeholder { @content; } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
compass-0.13.alpha.0 | frameworks/compass/stylesheets/compass/css3/_user-interface.scss |