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