Document the browser support variables
This commit is contained in:
parent
60fc4b79ce
commit
069f328562
@ -15,6 +15,8 @@ COMPASS CHANGELOG
|
|||||||
* Make it easier to disable the asset cache buster: `asset_cache_buster :none`
|
* Make it easier to disable the asset cache buster: `asset_cache_buster :none`
|
||||||
* Can now set `$padding` to `false` to make the `horizontal-list` mixin skip the
|
* Can now set `$padding` to `false` to make the `horizontal-list` mixin skip the
|
||||||
padding properties.
|
padding properties.
|
||||||
|
* It is now possible to disable support for legacy IE browsers.
|
||||||
|
See [the docs](/docs/reference/compass/support/) for more information.
|
||||||
|
|
||||||
0.10.5 (08/29/2010)
|
0.10.5 (08/29/2010)
|
||||||
-------------------
|
-------------------
|
||||||
|
17
doc-src/content/reference/compass/support.haml
Normal file
17
doc-src/content/reference/compass/support.haml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: Compass Cross-Browser Support Configuration
|
||||||
|
crumb: Browser Support
|
||||||
|
framework: compass
|
||||||
|
stylesheet: compass/_support.scss
|
||||||
|
classnames:
|
||||||
|
- reference
|
||||||
|
- core
|
||||||
|
- support
|
||||||
|
meta_description: Provides configuration options for the Compass Browser Support Matrix.
|
||||||
|
layout: core
|
||||||
|
nav_stylesheet: _compass.scss
|
||||||
|
---
|
||||||
|
- render 'reference' do
|
||||||
|
%p
|
||||||
|
You can configure the compass default browser support matrix by
|
||||||
|
setting these variables as needed.
|
@ -1,7 +1,7 @@
|
|||||||
/* Welcome to Susy. Use this file to define screen styles.
|
/* Welcome to Susy. Use this file to define screen styles.
|
||||||
* Import this file using the following HTML or equivalent:
|
* Import this file using the following HTML or equivalent:
|
||||||
* <link href="/stylesheets/screen.css" media="screen" rel="stylesheet" type="text/css" />
|
* <link href="/stylesheets/screen.css" media="screen" rel="stylesheet" type="text/css" />
|
||||||
|
@charset "UTF-8"
|
||||||
@import defaults
|
@import defaults
|
||||||
@import slideshow
|
@import slideshow
|
||||||
@import shared
|
@import shared
|
||||||
@ -213,6 +213,8 @@ aside[role="sidebar"] + article
|
|||||||
margin-right: 1.5em
|
margin-right: 1.5em
|
||||||
&:first-child
|
&:first-child
|
||||||
+alpha
|
+alpha
|
||||||
|
a.selected:before
|
||||||
|
content: "▸"
|
||||||
+ #page
|
+ #page
|
||||||
+leader(1.5)
|
+leader(1.5)
|
||||||
|
|
||||||
|
7
doc-src/layouts/simple_core.scss
Normal file
7
doc-src/layouts/simple_core.scss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
- render 'main' do
|
||||||
|
- content_for :module_nav do
|
||||||
|
%ul= item_tree(reference_item(:stylesheet => "compass.scss"), :depth => 1, :omit_self => true, :headings => false)
|
||||||
|
%aside(role="sidebar")
|
||||||
|
%nav#local-nav
|
||||||
|
= item_tree(reference_item(:stylesheet => (@item[:nav_stylesheet] || @default_stylesheet)), :depth => 2, :omit_self => get_var(:omit_self){false}, :heading_level => get_var(:heading_level){1})
|
||||||
|
%article= yield
|
@ -136,7 +136,7 @@ def constants(item)
|
|||||||
comment = nil
|
comment = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
constants
|
constants.reject{|c| c.comment =~ /@private/}
|
||||||
end
|
end
|
||||||
|
|
||||||
def all_constants
|
def all_constants
|
||||||
|
@ -7,12 +7,11 @@ $legacy-support-for-ie6: $legacy-support-for-ie !default;
|
|||||||
// Setting this to false will result in smaller output, but no support for ie7
|
// Setting this to false will result in smaller output, but no support for ie7
|
||||||
$legacy-support-for-ie7: $legacy-support-for-ie !default;
|
$legacy-support-for-ie7: $legacy-support-for-ie !default;
|
||||||
|
|
||||||
// @doc off
|
// @private
|
||||||
// The user can simply set $legacy-support-for-ie and 6 & 7 will be set accordingly,
|
// The user can simply set $legacy-support-for-ie and 6 & 7 will be set accordingly,
|
||||||
// But in case the user set either of those explicitly, we need to sync the value of
|
// But in case the user set either of those explicitly, we need to sync the value of
|
||||||
// this combined variable.
|
// this combined variable.
|
||||||
$legacy-support-for-ie: $legacy-support-for-ie6 or $legacy-support-for-ie7;
|
$legacy-support-for-ie: $legacy-support-for-ie6 or $legacy-support-for-ie7;
|
||||||
// @doc on
|
|
||||||
|
|
||||||
// Support for mozilla in experimental css3 properties.
|
// Support for mozilla in experimental css3 properties.
|
||||||
$experimental-support-for-mozilla : true !default;
|
$experimental-support-for-mozilla : true !default;
|
||||||
|
Loading…
Reference in New Issue
Block a user