I've little problem about skinning in layout using primefaces [primaces 3.0M3] in this case I wanna call css script from my xhtml project and change the scrollbar view, but when call it, my page doesn't detect my css class.
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Facelet Title</title>
<style type="text/css">
/* #leftPanel {z-index:2 !important; }*/
#leftPanel div{overflow:visible;
background-color: #99cc00;
overflow-y: scroll;
}
.pf-layout-pane-north {
background: #050000;
border: 0;
padding: 0;
}
.pf-layout-pane-west, .pf-layout-pane-east {
padding: 0;
border: 0;
background: #050000;
}
.pf-layout-pane-south {
text-align: center;
vertical-align: middle;
border: 0;
background: #050000;
}
**.pf-layout-pane-center {
scrollbar-arrow-color: #000000;
scrollbar-base-color: #00CCFF;
scrollbar-face-color: #0099FF;
scrollbar-highlight-color: #00CCFF;
scrollbar-shadow-color: #00CCFF;
scrollbar-3dlight-color: #00CCFF;
scrollbar-track-color: #00CCFF;
scrollbar-darkshadow-color: #00CCFF;
}**
.yui-skin-sam .yui-layout {
background-color: red;
}
</style>
</h:head>
<h:body>
<p:layout fullPage="true">
<p:layoutUnit position="north" size="100" header="Top" resizable="true" closable="true" collapsible="true">
<h:outputText value="Top unit content." />
</p:layoutUnit>
<p:layoutUnit position="south" size="100" header="Bottom" resizable="true" closable="true" collapsible="true">
<h:outputText value="South unit content." />
</p:layoutUnit>
<p:layoutUnit position="west" size="200" header="Left" resizable="true" closable="true" collapsible="true">
</p:layoutUnit>
<p:layoutUnit position="east" size="200" header="Right" resizable="true" closable="true" collapsible="true">
<h:outputText value="Right unit content." />
</p:layoutUnit>
**<p:layoutUnit position="center" styleClass="pf-layout-pane-center">
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
<p>//content</p>
</p:layoutUnit>**
</p:layout>
</h:body>