.ui-btn-icon-notext .ui-corner-all{}
and
.ui-btn-icon-notext > .ui-corner-all{}
One is a comma and the other is >.
> indicates the next level.
. Does it mean equal level? ? ? Or the next level?
Dots represent class styles,,, and spaces in the middle represent everything under .ui-btn-icon-notext. ui-corner-all includes grandchild element nodes. . . " " means only child element nodes. . . .