diff --git a/themes/wporg-5ftf/css/components/_team-badges.scss b/themes/wporg-5ftf/css/components/_team-badges.scss index d2289fb..3d78512 100644 --- a/themes/wporg-5ftf/css/components/_team-badges.scss +++ b/themes/wporg-5ftf/css/components/_team-badges.scss @@ -131,6 +131,14 @@ color: rgb(103, 74, 255); } +.badge-photos { + background: rgba(103, 74, 255, 0.25); + box-shadow: 0 0 0 4px rgb(103, 74, 255); +} +.badge-photos:before { + color: rgb(103, 74, 255); +} + .badge-training{ background: rgba(233, 192, 45, 0.25); box-shadow: 0 0 0 4px rgb(233, 192, 45); diff --git a/themes/wporg-5ftf/functions.php b/themes/wporg-5ftf/functions.php index 3a7d4eb..5f56cdc 100644 --- a/themes/wporg-5ftf/functions.php +++ b/themes/wporg-5ftf/functions.php @@ -287,6 +287,10 @@ function get_badge_classes( $team ) { $classes = array( 'badge-openverse', 'dashicons-search' ); break; + case 'photos team': + $classes = array( 'badge-photos', 'dashicons-camera' ); + break; + case 'polyglots team': $classes = array( 'badge-translation-editor', 'dashicons-translation' ); break;