mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-01 16:51:18 +03:00
Fix badge icon for themes team
This commit is contained in:
parent
ba529d54f7
commit
2b39addca2
|
@ -42,7 +42,13 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.badge-themes {
|
||||||
|
background: white;
|
||||||
|
box-shadow: 0 0 0 4px rgb(78, 50, 136);
|
||||||
|
}
|
||||||
|
.badge-themes::before {
|
||||||
|
color: rgb(78, 50, 136);
|
||||||
|
}
|
||||||
.badge-themes-reviewer {
|
.badge-themes-reviewer {
|
||||||
background: rgba(78, 50, 136, 0.25);
|
background: rgba(78, 50, 136, 0.25);
|
||||||
box-shadow: 0 0 0 4px rgb(78, 50, 136);
|
box-shadow: 0 0 0 4px rgb(78, 50, 136);
|
||||||
|
|
|
@ -272,6 +272,10 @@ function get_badge_classes( $team ) {
|
||||||
$classes = array( 'badge-test-team', 'dashicons-desktop' );
|
$classes = array( 'badge-test-team', 'dashicons-desktop' );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'themes team':
|
||||||
|
$classes = array( 'badge-themes', 'dashicons-admin-appearance' );
|
||||||
|
break;
|
||||||
|
|
||||||
case 'theme review team':
|
case 'theme review team':
|
||||||
$classes = array( 'badge-themes-reviewer', 'dashicons-admin-appearance' );
|
$classes = array( 'badge-themes-reviewer', 'dashicons-admin-appearance' );
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue