Merge branch 'master' of github.com:chriseppstein/compass
5
Gemfile
@ -7,8 +7,11 @@ gem "rails", "~>3.0.0.rc"
|
|||||||
gem "compass-validator", "3.0.0"
|
gem "compass-validator", "3.0.0"
|
||||||
gem "css_parser", "~> 1.0.1"
|
gem "css_parser", "~> 1.0.1"
|
||||||
gem "sass"
|
gem "sass"
|
||||||
|
gem "haml", "~> 3.1.alpha"
|
||||||
gem "rcov"
|
gem "rcov"
|
||||||
gem "rubyzip"
|
gem "rubyzip"
|
||||||
gem "livereload"
|
gem "livereload"
|
||||||
gem "chunky_png", "~> 0.10.1"
|
gem "chunky_png", "~> 0.10.1"
|
||||||
gem "ruby-prof"
|
|
||||||
|
gem "ruby-prof" unless RUBY_PLATFORM == "java"
|
||||||
|
|
||||||
|
2
Rakefile
@ -61,7 +61,7 @@ task :examples do
|
|||||||
puts "=" * "Compiling #{example}".length
|
puts "=" * "Compiling #{example}".length
|
||||||
Dir.chdir example do
|
Dir.chdir example do
|
||||||
load "bootstrap.rb" if File.exists?("bootstrap.rb")
|
load "bootstrap.rb" if File.exists?("bootstrap.rb")
|
||||||
Compass::Exec::SwitchUI.new(["--force"]).run!
|
Compass::Exec::SubCommandUI.new(%w(compile --force)).run!
|
||||||
end
|
end
|
||||||
# compile any haml templates to html
|
# compile any haml templates to html
|
||||||
FileList["#{example}/**/*.haml"].each do |haml_file|
|
FileList["#{example}/**/*.haml"].each do |haml_file|
|
||||||
|
@ -8,7 +8,7 @@ gem 'mime-types'
|
|||||||
gem 'serve', "1.0.0"
|
gem 'serve', "1.0.0"
|
||||||
gem 'nokogiri'
|
gem 'nokogiri'
|
||||||
gem 'coderay'
|
gem 'coderay'
|
||||||
gem 'sass', ">= 3.1.0.alpha.50", :git => "git://github.com/chriseppstein/sass.git"
|
gem 'sass', ">= 3.1.0.alpha.50"
|
||||||
gem 'fssm', '0.1.2'
|
gem 'fssm', '0.1.2'
|
||||||
gem 'haml', ">= 3.1.0.alpha.36"
|
gem 'haml', ">= 3.1.0.alpha.36"
|
||||||
gem 'rake'
|
gem 'rake'
|
||||||
|
@ -5,16 +5,10 @@ GIT
|
|||||||
nanoc3 (3.2.0a3)
|
nanoc3 (3.2.0a3)
|
||||||
cri (>= 1.0.0)
|
cri (>= 1.0.0)
|
||||||
|
|
||||||
GIT
|
|
||||||
remote: git://github.com/chriseppstein/sass.git
|
|
||||||
revision: c9de58c678644ec9b0ae5103ab595815e5aa4ecf
|
|
||||||
specs:
|
|
||||||
sass (3.1.0.alpha.50)
|
|
||||||
|
|
||||||
PATH
|
PATH
|
||||||
remote: ..
|
remote: ..
|
||||||
specs:
|
specs:
|
||||||
compass (0.11.alpha.4.02d6292)
|
compass (0.11.alpha.4.d67a43a)
|
||||||
chunky_png (~> 0.10.3)
|
chunky_png (~> 0.10.3)
|
||||||
sass (>= 3.1.0.alpha.50)
|
sass (>= 3.1.0.alpha.50)
|
||||||
|
|
||||||
@ -40,6 +34,7 @@ GEM
|
|||||||
rake (0.8.7)
|
rake (0.8.7)
|
||||||
rdiscount (1.6.5)
|
rdiscount (1.6.5)
|
||||||
ruby-prof (0.9.2)
|
ruby-prof (0.9.2)
|
||||||
|
sass (3.1.0.alpha.214)
|
||||||
serve (1.0.0)
|
serve (1.0.0)
|
||||||
activesupport (~> 3.0.1)
|
activesupport (~> 3.0.1)
|
||||||
i18n (~> 0.4.1)
|
i18n (~> 0.4.1)
|
||||||
@ -67,6 +62,6 @@ DEPENDENCIES
|
|||||||
rake
|
rake
|
||||||
rdiscount
|
rdiscount
|
||||||
ruby-prof
|
ruby-prof
|
||||||
sass (>= 3.1.0.alpha.50)!
|
sass (>= 3.1.0.alpha.50)
|
||||||
serve (= 1.0.0)
|
serve (= 1.0.0)
|
||||||
thor
|
thor
|
||||||
|
@ -109,7 +109,7 @@ $('document').ready(function(){
|
|||||||
changeTheme();
|
changeTheme();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
||||||
// View source for mixins
|
// View source for mixins & functions
|
||||||
} else if (target.attr("rel") == "view source") {
|
} else if (target.attr("rel") == "view source") {
|
||||||
$(target.attr("href")).toggle();
|
$(target.attr("href")).toggle();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -26,6 +26,16 @@ The Documentation for the [latest preview release](http://beta.compass-style.org
|
|||||||
The CLI options will still override the values set within the config file, but they might
|
The CLI options will still override the values set within the config file, but they might
|
||||||
inform other values. For instance `compass compile -e production` will have the environment
|
inform other values. For instance `compass compile -e production` will have the environment
|
||||||
parameter preset to `:production` so that you can set other values in the project accordingly.
|
parameter preset to `:production` so that you can set other values in the project accordingly.
|
||||||
|
* New infrastructure for supporting experimental css3 functions that are prefixed but have the same
|
||||||
|
syntax across all browsers. It is now possible to configure which browsers support which
|
||||||
|
experimental functions outside of the compass release cycle. For details, see the
|
||||||
|
[cross browser helpers](/reference/compass/helpers/cross-browser/).
|
||||||
|
* [Blueprint] Added a new sass function called span($n) to the grid module which replaces
|
||||||
|
the now **deprecated span mixin**. If you are using this mixin, please replace it with:
|
||||||
|
`width: span($n)`.
|
||||||
|
* [Blueprint] Blueprint no longer adds `!important` to the widths of `input`, `textarea`,
|
||||||
|
and `select` form fields, so compass no longer defaults to using `!important` in those cases.
|
||||||
|
If you were relying on this behavior, you may need to adjust your stylesheets accordingly.
|
||||||
|
|
||||||
|
|
||||||
0.11.alpha.4 (12/08/2010)
|
0.11.alpha.4 (12/08/2010)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Gradient
|
title: Background Gradients
|
||||||
description: css3 mixin for css gradients
|
description: css3 mixin for css gradients
|
||||||
framework: compass
|
framework: compass
|
||||||
stylesheet: compass/css3/_gradient.scss
|
stylesheet: compass/css3/_images.scss
|
||||||
example: true
|
example: true
|
||||||
---
|
---
|
||||||
= render "partials/example"
|
= render "partials/example"
|
@ -14,30 +14,30 @@
|
|||||||
|
|
||||||
// This will yield a radial gradient with an apparent specular highlight
|
// This will yield a radial gradient with an apparent specular highlight
|
||||||
#radial-gradient
|
#radial-gradient
|
||||||
+radial-gradient(color-stops(#00FFFF 10px, #1E90FF 30px), 45 45)
|
+background-image(radial-gradient(45 45, #0ff 10px, #1e90ff 30px))
|
||||||
|
|
||||||
// This yields a linear gradient spanning from the upper left corner to the lower right corner
|
// This yields a linear gradient spanning from the upper left corner to the lower right corner
|
||||||
#linear-gradient
|
#linear-gradient
|
||||||
+linear-gradient(color-stops(#fff, #ddd), left top)
|
+background-image(linear-gradient(left top, #fff, #ddd))
|
||||||
|
|
||||||
// This yields a gradient starting at the top with #fff, ending in #aaa
|
// This yields a gradient starting at the top with #fff, ending in #aaa
|
||||||
#v-gradient
|
#v-gradient
|
||||||
+linear-gradient(color-stops(#fff, #aaa))
|
+background-image(linear-gradient(#fff, #aaa))
|
||||||
|
|
||||||
// Same as above but with a #ccc at the halfway point
|
// Same as above but with a #ccc at the halfway point
|
||||||
#v-gradient-2
|
#v-gradient-2
|
||||||
+linear-gradient(color-stops(#fff, #ccc, #aaa))
|
+background-image(linear-gradient(#fff, #ccc, #aaa))
|
||||||
|
|
||||||
// Same as the first example but with #ccc at the 30% from the top, and #bbb at 70% from the top
|
// Same as the first example but with #ccc at the 30% from the top, and #bbb at 70% from the top
|
||||||
#v-gradient-3
|
#v-gradient-3
|
||||||
+linear-gradient(color-stops(#fff, #ccc 30%, #bbb 70%, #aaa))
|
+background-image(linear-gradient(#fff, #ccc 30%, #bbb 70%, #aaa))
|
||||||
|
|
||||||
// This yields a horizontal linear gradient spanning from left to right.
|
// This yields a horizontal linear gradient spanning from left to right.
|
||||||
#h-gradient
|
#h-gradient
|
||||||
+linear-gradient(color-stops(#fff, #ddd), left)
|
+background-image(linear-gradient(left, #fff, #ddd))
|
||||||
|
|
||||||
#svg-gradient
|
#svg-gradient
|
||||||
$experimental-support-for-svg: true
|
$experimental-support-for-svg: true
|
||||||
+linear-gradient(color-stops(#2AC363, #CD8C14, #9C4CC2), left)
|
+background-image(linear-gradient(left, #2ac363, #cd8c14, #9c4cc2))
|
||||||
width: 80px
|
width: 80px
|
||||||
height: 80px
|
height: 80px
|
||||||
|
@ -34,10 +34,10 @@ Here's some general information about the project you might find useful along th
|
|||||||
|
|
||||||
* [Submitting Patches](#patches)
|
* [Submitting Patches](#patches)
|
||||||
* [Project Structure](#project-structure)
|
* [Project Structure](#project-structure)
|
||||||
* Project Architecture
|
<!-- * Project Architecture
|
||||||
* [Command Line](/help/tutorials/command-line)
|
* [Command Line](/help/tutorials/command-line)
|
||||||
* [Extensions](/help/tutorials/extensions)
|
* [Extensions](/help/tutorials/extensions)
|
||||||
* [Configuration](help/tutorials/configuration-reference)
|
* [Configuration](help/tutorials/configuration-reference) -->
|
||||||
* [General Philosophy](#project-philosophy)
|
* [General Philosophy](#project-philosophy)
|
||||||
* [Stylesheet Conventions](#stylesheet-conventions)
|
* [Stylesheet Conventions](#stylesheet-conventions)
|
||||||
* [Miscellaneous Stuff](#faq)
|
* [Miscellaneous Stuff](#faq)
|
||||||
|
@ -146,9 +146,11 @@ this in mind.
|
|||||||
|
|
||||||
## Large numbers of sprites
|
## Large numbers of sprites
|
||||||
The magic stylesheet can get very large when there are large numbers of sprites. 50 sprites
|
The magic stylesheet can get very large when there are large numbers of sprites. 50 sprites
|
||||||
will cause there to be over 150 variables created and then passed into the `sprite` function.
|
will cause there to be over 150 variables created and then passed into the
|
||||||
|
`sprite-map` [function](/reference/compass/helpers/sprites/#sprite-map).
|
||||||
You may find that customizing the sprite function call to only pass those values that you
|
You may find that customizing the sprite function call to only pass those values that you
|
||||||
are overriding will provide a performance boost.
|
are overriding will provide a small performance boost.
|
||||||
|
See a [concrete example](https://gist.github.com/747970).
|
||||||
|
|
||||||
## Oily PNG
|
## Oily PNG
|
||||||
|
|
||||||
|
@ -10,13 +10,18 @@ layout: homepage
|
|||||||
.compass
|
.compass
|
||||||
%h4 Why designers love Compass.
|
%h4 Why designers love Compass.
|
||||||
%ol
|
%ol
|
||||||
%li Get cleaner markup with no presentational classes.
|
%li Experience cleaner markup without presentational classes.
|
||||||
%li It’s chock full of the web’s best reusable patterns.
|
%li It’s chock full of the web’s best reusable patterns.
|
||||||
%li Developing a personal framework is simple.
|
%li Developing a personal framework is simple.
|
||||||
%li Compass mixins make CSS3 easy.
|
%li Compass mixins make CSS3 easy.
|
||||||
|
%li Download and create extensions with ease.
|
||||||
.sass
|
.sass
|
||||||
%h4 Compass uses Sass.
|
%h4 Compass uses Sass.
|
||||||
%p <a href="http://sass-lang.com/">Sass</a> is an extension of CSS3 which adds nested rules, variables, mixins, selector inheritance, and more. Sass generates well formatted CSS.
|
%p
|
||||||
|
<a href="http://sass-lang.com/">Sass</a> is an extension of CSS3 which
|
||||||
|
adds nested rules, variables, mixins, selector inheritance, and more.
|
||||||
|
Sass generates well formatted CSS and makes your stylesheets
|
||||||
|
easier to organize and maintain.
|
||||||
%h3 Brilliant people use Compass, including these <em>wildly talented</em> folks:
|
%h3 Brilliant people use Compass, including these <em>wildly talented</em> folks:
|
||||||
%ul#featured_sites
|
%ul#featured_sites
|
||||||
%li
|
%li
|
||||||
|
24
doc-src/content/index/functions.haml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: Compass Documentation | All Functions
|
||||||
|
crumb: Docs
|
||||||
|
body_id: home
|
||||||
|
---
|
||||||
|
%article
|
||||||
|
%h1#logo Sass Based Functions
|
||||||
|
|
||||||
|
- all_functions.sorted_and_grouped_by_name{|f| f.last.name }.each do |(group, functions)|
|
||||||
|
%h3= group
|
||||||
|
%ul
|
||||||
|
- functions.each do |(i, f)|
|
||||||
|
%li
|
||||||
|
%a{:href=>"#{i.path}#function-#{f.name}"}= f.sass_signature(:html)
|
||||||
|
|
||||||
|
%h1#logo All Ruby Based Functions
|
||||||
|
%ul
|
||||||
|
- Sass::Script::Functions.public_instance_methods.sort_by{|m| m.to_s}.each do |m|
|
||||||
|
%li
|
||||||
|
- name = m.to_s.gsub("_","-")
|
||||||
|
- if i = item_for_function_name(name)
|
||||||
|
%a{:href=>"#{i.path}##{name}"}= name
|
||||||
|
- else
|
||||||
|
= name
|
@ -6,9 +6,9 @@ body_id: home
|
|||||||
%article
|
%article
|
||||||
%h1#logo Compass Mixins
|
%h1#logo Compass Mixins
|
||||||
|
|
||||||
- all_mixins.sort_by{|i| i.first.identifier}.each do |item, mixins|
|
- all_mixins.sorted_and_grouped_by_name{|m| m.last.name }.each do |(group, mixins)|
|
||||||
%h3= link_to item[:title], item
|
%h3= group
|
||||||
%ul
|
%ul
|
||||||
- mixins.sort_by{|m| m.name}.each do |m|
|
- mixins.each do |(i, m)|
|
||||||
%li= mixin_signature(m)
|
%li
|
||||||
|
%a{:href=>"#{i.path}#mixin-#{m.name}"}= m.sass_signature(:none, :html)
|
||||||
|
@ -6,10 +6,10 @@ body_id: home
|
|||||||
%article
|
%article
|
||||||
%h1#logo Compass Variables
|
%h1#logo Compass Variables
|
||||||
|
|
||||||
- all_constants.sort_by{|i| i.first.identifier}.each do |item, constants|
|
- all_constants.sorted_and_grouped_by_name{|v| v.last.name }.each do |(group, variables)|
|
||||||
%h3= link_to item[:title], item
|
%h3= group
|
||||||
%ul
|
%ul
|
||||||
- constants.sort_by{|c| c.name}.each do |c|
|
- variables.each do |(i, v)|
|
||||||
%li $#{c.name}
|
%li
|
||||||
|
%a{:href=>"#{i.path}#const-#{v.name}"}= "$" + v.name
|
||||||
|
|
@ -12,13 +12,8 @@ classnames:
|
|||||||
- css3
|
- css3
|
||||||
---
|
---
|
||||||
- render 'reference' do
|
- render 'reference' do
|
||||||
%p
|
:markdown
|
||||||
|
**<span class="warning">IMPORTANT:</span>** This module has been deprecated. See the new
|
||||||
|
[images module](../images/) for the new, more flexible approach to gradients.
|
||||||
|
|
||||||
Provides mixins to create cross-browser CSS3 gradients.
|
Provides mixins to create cross-browser CSS3 gradients.
|
||||||
%p
|
|
||||||
To enable SVG gradient support in Opera and IE9, set
|
|
||||||
<code>$experimental-support-for-svg: true</code> in your stylesheet.
|
|
||||||
%p
|
|
||||||
NOTE: At this time, Opera renders incorrectly an SVG background on a element
|
|
||||||
with a border, repeating the gradient towards the end. You can set
|
|
||||||
<code>background-repeat: no-repeat</code> to avoid this, but the gradient
|
|
||||||
will not fill the area completely.
|
|
||||||
|
@ -12,6 +12,33 @@ classnames:
|
|||||||
- css3
|
- css3
|
||||||
---
|
---
|
||||||
- render 'reference' do
|
- render 'reference' do
|
||||||
%p
|
:markdown
|
||||||
Provides mixins that work across many modern browsers with the latest
|
Provides mixins that work across many modern browsers with the latest
|
||||||
CSS3 image rendering primitives.
|
CSS3 image rendering primitives.
|
||||||
|
|
||||||
|
These mixins provide intelligent cross-browser access to properties that accept
|
||||||
|
images or image-like values (e.g. gradients). The syntax is very straightforward,
|
||||||
|
it is exactly like the css syntax that you would use for the corresponding CSS3
|
||||||
|
properties: Values are comma and space delimited, just as they would be for a property.
|
||||||
|
Vendor prefixes are used only when necessary.
|
||||||
|
|
||||||
|
Example (more examples are available by following the links below):
|
||||||
|
|
||||||
|
<pre><code class="source-code scss">.in-css3 {
|
||||||
|
background: image-url("foo.png"),
|
||||||
|
linear-gradient(top left, #333, #0c0),
|
||||||
|
radial-gradient(#c00, #fff 100px);
|
||||||
|
}
|
||||||
|
.with-compass {
|
||||||
|
@include background(image-url("foo.png"),
|
||||||
|
linear-gradient(top left, #333, #0c0),
|
||||||
|
radial-gradient(#c00, #fff 100px));
|
||||||
|
}</code></pre>
|
||||||
|
|
||||||
|
To enable SVG gradient support in Opera and IE9, set
|
||||||
|
<code>$experimental-support-for-svg: true</code> in your stylesheet.
|
||||||
|
|
||||||
|
NOTE: At this time, Opera renders incorrectly an SVG background on a element
|
||||||
|
with a border, repeating the gradient towards the end. You can set
|
||||||
|
<code>background-repeat: no-repeat</code> to avoid this, but the gradient
|
||||||
|
will not fill the area completely.
|
||||||
|
@ -35,9 +35,18 @@ layout: core
|
|||||||
* [inline-font-files()](/reference/compass/helpers/inline-data/#inline-font-files)
|
* [inline-font-files()](/reference/compass/helpers/inline-data/#inline-font-files)
|
||||||
* [inline-image()](/reference/compass/helpers/inline-data/#inline-image)
|
* [inline-image()](/reference/compass/helpers/inline-data/#inline-image)
|
||||||
* [nest()](/reference/compass/helpers/selectors/#nest)
|
* [nest()](/reference/compass/helpers/selectors/#nest)
|
||||||
|
* [prefix()](/reference/compass/helpers/cross-browser/#prefix)
|
||||||
|
* [prefixed()](/reference/compass/helpers/cross-browser/#prefixed)
|
||||||
* [pi()](/reference/compass/helpers/trig/#pi)
|
* [pi()](/reference/compass/helpers/trig/#pi)
|
||||||
* [sin()](/reference/compass/helpers/trig/#sin)
|
* [sin()](/reference/compass/helpers/trig/#sin)
|
||||||
* [stylesheet-url()](/reference/compass/helpers/urls/#stylesheet-url)
|
* [stylesheet-url()](/reference/compass/helpers/urls/#stylesheet-url)
|
||||||
* [scale-lightness()](/reference/compass/helpers/colors/#scale-lightness)
|
* [scale-lightness()](/reference/compass/helpers/colors/#scale-lightness)
|
||||||
* [tan()](/reference/compass/helpers/trig/#tan)
|
* [tan()](/reference/compass/helpers/trig/#tan)
|
||||||
|
* [-css2()](/reference/compass/helpers/cross-browser/#-css2)
|
||||||
|
* [-moz()](/reference/compass/helpers/cross-browser/#-moz)
|
||||||
|
* [-ms()](/reference/compass/helpers/cross-browser/#-ms)
|
||||||
|
* [-o()](/reference/compass/helpers/cross-browser/#-o)
|
||||||
|
* [-pie()](/reference/compass/helpers/cross-browser/#-pie)
|
||||||
|
* [-svg()](/reference/compass/helpers/cross-browser/#-svg)
|
||||||
|
* [-webkit()](/reference/compass/helpers/cross-browser/#-webkit)
|
||||||
|
|
||||||
|
@ -8,6 +8,8 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "color-stops"
|
||||||
---
|
---
|
||||||
%h1 Compass Color Stops Helper
|
%h1 Compass Color Stops Helper
|
||||||
|
|
||||||
|
@ -8,6 +8,11 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "adjust-lightness"
|
||||||
|
- "adjust-saturation"
|
||||||
|
- "scale-lightness"
|
||||||
|
- "scale-saturation"
|
||||||
---
|
---
|
||||||
%h1 Compass Color Helpers
|
%h1 Compass Color Helpers
|
||||||
%p
|
%p
|
||||||
|
@ -8,6 +8,8 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "opposite-position"
|
||||||
---
|
---
|
||||||
%h1 Compass Constant Helpers
|
%h1 Compass Constant Helpers
|
||||||
|
|
||||||
|
114
doc-src/content/reference/compass/helpers/cross-browser.haml
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
---
|
||||||
|
title: Compass Cross Browser Helpers
|
||||||
|
crumb: Cross Browser
|
||||||
|
framework: compass
|
||||||
|
meta_description: Helper functions for working with vendor prefixed functions.
|
||||||
|
layout: core
|
||||||
|
classnames:
|
||||||
|
- reference
|
||||||
|
- core
|
||||||
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "prefixed"
|
||||||
|
- "prefix"
|
||||||
|
- "-webkit"
|
||||||
|
- "-moz"
|
||||||
|
- "-o"
|
||||||
|
- "-ms"
|
||||||
|
- "-svg"
|
||||||
|
- "-pie"
|
||||||
|
- "-css2"
|
||||||
|
---
|
||||||
|
%h1 Compass Cross Browser Helpers
|
||||||
|
|
||||||
|
:markdown
|
||||||
|
These helpers are used by compass to create mixins that can insulate
|
||||||
|
the user from cross browser syntax and vendor prefix complexities.
|
||||||
|
|
||||||
|
If you need to support a new experimental (prefixed) function in your
|
||||||
|
project using these helpers, you can add support for it adding the following
|
||||||
|
to your compass configuration file:
|
||||||
|
|
||||||
|
Compass::BrowserSupport.add_support("function-name", "webkit", "moz")
|
||||||
|
|
||||||
|
For an example of how to use these functions see the
|
||||||
|
[compass images module](https://github.com/chriseppstein/compass/blob/master/frameworks/compass/stylesheets/compass/css3/_images.scss).
|
||||||
|
|
||||||
|
#prefixed.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#prefixed")
|
||||||
|
prefixed(<span class="arg">$prefix<span>, <span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
Returns true if any of the arguments require the given prefix.
|
||||||
|
|
||||||
|
#prefix.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#prefix")
|
||||||
|
prefix(<span class="arg">$prefix<span>, <span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
Transforms the argument(s) into a representation for the rendering engine
|
||||||
|
indicated by <code>$prefix</code>. Usually this means just adding a prefix,
|
||||||
|
but in some cases, this may result in entirely different representations for
|
||||||
|
the given rendering engine (E.g. linear-gradient).
|
||||||
|
%p
|
||||||
|
Values that do not have a specific representation are passed through without
|
||||||
|
being transformed.
|
||||||
|
|
||||||
|
#-webkit.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-webkit")
|
||||||
|
\-webkit(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-webkit, $arg, ...)</code>.
|
||||||
|
#-moz.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-moz")
|
||||||
|
\-moz(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-moz, $arg, ...)</code>.
|
||||||
|
#-o.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-o")
|
||||||
|
\-o(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-o, $arg, ...)</code>.
|
||||||
|
#-ms.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-ms")
|
||||||
|
\-ms(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-ms, $arg, ...)</code>.
|
||||||
|
#-svg.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-svg")
|
||||||
|
\-svg(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-svg, $arg, ...)</code>.
|
||||||
|
Instead of adding a prefix, it returns a representation of the
|
||||||
|
arguments using SVG to render them where it can.
|
||||||
|
#-pie.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-pie")
|
||||||
|
\-pie(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-pie, $arg, ...)</code>.
|
||||||
|
It it used to get <a href="/reference/compass/css3/pie/">CSS3 PIE</a>
|
||||||
|
support where necessary.
|
||||||
|
#-css2.helper
|
||||||
|
%h3
|
||||||
|
%a(href="#-css2")
|
||||||
|
\-css2(<span class="arg">$arg</span>, ...)
|
||||||
|
.details
|
||||||
|
%p
|
||||||
|
This is a shortcut for calling <code>prefix(-css2, $arg, ...)</code>.
|
||||||
|
It is a kind of hack to sanitize the output of experimental code
|
||||||
|
into a form that can be parsed by a css2.1 compliant parser.
|
||||||
|
Usually this results in causing some functions to be omitted.
|
@ -8,6 +8,8 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "elements-of-type"
|
||||||
---
|
---
|
||||||
%h1 Compass Display Helpers
|
%h1 Compass Display Helpers
|
||||||
|
|
||||||
|
@ -8,6 +8,8 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "font-files"
|
||||||
---
|
---
|
||||||
%h1 Compass Font Files Helper
|
%h1 Compass Font Files Helper
|
||||||
|
|
||||||
|
@ -8,6 +8,9 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "image-width"
|
||||||
|
- "image-height"
|
||||||
---
|
---
|
||||||
%h1 Compass Image Dimension Helpers
|
%h1 Compass Image Dimension Helpers
|
||||||
|
|
||||||
|
@ -8,6 +8,9 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "inline-image"
|
||||||
|
- "inline-font-files"
|
||||||
---
|
---
|
||||||
%h1 Compass Inline Data Helpers
|
%h1 Compass Inline Data Helpers
|
||||||
|
|
||||||
|
@ -8,6 +8,12 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "nest"
|
||||||
|
- "append-selector"
|
||||||
|
- "enumerate"
|
||||||
|
- "headings"
|
||||||
|
- "headers"
|
||||||
---
|
---
|
||||||
%h1 Compass Selector Helpers
|
%h1 Compass Selector Helpers
|
||||||
|
|
||||||
@ -67,6 +73,7 @@ classnames:
|
|||||||
%li
|
%li
|
||||||
%a(href="/examples/compass/helpers/using-extend-in-place-of-enumerate/") Example of using <code>@extend</code> in place of enumerate
|
%a(href="/examples/compass/helpers/using-extend-in-place-of-enumerate/") Example of using <code>@extend</code> in place of enumerate
|
||||||
|
|
||||||
|
%a(name="headers")
|
||||||
#headings.helper
|
#headings.helper
|
||||||
%h3
|
%h3
|
||||||
%a(href="#append-selector")
|
%a(href="#append-selector")
|
||||||
|
@ -8,6 +8,13 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "sprite-map"
|
||||||
|
- "sprite"
|
||||||
|
- "sprite-map-name"
|
||||||
|
- "sprite-file"
|
||||||
|
- "sprite-url"
|
||||||
|
- "sprite-position"
|
||||||
---
|
---
|
||||||
%h1 Compass Sprite Helpers
|
%h1 Compass Sprite Helpers
|
||||||
|
|
||||||
|
@ -8,6 +8,11 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "pi"
|
||||||
|
- "sin"
|
||||||
|
- "cos"
|
||||||
|
- "tan"
|
||||||
---
|
---
|
||||||
%h1 Compass Trig Helpers
|
%h1 Compass Trig Helpers
|
||||||
|
|
||||||
|
@ -8,6 +8,10 @@ classnames:
|
|||||||
- reference
|
- reference
|
||||||
- core
|
- core
|
||||||
- helpers
|
- helpers
|
||||||
|
documented_functions:
|
||||||
|
- "stylesheet-url"
|
||||||
|
- "font-url"
|
||||||
|
- "image-url"
|
||||||
---
|
---
|
||||||
%h1 Compass URL Helpers
|
%h1 Compass URL Helpers
|
||||||
|
|
||||||
|
@ -30,5 +30,15 @@ body_id: search
|
|||||||
}
|
}
|
||||||
%input#q{:type => "text", :placeholder=>"Search"}
|
%input#q{:type => "text", :placeholder=>"Search"}
|
||||||
|
|
||||||
|
%h2 Index of all:
|
||||||
|
%ul#indexes
|
||||||
|
%li
|
||||||
|
%a(href="/index/variables/") Variables
|
||||||
|
%li
|
||||||
|
%a(href="/index/mixins/") Mixins
|
||||||
|
%li
|
||||||
|
%a(href="/index/functions/") Functions
|
||||||
|
|
||||||
|
%h2 Results
|
||||||
%ol#results
|
%ol#results
|
||||||
%li.none Please enter a search term.
|
%li.none Please enter a search term.
|
@ -1,18 +1,18 @@
|
|||||||
//html.sass .mixin-source .scss, html.scss .mixin-source .sass { @extend .hide;}
|
//html.sass .mixin-source .scss, html.scss .mixin-source .sass { @extend .hide;}
|
||||||
.mixin-source, .example-source {
|
.mixin-source, .example-source, .function-source {
|
||||||
position: relative; @extend .fixed-font;
|
position: relative; @extend .fixed-font;
|
||||||
.syntaxhighlighter, pre {
|
.syntaxhighlighter, pre {
|
||||||
&.scss, &.sass, &.css, &.haml, &.html { display: none; } } }
|
&.scss, &.sass, &.css, &.haml, &.html { display: none; } } }
|
||||||
|
|
||||||
html.sass { .mixin-source .syntaxhighlighter.sass, .example-source .syntaxhighlighter.sass { display: block; } }
|
html.sass { .mixin-source, .example-source, .function-source { .syntaxhighlighter.sass { display: block; } } }
|
||||||
html.scss { .mixin-source .syntaxhighlighter.scss, .example-source .syntaxhighlighter.scss { display: block; } }
|
html.scss { .mixin-source, .example-source, .function-source { .syntaxhighlighter.scss { display: block; } } }
|
||||||
html.css .example-source .syntaxhighlighter.css { display: block; }
|
html.css .example-source .syntaxhighlighter.css { display: block; }
|
||||||
html.html .example-source .syntaxhighlighter.html { display: block; }
|
html.html .example-source .syntaxhighlighter.html { display: block; }
|
||||||
html.haml .example-source .syntaxhighlighter.haml { display: block; }
|
html.haml .example-source .syntaxhighlighter.haml { display: block; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.mixin-source { display: none; }
|
.mixin-source, .function-source { display: none; }
|
||||||
|
|
||||||
html.light .syntaxhighlighter, html.dark .syntaxhighlighter {
|
html.light .syntaxhighlighter, html.dark .syntaxhighlighter {
|
||||||
margin: 0 0 2px;
|
margin: 0 0 2px;
|
||||||
@ -59,7 +59,7 @@ h3 { @include round-corners;
|
|||||||
a { text-decoration: none;}
|
a { text-decoration: none;}
|
||||||
code, .arg { font-weight: normal; }
|
code, .arg { font-weight: normal; }
|
||||||
}
|
}
|
||||||
h3.mixin { @include round-top-corners; margin-bottom: 2px;}
|
h3.mixin, h3.function { @include round-top-corners; margin-bottom: 2px;}
|
||||||
.arg {
|
.arg {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0 2px;
|
padding: 0 2px;
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
&.sass a[rel=sass], &.scss a[rel=scss], &.css a[rel=css], &.html a[rel=html], &.haml a[rel=haml] { color: $heading; color: rgba($heading, .7); @extend .round-corners-em; @extend .inset-panel-#{$theme}; }
|
&.sass a[rel=sass], &.scss a[rel=scss], &.css a[rel=css], &.html a[rel=html], &.haml a[rel=haml] { color: $heading; color: rgba($heading, .7); @extend .round-corners-em; @extend .inset-panel-#{$theme}; }
|
||||||
|
|
||||||
#version { color: rgba($heading, .3); a { color: rgba($nav-link, .7); } }
|
#version { color: rgba($heading, .3); a { color: rgba($nav-link, .7); } }
|
||||||
.mixin-source, .example-source { @extend .mixin-panel-#{$theme};
|
.mixin-source, .example-source, .function-source { @extend .mixin-panel-#{$theme};
|
||||||
.container textarea { color: $code; }
|
.container textarea { color: $code; }
|
||||||
}
|
}
|
||||||
h2 a.help { color: $heading;}
|
h2 a.help { color: $heading;}
|
||||||
|
@ -42,3 +42,5 @@ em { font-style: italic; }
|
|||||||
|
|
||||||
dl.table dt, dl.table dd { display: inline-block; }
|
dl.table dt, dl.table dd { display: inline-block; }
|
||||||
dg { display: block; margin-bottom: 1.5em; }
|
dg { display: block; margin-bottom: 1.5em; }
|
||||||
|
|
||||||
|
.warning { color: #c00; }
|
@ -7,7 +7,7 @@
|
|||||||
%li.vcard
|
%li.vcard
|
||||||
%a.fn.org.url.uid{:href => "/", :rel => "home"} Home
|
%a.fn.org.url.uid{:href => "/", :rel => "home"} Home
|
||||||
%li
|
%li
|
||||||
%a{:href => "/reference/compass/", :rel => "documentation"} Docs
|
%a{:href => "/reference/compass/", :rel => "documentation"} Reference
|
||||||
%li
|
%li
|
||||||
%a{:href => "/help", :rel=> "help"} Help
|
%a{:href => "/help", :rel=> "help"} Help
|
||||||
%li
|
%li
|
||||||
|
19
doc-src/layouts/partials/reference/functions.haml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
- if (functions = functions(@item)).any?
|
||||||
|
%h2 Functions
|
||||||
|
|
||||||
|
- functions.each do |function|
|
||||||
|
%a{:href=>"#function-#{function.name}-source", :rel => "view source"} view source
|
||||||
|
%h3.function{:id=>"function-#{function.name}"}
|
||||||
|
%a.permalink{:href => "#function-#{function.name}"}= function.sass_signature(:html)
|
||||||
|
.function-source{:id=>"function-#{function.name}-source"}
|
||||||
|
%pre.source-code.sass= function.to_sass
|
||||||
|
%pre.source-code.scss= function.to_scss
|
||||||
|
|
||||||
|
.source-documentation
|
||||||
|
= format_doc(function.comment)
|
||||||
|
- if (examples = examples(@item, function)).any?
|
||||||
|
%dl.examples
|
||||||
|
- examples.each do |example|
|
||||||
|
%dt= link_to example.item[:title], example
|
||||||
|
- if example.item[:description]
|
||||||
|
%dd= example.item[:description]
|
@ -4,7 +4,7 @@
|
|||||||
- mixin_defs.each do |mixin|
|
- mixin_defs.each do |mixin|
|
||||||
%a{:href=>"#mixin-#{mixin.name}-source", :rel => "view source"} view source
|
%a{:href=>"#mixin-#{mixin.name}-source", :rel => "view source"} view source
|
||||||
%h3.mixin{:id=>"mixin-#{mixin.name}"}
|
%h3.mixin{:id=>"mixin-#{mixin.name}"}
|
||||||
%a.permalink{:href => "#mixin-#{mixin.name}"}= mixin_signature(mixin)
|
%a.permalink{:href => "#mixin-#{mixin.name}"}= mixin.sass_signature(:none, :html)
|
||||||
.mixin-source{:id=>"mixin-#{mixin.name}-source"}
|
.mixin-source{:id=>"mixin-#{mixin.name}-source"}
|
||||||
%pre.source-code.sass= mixin.to_sass
|
%pre.source-code.sass= mixin.to_sass
|
||||||
%pre.source-code.scss= mixin.to_scss
|
%pre.source-code.scss= mixin.to_scss
|
||||||
|
@ -20,4 +20,6 @@
|
|||||||
|
|
||||||
= render "partials/reference/constants"
|
= render "partials/reference/constants"
|
||||||
|
|
||||||
|
= render "partials/reference/functions"
|
||||||
|
|
||||||
= render "partials/reference/mixins"
|
= render "partials/reference/mixins"
|
||||||
|
@ -28,6 +28,12 @@ def body_attributes(item)
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module Enumerable
|
||||||
|
def sorted_and_grouped_by_name
|
||||||
|
sort_by{|i| yield(i)}.group_by{|i| yield(i).sub(/^[^\w]/,"")[0..0].upcase}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
class Recycler
|
class Recycler
|
||||||
attr_accessor :values
|
attr_accessor :values
|
||||||
attr_accessor :index
|
attr_accessor :index
|
||||||
|
@ -118,6 +118,26 @@ def mixins(item)
|
|||||||
mixins.reject{|m| m.comment =~ /@private/}
|
mixins.reject{|m| m.comment =~ /@private/}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def functions(item)
|
||||||
|
sass_tree = tree(item)
|
||||||
|
functions = []
|
||||||
|
comment = nil
|
||||||
|
sass_tree.children.each do |child|
|
||||||
|
if child.is_a?(Sass::Tree::FunctionNode)
|
||||||
|
child.comment = comment && Sass::Tree::CommentNode.clean(comment)
|
||||||
|
comment = nil
|
||||||
|
functions << child
|
||||||
|
elsif child.is_a?(Sass::Tree::CommentNode)
|
||||||
|
comment ||= ""
|
||||||
|
comment << "\n" unless comment.empty?
|
||||||
|
comment << child.docstring
|
||||||
|
else
|
||||||
|
comment = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
functions.reject{|m| m.comment =~ /@private/}
|
||||||
|
end
|
||||||
|
|
||||||
def constants(item)
|
def constants(item)
|
||||||
sass_tree = tree(item)
|
sass_tree = tree(item)
|
||||||
constants = []
|
constants = []
|
||||||
@ -140,33 +160,27 @@ def constants(item)
|
|||||||
end
|
end
|
||||||
|
|
||||||
def all_constants
|
def all_constants
|
||||||
variables = []
|
@items.inject([]) do |variables, item|
|
||||||
@items.each do |item|
|
next variables unless item.identifier =~ %r{/reference}
|
||||||
next unless item.identifier =~ %r{/reference}
|
next variables unless item[:stylesheet]
|
||||||
next unless item[:stylesheet]
|
variables += constants(item).map{|v| [item, v] }
|
||||||
vars = constants(item)
|
|
||||||
if vars.any?
|
|
||||||
variables << [item, vars]
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
variables
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def all_mixins
|
def all_mixins
|
||||||
all_mixins = []
|
@items.inject([]) do |all_mixins, item|
|
||||||
@items.each do |item|
|
next all_mixins unless item.identifier =~ %r{/reference}
|
||||||
next unless item.identifier =~ %r{/reference}
|
next all_mixins unless item[:stylesheet]
|
||||||
next unless item[:stylesheet]
|
all_mixins += mixins(item).map{|m| [item, m] }
|
||||||
ms = mixins(item)
|
|
||||||
if ms.any?
|
|
||||||
all_mixins << [item, ms]
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
all_mixins
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def mixin_signature(mixin, format = :html)
|
def all_functions
|
||||||
mixin.sass_signature(:none, format)
|
@items.inject([]) do |all_functions, item|
|
||||||
|
next all_functions unless item.identifier =~ %r{/reference}
|
||||||
|
next all_functions unless item[:stylesheet]
|
||||||
|
all_functions += functions(item).map{|f| [item, f] }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def example_items
|
def example_items
|
||||||
@ -177,6 +191,12 @@ def example_items
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def item_for_function_name(function_name)
|
||||||
|
@items.detect do |item|
|
||||||
|
(item.identifier =~ %r{helpers}) && item[:documented_functions] && item[:documented_functions].include?(function_name)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def examples_for_item(item)
|
def examples_for_item(item)
|
||||||
@site.cached("examples/#{item.identifier}") do
|
@site.cached("examples/#{item.identifier}") do
|
||||||
example_items.select do |i|
|
example_items.select do |i|
|
||||||
|
@ -19,18 +19,9 @@ module Sass
|
|||||||
class VariableNode < Node
|
class VariableNode < Node
|
||||||
attr_accessor :comment unless method_defined? :comment
|
attr_accessor :comment unless method_defined? :comment
|
||||||
end
|
end
|
||||||
class MixinDefNode < Node
|
module HasSignature
|
||||||
attr_accessor :name unless method_defined? :name
|
def sass_signature(format = :text)
|
||||||
attr_accessor :args unless method_defined? :args
|
"#{name}#{arglist_to_sass(format)}"
|
||||||
attr_accessor :comment unless method_defined? :comment
|
|
||||||
def sass_signature(mode = :definition, format = :text)
|
|
||||||
prefix = case mode
|
|
||||||
when :definition
|
|
||||||
"="
|
|
||||||
when :include
|
|
||||||
"+"
|
|
||||||
end
|
|
||||||
"#{prefix}#{name}#{arglist_to_sass(format)}"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
@ -57,6 +48,30 @@ module Sass
|
|||||||
sass_str
|
sass_str
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
class MixinDefNode < Node
|
||||||
|
attr_accessor :name unless method_defined? :name
|
||||||
|
attr_accessor :args unless method_defined? :args
|
||||||
|
attr_accessor :comment unless method_defined? :comment
|
||||||
|
unless included_modules.include?(HasSignature)
|
||||||
|
include HasSignature
|
||||||
|
alias sass_signature_without_prefix sass_signature
|
||||||
|
def sass_signature(mode = :definition, format = :text)
|
||||||
|
prefix = case mode
|
||||||
|
when :definition
|
||||||
|
"="
|
||||||
|
when :include
|
||||||
|
"+"
|
||||||
|
end
|
||||||
|
"#{prefix}#{sass_signature_without_prefix(format)}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
class FunctionNode < Node
|
||||||
|
attr_accessor :name unless method_defined? :name
|
||||||
|
attr_accessor :args unless method_defined? :args
|
||||||
|
attr_accessor :comment unless method_defined? :comment
|
||||||
|
include HasSignature unless included_modules.include?(HasSignature)
|
||||||
|
end
|
||||||
class ImportNode < RootNode
|
class ImportNode < RootNode
|
||||||
attr_accessor :imported_filename unless method_defined? :imported_filename
|
attr_accessor :imported_filename unless method_defined? :imported_filename
|
||||||
end
|
end
|
||||||
|
@ -10,4 +10,4 @@ body {
|
|||||||
// Not all links have a url structure that can be detected,
|
// Not all links have a url structure that can be detected,
|
||||||
// So you can set them explicitly yourself like so:
|
// So you can set them explicitly yourself like so:
|
||||||
a#this-is-a-pdf-link {
|
a#this-is-a-pdf-link {
|
||||||
@include link-icon(unquote("pdf.png")); } }
|
@include link-icon("pdf.png"); } }
|
||||||
|
@ -20,11 +20,11 @@ body.blueprint {
|
|||||||
|
|
||||||
body#index {
|
body#index {
|
||||||
#page-header {
|
#page-header {
|
||||||
@include span(6); }
|
width: span(6); }
|
||||||
#files-header {
|
#files-header {
|
||||||
@include span(8); }
|
width: span(8); }
|
||||||
#description-header {
|
#description-header {
|
||||||
@include span(10); }
|
width: span(10); }
|
||||||
#info {
|
#info {
|
||||||
@include box;
|
@include box;
|
||||||
ul {
|
ul {
|
||||||
|
@ -9,7 +9,7 @@ body.blueprint {
|
|||||||
.container {
|
.container {
|
||||||
@include container; }
|
@include container; }
|
||||||
.showgrid {
|
.showgrid {
|
||||||
background: inline_image(unquote("grid.png")); }
|
background: inline_image("grid.png"); }
|
||||||
hr {
|
hr {
|
||||||
@include colruler; }
|
@include colruler; }
|
||||||
hr.space {
|
hr.space {
|
||||||
@ -20,11 +20,11 @@ body.blueprint {
|
|||||||
|
|
||||||
body#index {
|
body#index {
|
||||||
#page-header {
|
#page-header {
|
||||||
@include span(6); }
|
width: span(6); }
|
||||||
#files-header {
|
#files-header {
|
||||||
@include span(8); }
|
width: span(8); }
|
||||||
#description-header {
|
#description-header {
|
||||||
@include span(10); }
|
width: span(10); }
|
||||||
#info {
|
#info {
|
||||||
@include box;
|
@include box;
|
||||||
ul {
|
ul {
|
||||||
|
@ -5,3 +5,4 @@ sass_dir = "src"
|
|||||||
images_dir = "images"
|
images_dir = "images"
|
||||||
output_style = :compact
|
output_style = :compact
|
||||||
relative_assets = true
|
relative_assets = true
|
||||||
|
line_comments = false
|
||||||
|
2
examples/compass/images/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
flag-*.png
|
||||||
|
emblem-*.png
|
BIN
examples/compass/images/emblem/favorite.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
examples/compass/images/emblem/important.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
examples/compass/images/emblem/photos.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
examples/compass/images/emblem/readonly.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
examples/compass/images/emblem/symbolic-link.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
examples/compass/images/emblem/system.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
examples/compass/images/emblem/unreadable.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
examples/compass/images/flag/ad.png
Normal file
After Width: | Height: | Size: 911 B |
BIN
examples/compass/images/flag/ae.png
Normal file
After Width: | Height: | Size: 733 B |
BIN
examples/compass/images/flag/af.png
Normal file
After Width: | Height: | Size: 878 B |
BIN
examples/compass/images/flag/ag.png
Normal file
After Width: | Height: | Size: 912 B |
BIN
examples/compass/images/flag/ai.png
Normal file
After Width: | Height: | Size: 972 B |
BIN
examples/compass/images/flag/al.png
Normal file
After Width: | Height: | Size: 897 B |
BIN
examples/compass/images/flag/am.png
Normal file
After Width: | Height: | Size: 788 B |
BIN
examples/compass/images/flag/an.png
Normal file
After Width: | Height: | Size: 823 B |
BIN
examples/compass/images/flag/ao.png
Normal file
After Width: | Height: | Size: 841 B |
BIN
examples/compass/images/flag/ar.png
Normal file
After Width: | Height: | Size: 826 B |
BIN
examples/compass/images/flag/as.png
Normal file
After Width: | Height: | Size: 1000 B |
BIN
examples/compass/images/flag/at.png
Normal file
After Width: | Height: | Size: 746 B |
BIN
examples/compass/images/flag/au.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
examples/compass/images/flag/aw.png
Normal file
After Width: | Height: | Size: 849 B |
BIN
examples/compass/images/flag/ax.png
Normal file
After Width: | Height: | Size: 936 B |
BIN
examples/compass/images/flag/az.png
Normal file
After Width: | Height: | Size: 879 B |
BIN
examples/compass/images/flag/ba.png
Normal file
After Width: | Height: | Size: 928 B |
BIN
examples/compass/images/flag/bb.png
Normal file
After Width: | Height: | Size: 859 B |
BIN
examples/compass/images/flag/bd.png
Normal file
After Width: | Height: | Size: 829 B |
BIN
examples/compass/images/flag/be.png
Normal file
After Width: | Height: | Size: 751 B |
BIN
examples/compass/images/flag/bf.png
Normal file
After Width: | Height: | Size: 797 B |
BIN
examples/compass/images/flag/bg.png
Normal file
After Width: | Height: | Size: 776 B |
BIN
examples/compass/images/flag/bh.png
Normal file
After Width: | Height: | Size: 803 B |
BIN
examples/compass/images/flag/bi.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
examples/compass/images/flag/bj.png
Normal file
After Width: | Height: | Size: 767 B |
BIN
examples/compass/images/flag/bm.png
Normal file
After Width: | Height: | Size: 955 B |
BIN
examples/compass/images/flag/bn.png
Normal file
After Width: | Height: | Size: 964 B |
BIN
examples/compass/images/flag/bo.png
Normal file
After Width: | Height: | Size: 797 B |
BIN
examples/compass/images/flag/br.png
Normal file
After Width: | Height: | Size: 942 B |
BIN
examples/compass/images/flag/bs.png
Normal file
After Width: | Height: | Size: 847 B |
BIN
examples/compass/images/flag/bt.png
Normal file
After Width: | Height: | Size: 927 B |
BIN
examples/compass/images/flag/bv.png
Normal file
After Width: | Height: | Size: 858 B |
BIN
examples/compass/images/flag/bw.png
Normal file
After Width: | Height: | Size: 783 B |
BIN
examples/compass/images/flag/by.png
Normal file
After Width: | Height: | Size: 845 B |
BIN
examples/compass/images/flag/bz.png
Normal file
After Width: | Height: | Size: 933 B |
BIN
examples/compass/images/flag/ca.png
Normal file
After Width: | Height: | Size: 930 B |
BIN
examples/compass/images/flag/catalonia.png
Normal file
After Width: | Height: | Size: 793 B |
BIN
examples/compass/images/flag/cc.png
Normal file
After Width: | Height: | Size: 952 B |
BIN
examples/compass/images/flag/cd.png
Normal file
After Width: | Height: | Size: 924 B |
BIN
examples/compass/images/flag/cf.png
Normal file
After Width: | Height: | Size: 912 B |
BIN
examples/compass/images/flag/cg.png
Normal file
After Width: | Height: | Size: 838 B |
BIN
examples/compass/images/flag/ch.png
Normal file
After Width: | Height: | Size: 707 B |
BIN
examples/compass/images/flag/ci.png
Normal file
After Width: | Height: | Size: 762 B |
BIN
examples/compass/images/flag/ck.png
Normal file
After Width: | Height: | Size: 951 B |
BIN
examples/compass/images/flag/cl.png
Normal file
After Width: | Height: | Size: 780 B |
BIN
examples/compass/images/flag/cm.png
Normal file
After Width: | Height: | Size: 804 B |
BIN
examples/compass/images/flag/cn.png
Normal file
After Width: | Height: | Size: 805 B |
BIN
examples/compass/images/flag/co.png
Normal file
After Width: | Height: | Size: 786 B |