Skip to content

Commit

Permalink
Added support for Stylus and updated other language documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagerfield committed Jun 19, 2012
1 parent c986ba1 commit 75af5f6
Show file tree
Hide file tree
Showing 12 changed files with 931 additions and 71 deletions.
4 changes: 0 additions & 4 deletions less/css3.less
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
//============================================================

.box-orient(...) {
.display-box();
-webkit-box-orient: @arguments;
-moz-box-orient: @arguments;
-ms-box-orient: @arguments;
Expand All @@ -109,7 +108,6 @@
//============================================================

.box-pack(...) {
.display-box();
-webkit-box-pack: @arguments;
-moz-box-pack: @arguments;
-ms-box-pack: @arguments;
Expand All @@ -135,7 +133,6 @@
//============================================================

.box-align(...) {
.display-box();
-webkit-box-align: @arguments;
-moz-box-align: @arguments;
-ms-box-align: @arguments;
Expand All @@ -157,7 +154,6 @@
//============================================================

.box-flex(...) {
.display-box();
-webkit-box-flex: @arguments;
-moz-box-flex: @arguments;
-ms-box-flex: @arguments;
Expand Down
6 changes: 1 addition & 5 deletions sass/css3.sass
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ $defaultOperaSupport: true
//============================================================
=box-orient($arguments)
+display-box
+prefix-property(box-orient, unquote($arguments))


Expand All @@ -159,7 +158,6 @@ $defaultOperaSupport: true
//============================================================
=box-pack($arguments)
+display-box
+prefix-property(box-pack, unquote($arguments))


Expand All @@ -180,7 +178,6 @@ $defaultOperaSupport: true
//============================================================
=box-align($arguments)
+display-box
+prefix-property(box-align, unquote($arguments))


Expand All @@ -197,7 +194,6 @@ $defaultOperaSupport: true
//============================================================
=box-flex($arguments)
+display-box
+prefix-property(box-flex, unquote($arguments))


Expand Down Expand Up @@ -237,7 +233,7 @@ $defaultOperaSupport: true
//============================================================
=user-select($arguments)
+prefix-property(box-sizing, unquote($arguments))
+prefix-property(user-select, unquote($arguments))
+prefix-property(touch-callout, unquote($arguments), true, false, false, false)


Expand Down
10 changes: 3 additions & 7 deletions scss/css3.scss
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ $defaultOperaSupport: true;
//============================================================

@mixin box-orient($arguments) {
@include display-box;
@include prefix-property(box-orient, unquote($arguments));
}

Expand All @@ -159,7 +158,6 @@ $defaultOperaSupport: true;
//============================================================

@mixin box-pack($arguments) {
@include display-box;
@include prefix-property(box-pack, unquote($arguments));
}

Expand All @@ -181,7 +179,6 @@ $defaultOperaSupport: true;
//============================================================

@mixin box-align($arguments) {
@include display-box;
@include prefix-property(box-align, unquote($arguments));
}

Expand All @@ -199,7 +196,6 @@ $defaultOperaSupport: true;
//============================================================

@mixin box-flex($arguments) {
@include display-box;
@include prefix-property(box-flex, unquote($arguments));
}

Expand Down Expand Up @@ -241,7 +237,7 @@ $defaultOperaSupport: true;
//============================================================

@mixin user-select($arguments) {
@include prefix-property(box-sizing, unquote($arguments));
@include prefix-property(user-select, unquote($arguments));
@include prefix-property(touch-callout, unquote($arguments), true, false, false, false);
}

Expand Down Expand Up @@ -347,7 +343,7 @@ $defaultOperaSupport: true;
// @param colorB : #000 50%, red 50%
// @param colorC : #000 100%, red 100%
//
// @example +linear-gradient("top, crimson 0%, black 100%")
// @example @include linear-gradient("top, crimson 0%, black 100%");
//
// @see http://dev.w3.org/csswg/css3-images/#linear-gradients
//
Expand All @@ -373,7 +369,7 @@ $defaultOperaSupport: true;
// @param colorB : #000 50%, red 50%
// @param colorC : #000 100%, red 100%
//
// @example +radial-gradient("50% 50%, circle, crimson 0%, black 100%")
// @example @include radial-gradient("50% 50%, circle, crimson 0%, black 100%");
//
// @see http://dev.w3.org/csswg/css3-images/#radial-gradients
//
Expand Down
Loading

0 comments on commit 75af5f6

Please sign in to comment.