LLMS_Theme_Support::get_selectors_primary_color_border()
Retrieve a list of CSS selectors for elements where the primary color is used as the border color
Description Description
The primary color is a bright blue (#2295ff).
Return Return
(string[]) A list of CSS selectors.
Source Source
File: includes/theme-support/class-llms-theme-support.php
public static function get_selectors_primary_color_border() { /** * Filter the list of CSS selectors for elements where the primary color is used as the border * * @since 4.10.0 * * @param string[] $selectors A list of CSS selectors. */ return apply_filters( 'llms_theme_support_get_selectors_primary_color_background', array( // Notifications. '.llms-notification', // Featured access plan. '.llms-access-plan.featured .llms-access-plan-content', '.llms-access-plan.featured .llms-access-plan-footer', // Checkout. '.llms-checkout-section', '.llms-checkout-wrapper form.llms-login', // Notices. '.llms-notice:not(.llms-debug)', // Instructor. '.llms-instructor-info .llms-instructors .llms-author', '.llms-instructor-info .llms-instructors .llms-author .avatar', ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.10.0 | Introduced. |