Browse Source

Compass mixins 0.12.3

master
Guillaume 11 years ago
parent
commit
df18947d5a
  1. 2
      bower.json
  2. 1
      lib/_animate.scss
  3. 1
      lib/_compass.scss
  4. 1
      lib/compass/_css3.scss
  5. 5
      lib/compass/css3/_appearance.scss
  6. 2
      lib/compass/css3/_box.scss
  7. 9
      lib/compass/css3/_columns.scss
  8. 2
      lib/compass/css3/_font-face.scss
  9. 2
      lib/compass/css3/_images.scss

2
bower.json

@ -1,6 +1,6 @@
{ {
"name": "compass-mixins", "name": "compass-mixins",
"version": "0.12.2", "version": "0.12.3",
"authors": [ "authors": [
"Guillaume Balaine <igosuki@gmail.com>" "Guillaume Balaine <igosuki@gmail.com>"
], ],

1
lib/_animate.scss vendored

@ -0,0 +1 @@
@import "animation";

1
lib/_compass.scss

@ -1,4 +1,3 @@
@import "compass/utilities"; @import "compass/utilities";
@import "compass/typography"; @import "compass/typography";
@import "compass/css3"; @import "compass/css3";
@import "animation";

1
lib/compass/_css3.scss

@ -17,4 +17,3 @@
@import "css3/regions"; @import "css3/regions";
@import "css3/hyphenation"; @import "css3/hyphenation";
@import "css3/filter"; @import "css3/filter";
@import "css3/user-interface";

5
lib/compass/css3/_appearance.scss

@ -4,9 +4,8 @@
// The appearance property is currently not present in any newer CSS specification. // 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: // There is no official list of accepted values, but you might check these source:
// // Mozilla : https://developer.mozilla.org/en/CSS/-moz-appearance
// * [Mozilla](https://developer.mozilla.org/en/CSS/-moz-appearance) // Webkit : http://code.google.com/p/webkit-mirror/source/browse/Source/WebCore/css/CSSValueKeywords.in?spec=svnf1aea559dcd025a8946aa7da6e4e8306f5c1b604&r=63c7d1af44430b314233fea342c3ddb2a052e365
// * [Webkit](http://code.google.com/p/webkit-mirror/source/browse/Source/WebCore/css/CSSValueKeywords.in?spec=svnf1aea559dcd025a8946aa7da6e4e8306f5c1b604&r=63c7d1af44430b314233fea342c3ddb2a052e365)
// (search for 'appearance' within the page) // (search for 'appearance' within the page)
@mixin appearance($ap) { @mixin appearance($ap) {

2
lib/compass/css3/_box.scss

@ -64,7 +64,7 @@ $default-box-ordinal-group: 1 !default;
// mixin which takes an int argument for ordinal grouping and rearranging the order // mixin which takes an int argument for ordinal grouping and rearranging the order
@mixin box-ordinal-group( @mixin box-ordinal-group(
$group: $default-box-ordinal-group $group: $default-ordinal-flex-group
) { ) {
@include experimental(box-ordinal-group, $group, @include experimental(box-ordinal-group, $group,
-moz, -webkit, not -o, -ms, not -khtml, official -moz, -webkit, not -o, -ms, not -khtml, official

9
lib/compass/css3/_columns.scss

@ -32,15 +32,6 @@
); );
} }
// Specify how many columns an element should span across.
//
// * legal values are 1, all
@mixin column-span($columns) {
@include experimental(column-span, $columns,
-moz, -webkit, -o, -ms, not -khtml, official
);
}
// Specify the width of the rule between columns e.g. `1px` // Specify the width of the rule between columns e.g. `1px`
@mixin column-rule-width($width) { @mixin column-rule-width($width) {
@include experimental(column-rule-width, $width, @include experimental(column-rule-width, $width,

2
lib/compass/css3/_font-face.scss

@ -35,7 +35,7 @@
font-family: quote($name); font-family: quote($name);
@if $eot { @if $eot {
src: font-url($eot); src: font-url($eot);
$font-files: font-url($iefont) unquote("format('embedded-opentype')"), $font-files; $font-files: font-url($iefont) unquote("format('eot')"), $font-files;
} }
src: $font-files; src: $font-files;
@if $weight { @if $weight {

2
lib/compass/css3/_images.scss

@ -1,5 +1,5 @@
@import "shared"; @import "shared";
@import "../utilities/general/hacks"; @import "../../utilities/general/hacks";
// Background property support for vendor prefixing within values. // Background property support for vendor prefixing within values.
@mixin background( @mixin background(

Loading…
Cancel
Save