Projet

Général

Profil

Paste
Télécharger (1,32 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / adaptivetheme / at_subtheme / sass / _base.scss @ 74f6bef0

1
//
2
// 'base' partial
3
//
4
// To make it easier to use all variables and mixins in any SCSS file in this
5
// theme, each .scss file has a @import 'base' declaration. And this base.scss
6
// file is in charge of importing all the other partials needed for the theme.
7
//
8

    
9

    
10
//
11
// Legacy IE support
12
//
13
// These variables are used by many mixins to add additional CSS to support
14
// specific versions of IE or specific vendor prefixes.
15
//
16
// To turn off support for IE6 or IE7, set those variables to false.
17
//
18
// AdaptiveTheme does not require special handling for IE8 or later. But Compass
19
// defines more Legacy IE variables that you might find useful for your theme.
20
// See the documentation at http://compass-style.org/reference/compass/support/
21
//
22

    
23
$legacy-support-for-ie6: true;
24
$legacy-support-for-ie7: true;
25

    
26

    
27
//
28
// Partials to be shared with all .scss files.
29
//
30

    
31
@import 'compass/support';                     // Add Compass and IE vendor prefix support variables.
32
@import 'compass/utilities/general/clearfix';  // Better than Drupal's clearfix.
33
@import 'compass/utilities/sprites';           // See http://compass-style.org/help/tutorials/spriting/
34
@import 'compass/css3';                        // Use one CSS3 mixin instead of multiple vendor prefixes.
35

    
36

    
37
//
38
// Import custom partial - mixins and variables defined for your theme
39
//
40
@import 'custom';