init repo
This commit is contained in:
20
OfficeWeb/3rdparty/extjs/resources/themes/templates/resources/sass/config.rb
vendored
Normal file
20
OfficeWeb/3rdparty/extjs/resources/themes/templates/resources/sass/config.rb
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
# $ext_path: This should be the path of the Ext JS SDK relative to this file
|
||||
$ext_path = "../../extjs"
|
||||
|
||||
# sass_path: the directory your Sass files are in. THIS file should also be in the Sass folder
|
||||
# Generally this will be in a resources/sass folder
|
||||
# <root>/resources/sass
|
||||
sass_path = File.dirname(__FILE__)
|
||||
|
||||
# css_path: the directory you want your CSS files to be.
|
||||
# Generally this is a folder in the parent directory of your Sass files
|
||||
# <root>/resources/css
|
||||
css_path = File.join(sass_path, "..", "css")
|
||||
|
||||
# output_style: The output style for your compiled CSS
|
||||
# nested, expanded, compact, compressed
|
||||
# More information can be found here http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style
|
||||
output_style = :compressed
|
||||
|
||||
# We need to load in the Ext4 themes folder, which includes all it's default styling, images, variables and mixins
|
||||
load File.join(File.dirname(__FILE__), $ext_path, 'resources', 'themes')
|
||||
45
OfficeWeb/3rdparty/extjs/resources/themes/templates/resources/sass/my-ext-theme.scss
vendored
Normal file
45
OfficeWeb/3rdparty/extjs/resources/themes/templates/resources/sass/my-ext-theme.scss
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
// Unless you want to include all components, you must set $include-default to false
|
||||
// IF you set this to true, you can also remove lines 10 to 38 of this file
|
||||
$include-default: false;
|
||||
|
||||
// Insert your custom variables here.
|
||||
// $base-color: #aa0000;
|
||||
|
||||
@import 'ext4/default/all';
|
||||
|
||||
// You may remove any of the following modules that you
|
||||
// do not use in order to create a smaller css file.
|
||||
@include extjs-boundlist;
|
||||
@include extjs-button;
|
||||
@include extjs-btn-group;
|
||||
@include extjs-datepicker;
|
||||
@include extjs-colorpicker;
|
||||
@include extjs-menu;
|
||||
@include extjs-grid;
|
||||
@include extjs-form;
|
||||
@include extjs-form-field;
|
||||
@include extjs-form-fieldset;
|
||||
@include extjs-form-file;
|
||||
@include extjs-form-checkboxfield;
|
||||
@include extjs-form-checkboxgroup;
|
||||
@include extjs-form-triggerfield;
|
||||
@include extjs-form-htmleditor;
|
||||
@include extjs-panel;
|
||||
@include extjs-qtip;
|
||||
@include extjs-slider;
|
||||
@include extjs-progress;
|
||||
@include extjs-toolbar;
|
||||
@include extjs-window;
|
||||
@include extjs-messagebox;
|
||||
@include extjs-tabbar;
|
||||
@include extjs-tab;
|
||||
@include extjs-tree;
|
||||
@include extjs-drawcomponent;
|
||||
@include extjs-viewport;
|
||||
|
||||
// This line changes the location of your images when creating UIs to be relative instead of within the ExtJS directory.
|
||||
// You MUST set this to true/string value if you are creating new UIs + supporting legacy browsers.
|
||||
// This only applies to new UIs. It does not apply to default component images (i.e. when changing $base-color)
|
||||
// The value can either be true, in which case the image path will be "../images/"
|
||||
// or a string, of where the path is
|
||||
$relative-image-path-for-uis: true; // defaults to "../images/" when true
|
||||
Reference in New Issue
Block a user