I wonder if theres a list of all the css classnames used in html rendered by kentico
For example:
A biz forms Input fields are almost always wrapped in a div with a class "EditingFormControlNestedControl" whereas lables has a class name "EditingFormLabel" defined on them.
Is it possible to have a list of them like below?
.EditingFormNestedControl > input { } // input field
.EditingFormLable { } // lables
.[Some validation message class name] { }
....
I found a list of all the classnames used for buttons which was very helpful
.contentButton,
.sendToFriend input[type=submit],
.SubmitButton,
.ContentButton,
.LogonDialog input[type=submit],
.LoginPanelPasswordRetrieval input[type=submit],
.LongButton,
.EventManagerRegistration .EventManagerRegButton,
.filterButton,
.WishlistTable
.btnContinue input,
.CartTable input[type=submit],
.CntRatingSubmitBtn,
.myAccount .TabsContent input[type=submit],
.commentView .SubmitButton,
.SubscriptionButton,
.ProductFilter .ContentButton,
.FormButton,
.XLongButton,
.examplesToLeft input[type=submit],
.CMSSearchDialogSearchButton,
.ChangePasswordTable input[type=submit],
.RegisterButton,
.LightGradientBox input[type=submit],
.FormButton,
.ContentButton,
.signoutButton,
.EditContributionEdit,
.EditContributionDelete,
.NewItemLink,
.EditContributionClose {
...
}
- Varinder