mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
45 lines
600 B
PHP
45 lines
600 B
PHP
<style type="text/css">
|
|
<?php
|
|
|
|
if ($css_profile_card_bg) {
|
|
|
|
print ".um-$form_id .um-member {
|
|
background: $css_profile_card_bg;
|
|
}";
|
|
|
|
}
|
|
|
|
if ( isset( $css_card_thickness ) ) {
|
|
|
|
print ".um-$form_id .um-member {
|
|
border-width: $css_card_thickness;
|
|
}";
|
|
|
|
}
|
|
|
|
if ($css_profile_card_text) {
|
|
|
|
print ".um-$form_id .um-member-card * {
|
|
color: $css_profile_card_text;
|
|
}";
|
|
|
|
}
|
|
|
|
if ($css_card_bordercolor) {
|
|
|
|
print ".um-$form_id .um-member {
|
|
border-color: $css_card_bordercolor;
|
|
}";
|
|
|
|
}
|
|
|
|
if ($css_img_bordercolor) {
|
|
|
|
print ".um-$form_id .um-member-photo img {
|
|
border-color: $css_img_bordercolor;
|
|
}";
|
|
|
|
}
|
|
|
|
?>
|
|
</style>
|