outlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplace
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
9 years ago
|
# ./sass
|
||
|
|
||
|
This folder contains the styling for the application's views. The primary pi
|
||
|
|
||
|
## Styling
|
||
|
|
||
7 years ago
|
Sencha Cmd supports styling using Sass and integrates the styling from the theme and required packages (specified in `app.json`) with application-defined views.
|
||
9 years ago
|
|
||
|
### ./sass/etc
|
||
|
|
||
7 years ago
|
This folder contains misc. support code for Sass builds (global functions, mixins, etc.).
|
||
9 years ago
|
|
||
|
### ./sass/src
|
||
|
|
||
|
This folder contains Sass files defining CSS rules corresponding to classes
|
||
7 years ago
|
included in the application's JavaScript code build. By default, files in this
|
||
9 years ago
|
folder are mapped to the application's root namespace, 'Rambox'. This is set in
|
||
7 years ago
|
`app.json`:
|
||
9 years ago
|
|
||
7 years ago
|
```json
|
||
|
"sass": {
|
||
|
"namespace": "Rambox"
|
||
|
}
|
||
|
```
|
||
9 years ago
|
|
||
|
### ./sass/var
|
||
|
|
||
7 years ago
|
This folder contains Sass files defining Sass variables corresponding to classes included in the application's JavaScript code build.
|
||
|
By default, files in this folder are mapped to the application's root namespace, 'Rambox' in the same way as `Rambox/sass/src`.
|
||
9 years ago
|
|
||
|
## Slicing
|
||
|
|
||
7 years ago
|
Internet Explorer 8 and 9 do not support linear gradients and IE8 does not support border-radius.
|
||
|
To compensate for this, Sencha Cmd provides "image slicing" using an internal WebKit based renderer.
|
||
|
To enable this, there is a special web page that renders all components and states so they can be captured and turned into image sprites.
|
||
9 years ago
|
|
||
|
### ./sass/example
|
||
|
|
||
7 years ago
|
This folder contains the web page used to present all components and states so they can be captured as an image and used to produce images for IE8 and 9.
|