Files

45 lines
644 B
PHP
Raw Permalink Normal View History

2014-12-15 22:38:07 +02:00
<style type="text/css">
<?php
2015-11-05 19:51:31 +08:00
if ( isset( $css_profile_card_bg ) ) {
2014-12-15 22:38:07 +02:00
print ".um-$form_id .um-member {
background: $css_profile_card_bg;
}";
}
2015-01-23 19:03:29 +02:00
if ( isset( $css_card_thickness ) ) {
print ".um-$form_id .um-member {
2015-03-07 13:07:49 +02:00
border-width: $css_card_thickness;
2015-01-23 19:03:29 +02:00
}";
}
2015-11-05 19:51:31 +08:00
if ( isset( $css_profile_card_text ) ) {
2014-12-15 22:38:07 +02:00
print ".um-$form_id .um-member-card * {
2015-03-07 13:07:49 +02:00
color: $css_profile_card_text;
2014-12-15 22:38:07 +02:00
}";
}
2015-11-05 19:51:31 +08:00
if ( isset( $css_card_bordercolor ) ) {
2014-12-15 22:38:07 +02:00
print ".um-$form_id .um-member {
2015-03-07 13:07:49 +02:00
border-color: $css_card_bordercolor;
2014-12-15 22:38:07 +02:00
}";
}
2015-11-05 19:51:31 +08:00
if ( isset( $css_img_bordercolor ) ) {
2014-12-15 22:38:07 +02:00
print ".um-$form_id .um-member-photo img {
2015-03-07 13:07:49 +02:00
border-color: $css_img_bordercolor;
2014-12-15 22:38:07 +02:00
}";
}
?>
</style>