Bruno LAURET wrote:
Bonjour,
Je voudrais personnaliser la chartre graphique mais quand je passe en mode
edition (engine=editor) et que je veux éditer un canvenas je n'ai rien dans
les propriétés. Quelle est la procédure exact?
Merci de votre réponse.
Bruno

Hi,

the theme editor isn't finished yet, so all you can do right now through the editor is:
- move / add / duplicate / remove fragments
- associate a widget to a fragment (when several widgets are registered for a given type of fragment)
- control their visibility
- export themes in XML

soon:
- change the layout
- add pages
- edit styles

right now you can do that in XML by modifying the resources/META-INF/nxthemes-setup.xml file

styles are registered as:

  <style element="page/section[3]/cell[1]">

     <selector path="div .langSubmit:hover">
       <font-size>9px</font-size>
     </selector>

  </style>


where element="..." is the xpath of the element to add a style to, and the content is what you'd write in CSS as:

div .langSubmit:hover {
 font-size: 9px;
}

Regards
/JM
_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

Reply via email to