partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

_core.scss (2666B)


      1 /**
      2  * @var {string} $prefix 
      3  * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your 
      4  * JavaScript application.
      5  */
      6 $prefix: 'x-' !default;
      7 
      8 /**
      9  * @var {string} $theme-name 
     10  * The name of the theme. This must match the the output directory of the images.
     11  * (defaults to 'default')
     12  */
     13 $theme-name: 'default' !default;
     14 
     15 /**
     16  * @var {boolean/string} $relative-image-path-for-uis 
     17  * True to use a relative image path for all new UIs. If true, the path will be "../images/".
     18  * It can also be a string of the path value.
     19  * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
     20  */
     21 $relative-image-path-for-uis: false !default;
     22 
     23 $color: #000 !default;
     24 
     25 /**
     26  * @var {string} $font-family 
     27  * The default font-family to be used throughout the theme.
     28  */
     29 $font-family: tahoma,arial,verdana,sans-serif !default;
     30 
     31 $font-size  : 12px !default;
     32 
     33 /**
     34  * @var {string} $base-gradient 
     35  * The base gradient to be used throughout the theme.
     36  */
     37 $base-gradient: 'matte' !default;
     38 
     39 /**
     40  * @var {color} $base-color
     41  * The base color to be used throughout the theme.
     42  */
     43 $base-color   : #C0D4ED !default;
     44 $neutral-color: #eeeeee !default;
     45 
     46 /**
     47  * @var {boolean} $include-not-found-images
     48  * True to include files which are not found when compiling your SASS
     49  */
     50 $include-missing-images: false !default;
     51 
     52 /**
     53  * @var {boolean} $include-ie
     54  * True to include Internet Explorer specific rules
     55  */
     56 $include-ie: true !default;
     57 
     58 /**
     59  * @var {boolean} $include-ff
     60  * True to include Firefox specific rules
     61  */
     62 $include-ff: true !default;
     63 
     64 /**
     65  * @var {boolean} $include-chrome
     66  * True to include Chrome specific rules
     67  */
     68 $include-chrome: true !default;
     69 
     70 /**
     71  * @var {boolean} $include-safari
     72  * True to include Safari specific rules
     73  */
     74 $include-safari: true !default;
     75 
     76 /**
     77  * @var {boolean} $include-opera
     78  * True to include Opera specific rules
     79  */
     80 $include-opera: true !default;
     81 
     82 /**
     83  * @var {boolean} $include-webkit
     84  * True to include Webkit specific rules
     85  */
     86 $include-webkit: true !default;
     87 
     88 $supports-border-radius: true !default;
     89 $supports-gradients: true !default;
     90 
     91 /**
     92  * @var {boolean} $compile-all
     93  * True to copile all CSS, even if above include rules are false
     94  */
     95 $compile-all: true !default;
     96 
     97 /**
     98  * @var {boolean} $scope-reset-css
     99  * True to scope the reset CSS within the $prefix variable.
    100  */
    101 $scope-reset-css: false !default;
    102 
    103 /**
    104  * @var {color} $css-shadow-background-color
    105  * The base color for CSS shadows
    106  */
    107 $css-shadow-background-color: #ccc !default;
    108 
    109 
    110 /**
    111  * @var {color} $include-shadow-images
    112  * True to include all shadow images.
    113  */
    114 $include-shadow-images: true !default;