NXThemes: named styles are not rendered in CSS in the correct order.
--------------------------------------------------------------------

                 Key: NXP-2177
                 URL: http://jira.nuxeo.org/browse/NXP-2177
             Project: Nuxeo Enterprise Platform 5
          Issue Type: Bug
            Reporter: Jean-Marc Orliaguet
            Assignee: Jean-Marc Orliaguet
             Fix For: 5.2 M1


Styles that inherit from other styles should be sorted before being rendered in 
CSS to make it possible to override CSS properties. The issue exists only when 
the styles have CSS properties in common.

e.g. if: 

.style1 div {
  color: red;
}

inherits from:

.style2 div {
  color: blue;
  font-size: 11px;
}

the final CSS should be ordered as:

.style2 div {
  color: blue;
  font-size: 11px;
}

.style1 div {
  color: red;
}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.nuxeo.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

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

Reply via email to