Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
Description
Some components, as instance Table and Calendar (maybe others as well), import a CSS definition
The imported "link" tag is defined as:
<link type='text/css' href='/context/click/table.css' title='style' >
while it would be better to have
<link type='text/css' rel="stylesheet" href='/context/click/table.css' />
with the rel="stylesheet" attribute and without the title attribute.
This would allow to use the method described in
http://www.alistapart.com/articles/alternate/
to manage multiple styesheets
Also, please mind the fact that the link tag should be closed.
Thanks.