From 26913120672ed9a11104a65367e09d35ca71bc80 Mon Sep 17 00:00:00 2001 From: Boris Kaiser Date: Fri, 19 Aug 2011 13:27:00 +0200 Subject: [PATCH 1/4] update PIE.htc to Version 1.0beta4 --- frameworks/compass/templates/pie/PIE.htc | 132 ++++++++++++----------- 1 file changed, 68 insertions(+), 64 deletions(-) diff --git a/frameworks/compass/templates/pie/PIE.htc b/frameworks/compass/templates/pie/PIE.htc index cfcfd79d..b39af01a 100644 --- a/frameworks/compass/templates/pie/PIE.htc +++ b/frameworks/compass/templates/pie/PIE.htc @@ -1,6 +1,6 @@ @@ -10,68 +10,72 @@ Dual-licensed for use under the Apache License Version 2.0 or the General Public From 6dbce65e3280377c4007d40dcfb35d88f0051aa8 Mon Sep 17 00:00:00 2001 From: Boris Kaiser Date: Sun, 11 Sep 2011 09:23:39 +0200 Subject: [PATCH 2/4] update PIE.htc to Version 1.0beta5 --- frameworks/compass/templates/pie/PIE.htc | 151 +++++++++++++---------- 1 file changed, 83 insertions(+), 68 deletions(-) diff --git a/frameworks/compass/templates/pie/PIE.htc b/frameworks/compass/templates/pie/PIE.htc index b39af01a..00b63838 100644 --- a/frameworks/compass/templates/pie/PIE.htc +++ b/frameworks/compass/templates/pie/PIE.htc @@ -1,81 +1,96 @@ + From 7fced9373e2e4047f53cd49c4fc21eb49109a7a8 Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Mon, 12 Sep 2011 14:36:40 -0600 Subject: [PATCH 3/4] added detail to rhythm-border documentation. --- .../stylesheets/compass/typography/_vertical_rhythm.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss b/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss index ba733b26..79c15ec8 100644 --- a/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +++ b/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss @@ -149,7 +149,8 @@ $base-half-leader: $base-leader / 2; @include trailer($trailer, $font-size); } -// Apply a border width to any side without destroying the vertical rhythm +// Apply a border width to any side without destroying the vertical rhythm. +// The available space ($lines) must be greater than the width of your border. @mixin apply-side-rhythm-border($side, $width: 1px, $lines: 1, $font-size: $base-font-size, $border-style: $default-rhythm-border-style) { @if not $relative-font-sizing and $font-size != $base-font-size { @warn "$relative-font-sizing is false but a relative font size was passed to apply-side-rhythm-border"; From 1dd2563484a89e8102ff2e43baeb66afadd68601 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 12 Sep 2011 14:56:05 -0700 Subject: [PATCH 4/4] Use the default compass images directory in the spriting tutorial --- doc-src/content/help/tutorials/spriting.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc-src/content/help/tutorials/spriting.markdown b/doc-src/content/help/tutorials/spriting.markdown index 82874aef..5d5b7c1e 100644 --- a/doc-src/content/help/tutorials/spriting.markdown +++ b/doc-src/content/help/tutorials/spriting.markdown @@ -15,10 +15,10 @@ of several convenient ways. For this tutorial, let's imagine that in your project's image folder there are four icons: -* `public/images/icon/new.png` -* `public/images/icon/edit.png` -* `public/images/icon/save.png` -* `public/images/icon/delete.png` +* `images/icon/new.png` +* `images/icon/edit.png` +* `images/icon/save.png` +* `images/icon/delete.png` Each is an icon that is 32px square. @@ -89,7 +89,7 @@ magic, some people are scared by it, and others are curious about how the magic you would like to avoid the magic, you can use compass to generate an import for you. On the command line: - compass sprite "public/images/icon/*.png" + compass sprite "images/icon/*.png" This will create file using your project's preferred syntax, or you can specify the output filename using the `-f` option and the syntax will be inferred from the extension.