2 Replies Latest reply on Mar 18, 2010 3:48 AM by nepster48

    Rounded corners in Richfaces components

    nepster48

      I need to apply rounded corners in richfaces components. I'm able to do that in panel very easily as shown in the artical(http://community.jboss.org/thread/147532?tstart=0) but I could not do the same for rich:datatable.

      Here's my code...

       

      .rich-table
      {
      -moz-border-radius-topright:3ex;
      -moz-border-radius-topleft:3ex;
      -webkit-border-top-right-radius:3ex;
      -webkit-border-top-left-radius:3ex;
      }
      .rich-table-header                     \\ DOES NOT WORK
      {
      -moz-border-radius:3ex;
      -moz-border-radius:3ex;
      -webkit-border-top-right-radius:3ex;
      -webkit-border-top-left-radius:3ex;
      }
      .rich-panel-header                       \\WORKS FINE FOR PANELS
      {
      -moz-border-radius:3ex;
      -moz-border-radius:3ex;
      -webkit-border-top-right-radius:3ex;
      -webkit-border-top-left-radius:3ex;

      }