From 9170c1395eb8e8c8be5dfdf2e77eefc4a5ee2db4 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 3 May 2010 19:04:05 -0700 Subject: [PATCH] Remove unecessary quotes from examples --- .../compass/css3/background-clip/stylesheet.sass | 4 ++-- .../css3/background-origin/stylesheet.sass | 6 +++--- .../compass/css3/background-size/stylesheet.sass | 10 +++++----- .../compass/css3/box_sizing/stylesheet.sass | 4 ++-- .../compass/css3/columns/stylesheet.sass | 2 +- .../compass/css3/font-face/stylesheet.sass | 1 + .../compass/css3/gradient/stylesheet.sass | 4 ++-- .../compass/css3/transition/stylesheet.sass | 16 ++++++++-------- 8 files changed, 24 insertions(+), 23 deletions(-) diff --git a/doc-src/content/examples/compass/css3/background-clip/stylesheet.sass b/doc-src/content/examples/compass/css3/background-clip/stylesheet.sass index 9658fa77..97c84ea6 100644 --- a/doc-src/content/examples/compass/css3/background-clip/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/background-clip/stylesheet.sass @@ -10,6 +10,6 @@ text-align: center margin-bottom: 2em #padding-box - +background-clip("padding-box") + +background-clip(padding-box) #border-box - +background-clip("border-box") + +background-clip(border-box) diff --git a/doc-src/content/examples/compass/css3/background-origin/stylesheet.sass b/doc-src/content/examples/compass/css3/background-origin/stylesheet.sass index c4a9b2b8..27f90acb 100644 --- a/doc-src/content/examples/compass/css3/background-origin/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/background-origin/stylesheet.sass @@ -14,8 +14,8 @@ text-align: center margin-bottom: 2em #padding-box - +background-origin("padding-box") + +background-origin(padding-box) #border-box - +background-origin("border-box") + +background-origin(border-box) #content-box - +background-origin("content-box") \ No newline at end of file + +background-origin(content-box) \ No newline at end of file diff --git a/doc-src/content/examples/compass/css3/background-size/stylesheet.sass b/doc-src/content/examples/compass/css3/background-size/stylesheet.sass index e6edcb07..acee1745 100644 --- a/doc-src/content/examples/compass/css3/background-size/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/background-size/stylesheet.sass @@ -14,12 +14,12 @@ text-align: center margin-bottom: 2em #auto - +background-size("auto") + +background-size(auto) #contain - +background-size("contain") + +background-size(contain) #cover - +background-size("cover") + +background-size(cover) #percent - +background-size("50% 50%") + +background-size(50% 50%) #absolute - +background-size("100px 25px") \ No newline at end of file + +background-size(100px 25px) \ No newline at end of file diff --git a/doc-src/content/examples/compass/css3/box_sizing/stylesheet.sass b/doc-src/content/examples/compass/css3/box_sizing/stylesheet.sass index 5be4cd9f..87fcaed2 100644 --- a/doc-src/content/examples/compass/css3/box_sizing/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/box_sizing/stylesheet.sass @@ -8,7 +8,7 @@ width: 200px #content-box - +box-sizing('content-box') + +box-sizing(content-box) #border-box - +box-sizing('border-box') \ No newline at end of file + +box-sizing(border-box) \ No newline at end of file diff --git a/doc-src/content/examples/compass/css3/columns/stylesheet.sass b/doc-src/content/examples/compass/css3/columns/stylesheet.sass index 3580b935..3a6e7b33 100644 --- a/doc-src/content/examples/compass/css3/columns/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/columns/stylesheet.sass @@ -12,6 +12,6 @@ #four-column-with-rule +column-count(4) - +column-rule(1px, "solid", red) + +column-rule(1px, solid, red) width: 300px margin-bottom: 20px \ No newline at end of file diff --git a/doc-src/content/examples/compass/css3/font-face/stylesheet.sass b/doc-src/content/examples/compass/css3/font-face/stylesheet.sass index 767f6c3d..1dfc4b59 100644 --- a/doc-src/content/examples/compass/css3/font-face/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/font-face/stylesheet.sass @@ -1,6 +1,7 @@ @import compass/css3 +font-face("Angelina", font-files("examples/angelina.ttf", "truetype")) + .example font-family: "Angelina" padding: 1em diff --git a/doc-src/content/examples/compass/css3/gradient/stylesheet.sass b/doc-src/content/examples/compass/css3/gradient/stylesheet.sass index 1d3907f3..a827b866 100644 --- a/doc-src/content/examples/compass/css3/gradient/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/gradient/stylesheet.sass @@ -12,7 +12,7 @@ // This yields a linear gradient spanning from the upper left corner to the lower right corner #linear-gradient - +linear-gradient(color-stops(#fff, #ddd), "left top") + +linear-gradient(color-stops(#fff, #ddd), left top) // This yields a gradient starting at the top with #fff, ending in #aaa #v-gradient @@ -28,4 +28,4 @@ // This yields a horizontal linear gradient spanning from left to right. #h-gradient - +linear-gradient(color-stops(#fff, #ddd), "left") + +linear-gradient(color-stops(#fff, #ddd), left) diff --git a/doc-src/content/examples/compass/css3/transition/stylesheet.sass b/doc-src/content/examples/compass/css3/transition/stylesheet.sass index 9b71b263..f7aaa5b6 100644 --- a/doc-src/content/examples/compass/css3/transition/stylesheet.sass +++ b/doc-src/content/examples/compass/css3/transition/stylesheet.sass @@ -7,29 +7,29 @@ margin: 20px #width - +transition-property('width') + +transition-property(width) #width:hover width: 80px #width-duration - +transition-property('width') - +transition-duration('2s') + +transition-property(width) + +transition-duration(2s) #width-duration:hover width: 80px #width-duration-easein - +transition-property('width') - +transition-duration('2s') - +transition-timing-function('ease-in') + +transition-property(width) + +transition-duration(2s) + +transition-timing-function(ease-in) #width-duration-easein:hover width: 80px #width-delay - +transition-property('width') - +transition-delay('2s') + +transition-property(width) + +transition-delay(2s) #width-delay:hover width: 80px \ No newline at end of file