Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / resources / themes / templates / resources / sass / my-ext-theme.scss
1 // Unless you want to include all components, you must set $include-default to false
2 // IF you set this to true, you can also remove lines 10 to 38 of this file
3 $include-default: false;
4
5 // Insert your custom variables here.
6 // $base-color: #aa0000;
7
8 @import 'ext4/default/all';
9
10 // You may remove any of the following modules that you
11 // do not use in order to create a smaller css file.
12 @include extjs-boundlist;
13 @include extjs-button;
14 @include extjs-btn-group;
15 @include extjs-datepicker;
16 @include extjs-colorpicker;
17 @include extjs-menu;
18 @include extjs-grid;
19 @include extjs-form;
20     @include extjs-form-field;
21     @include extjs-form-fieldset;
22     @include extjs-form-checkboxfield;
23     @include extjs-form-checkboxgroup;
24     @include extjs-form-triggerfield;
25     @include extjs-form-htmleditor;
26 @include extjs-panel;
27 @include extjs-qtip;
28 @include extjs-slider;
29 @include extjs-progress;
30 @include extjs-toolbar;
31 @include extjs-window;
32 @include extjs-messagebox;
33 @include extjs-tabbar;
34 @include extjs-tab;
35 @include extjs-tree;
36 @include extjs-drawcomponent;
37 @include extjs-viewport;
38
39 // This line changes the location of your images when creating UIs to be relative instead of within the ExtJS directory.
40 // You MUST set this to true/string value if you are creating new UIs + supporting legacy browsers.
41 // This only applies to new UIs. It does not apply to default component images (i.e. when changing $base-color)
42 // The value can either be true, in which case the image path will be "../images/"
43 // or a string, of where the path is
44 $relative-image-path-for-uis: true; // defaults to "../images/" when true