I'm using Liferay Portal Community Edition 6.2 CE GA2 (Newton / Build 6201 / March 20, 2014). It uses AlloyUI.
Every page in my project is created by using JSF and Primefaces. Unfortunately AUI css has ie. that rule:
.aui input {
width: 209px;
}
... and my colorpicker created by PF looks like this
Best solution for me is reseting aui css for portlet, how to do it? Sorry for my english.
liferay-portlet.xml
[...]
<portlet>
<portlet-name>DSeedvar</portlet-name>
<icon>/icon.png</icon>
<requires-namespaced-parameters>false</requires-namespaced-parameters>
<header-portlet-css>/css/main.css</header-portlet-css>
<footer-portlet-javascript>/js/main.js</footer-portlet-javascript>
<css-class-wrapper>seedvar-portlet</css-class-wrapper>
</portlet>
[...]