[5699] | 1 | <?xml version="1.0"?> |
---|
| 2 | <!-- This file holds the setup configuration for the portal_css tool. --> |
---|
| 3 | |
---|
| 4 | <object name="portal_css"> |
---|
| 5 | |
---|
| 6 | <!-- Stylesheets that will be registered with the portal_css tool are defined |
---|
| 7 | here. You can also specify values for existing resources if you need to |
---|
| 8 | modify some of their properties. |
---|
| 9 | Stylesheet elements accept these parameters: |
---|
| 10 | - 'id' (required): it must respect the name of the css or DTML file |
---|
| 11 | (case sensitive). '.dtml' suffixes must be ignored. |
---|
| 12 | - 'expression' (optional - default: ''): a tal condition. |
---|
| 13 | - 'media' (optional - default: ''): possible values: 'screen', 'print', |
---|
| 14 | 'projection', 'handheld'... |
---|
| 15 | - 'rel' (optional - default: 'stylesheet') |
---|
| 16 | - 'title' (optional - default: '') |
---|
| 17 | - 'rendering' (optional - default: 'import'): 'import', 'link' or |
---|
| 18 | 'inline'. |
---|
| 19 | - 'enabled' (optional - default: True): boolean |
---|
| 20 | - 'cookable' (optional - default: True): boolean (aka 'merging allowed') |
---|
| 21 | - 'insert_before', 'insert_after' (optional - default: '') resource id |
---|
| 22 | See registerStylesheet() arguments in |
---|
| 23 | ResourceRegistries/tools/CSSRegistry.py for the latest list of all |
---|
| 24 | available keys and default values. |
---|
| 25 | --> |
---|
| 26 | <stylesheet title="" |
---|
| 27 | id="++resource++waeup.plonetheme.stylesheets/main.css" |
---|
| 28 | media="screen" rel="stylesheet" rendering="import" |
---|
| 29 | cacheable="True" compression="safe" cookable="True" |
---|
| 30 | enabled="1" expression=""/> |
---|
[5869] | 31 | <stylesheet title="" |
---|
| 32 | id="print_custom.css" |
---|
| 33 | media="print" rel="stylesheet" rendering="import" |
---|
| 34 | cacheable="True" compression="safe" cookable="True" |
---|
| 35 | enabled="1" expression=""/> |
---|
[5699] | 36 | |
---|
| 37 | </object> |
---|