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