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).


Top ↑

Return Return

(string[]) A list of CSS selectors.


Top ↑

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',

			)
		);

	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.10.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.