From 4bce6ac8b2cd2dfaab491bf7612a8f830a32642e Mon Sep 17 00:00:00 2001 From: Boone B Gorges Date: Thu, 2 Nov 2023 11:00:09 -0500 Subject: [PATCH] Label elements for Manage Members email status radio buttons. See #3271. --- wp-content/themes/openlab/lib/plugin-hooks.php | 8 ++++---- wp-content/themes/openlab/style.css | 4 ++++ wp-content/themes/openlab/style.less | 5 +++++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/openlab/lib/plugin-hooks.php b/wp-content/themes/openlab/lib/plugin-hooks.php index 8a03cb1ad6..a059dcf78e 100644 --- a/wp-content/themes/openlab/lib/plugin-hooks.php +++ b/wp-content/themes/openlab/lib/plugin-hooks.php @@ -87,10 +87,10 @@ function openlab_manage_members_email_status( $user_id = '', $group = '' ) { echo '
Email Status
'; echo ''; diff --git a/wp-content/themes/openlab/style.css b/wp-content/themes/openlab/style.css index 6f76658576..4266783bae 100644 --- a/wp-content/themes/openlab/style.css +++ b/wp-content/themes/openlab/style.css @@ -10327,6 +10327,10 @@ input#group-request-send { margin-left: 0; padding-left: 0; } +.group-manage-members.group-list .group-item .group-item-wrapper ul.group-manage-members-bpges-status label { + font-weight: normal; + margin-bottom: 0; +} body.membership-requests .group-list { margin-top: 0; } diff --git a/wp-content/themes/openlab/style.less b/wp-content/themes/openlab/style.less index cc4772dd66..b695c0b010 100644 --- a/wp-content/themes/openlab/style.less +++ b/wp-content/themes/openlab/style.less @@ -3306,6 +3306,11 @@ input#group-request-send { list-style-type: none; margin-left: 0; padding-left: 0; + + label { + font-weight: normal; + margin-bottom: 0; + } } } }