[10084] | 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 | See registerStylesheet() arguments in |
---|
| 22 | ResourceRegistries/tools/CSSRegistry.py for the latest list of all |
---|
| 23 | available keys and default values. |
---|
| 24 | --> |
---|
| 25 | |
---|
| 26 | <stylesheet title="" |
---|
| 27 | id="bootstrap.min.css" |
---|
| 28 | media="" rel="stylesheet" rendering="link" |
---|
| 29 | cacheable="True" compression="safe" cookable="True" |
---|
| 30 | enabled="1" expression=""/> |
---|
| 31 | |
---|
| 32 | <stylesheet title="" |
---|
| 33 | id="bootstrap-responsive.min.css" |
---|
| 34 | media="" rel="stylesheet" rendering="link" |
---|
| 35 | cacheable="True" compression="safe" cookable="True" |
---|
| 36 | enabled="1" expression=""/> |
---|
| 37 | |
---|
| 38 | <!-- Deactivate emtpy CSS stylesheet that come with Sunburst theme --> |
---|
| 39 | <stylesheet title="" |
---|
| 40 | id="base.css" |
---|
| 41 | media="screen" rel="stylesheet" rendering="link" |
---|
| 42 | cacheable="True" compression="safe" cookable="True" |
---|
| 43 | enabled="0" expression=""/> |
---|
| 44 | |
---|
| 45 | <stylesheet title="" |
---|
| 46 | id="authoring.css" |
---|
| 47 | media="screen" rel="stylesheet" rendering="link" |
---|
| 48 | cacheable="True" compression="safe" cookable="True" |
---|
| 49 | enabled="0" expression=""/> |
---|
| 50 | |
---|
| 51 | <stylesheet title="" |
---|
| 52 | id="columns.css" |
---|
| 53 | media="screen" rel="stylesheet" rendering="link" |
---|
| 54 | cacheable="True" compression="safe" cookable="True" |
---|
| 55 | enabled="0" expression=""/> |
---|
| 56 | |
---|
| 57 | <stylesheet title="" |
---|
| 58 | id="controlpanel.css" |
---|
| 59 | media="screen" rel="stylesheet" rendering="link" |
---|
| 60 | cacheable="True" compression="safe" cookable="True" |
---|
| 61 | enabled="0" expression=""/> |
---|
| 62 | |
---|
| 63 | <stylesheet title="" |
---|
| 64 | id="deprecated.css" |
---|
| 65 | media="screen" rel="stylesheet" rendering="link" |
---|
| 66 | cacheable="True" compression="safe" cookable="True" |
---|
| 67 | enabled="0" expression=""/> |
---|
| 68 | |
---|
| 69 | <stylesheet title="" |
---|
| 70 | id="forms.css" |
---|
| 71 | media="screen" rel="stylesheet" rendering="link" |
---|
| 72 | cacheable="True" compression="safe" cookable="True" |
---|
| 73 | enabled="0" expression=""/> |
---|
| 74 | |
---|
| 75 | <stylesheet title="" |
---|
| 76 | id="navtree.css" |
---|
| 77 | media="screen" rel="stylesheet" rendering="link" |
---|
| 78 | cacheable="True" compression="safe" cookable="True" |
---|
| 79 | enabled="0" expression=""/> |
---|
| 80 | |
---|
| 81 | <stylesheet title="" |
---|
| 82 | id="invisibles.css" |
---|
| 83 | media="screen" rel="stylesheet" rendering="link" |
---|
| 84 | cacheable="True" compression="safe" cookable="True" |
---|
| 85 | enabled="0" expression=""/> |
---|
| 86 | |
---|
| 87 | <stylesheet title="" |
---|
| 88 | id="kupuplone.css" |
---|
| 89 | media="screen" rel="stylesheet" rendering="link" |
---|
| 90 | cacheable="True" compression="safe" cookable="True" |
---|
| 91 | enabled="0" expression=""/> |
---|
| 92 | |
---|
| 93 | <stylesheet title="" |
---|
| 94 | id="ploneCustom.css" |
---|
| 95 | media="screen" rel="stylesheet" rendering="link" |
---|
| 96 | cacheable="True" compression="safe" cookable="True" |
---|
| 97 | enabled="0" expression=""/> |
---|
| 98 | |
---|
| 99 | <stylesheet title="" |
---|
| 100 | id="mobile.css" |
---|
| 101 | media="handheld, screen and (max-device-width: 480px)" rel="stylesheet" rendering="link" |
---|
| 102 | cacheable="True" compression="safe" cookable="True" |
---|
| 103 | enabled="0" expression=""/> |
---|
| 104 | |
---|
| 105 | |
---|
| 106 | </object> |
---|