-
8 Oct 2012 7:27 AM #1
Theming: Setting variables to null
Theming: Setting variables to null
Hi,
is there a simple way to nullify a variable?
When i set a variable to null before the @import ext4/default/all it gets reseted to the default value, since sass is treating null as an unassigned variable.
A structure like the following would be nice to have.Code:@import 'compass' // Custom Variables $base-color: #aa0000; $grid-row-cell-selected-border-style: null; @import 'ext4/default/all'
A switch to omit the import of the default variables whould work aswell.
Code:@import 'compass' //Custom Variables $base-color: #aa0000; //Defaults @import 'ext4/default/variables' //Nullify Variables $grid-row-cell-selected-border-style: null; @import 'ext4/default/all-without-variables
At the momemnt i copied the structure of ext4/default/all and made changes to it so its fits my needs.
But it would be nicer if there is a simpler way which doesn't involve changing existing files (Minimizing the effort to upgrade to newer ext versions).
-
10 Oct 2012 8:07 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 436
Setting $grid-row-cell-selected-border-style to null isn't valid CSS then
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote