The following excerpt from the PrimeFaces documentation makes it seem as there is a difference between the two selectors described in the title:
.ui-widget, .ui-widget .ui-widget {
font-size: 90% !important;
}
Can someone explain the significance of the second selector (".ui-widget .ui-widget") to me? I understand that it matches elements of class "ui-widget" that are themselves children of other elements of the same class, but wouldn't those already be selected by the first selector?