aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-08 18:16:42 -0800
committerredmatrix <git@macgirvin.com>2016-02-08 18:16:42 -0800
commit315ce6d880855444c0cea683810b9b2fbd80c0d3 (patch)
treeac5563685ba1d7037cbe9d90e92b18c24140495d /view
parent3da8f9b13c92adab25507ab5cd36cdec27889cac (diff)
downloadvolse-hubzilla-315ce6d880855444c0cea683810b9b2fbd80c0d3.tar.gz
volse-hubzilla-315ce6d880855444c0cea683810b9b2fbd80c0d3.tar.bz2
volse-hubzilla-315ce6d880855444c0cea683810b9b2fbd80c0d3.zip
lots more zcard tweaks
Diffstat (limited to 'view')
-rwxr-xr-xview/tpl/profile_vcard.tpl6
-rw-r--r--view/tpl/zcard.tpl37
2 files changed, 29 insertions, 14 deletions
diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl
index 5857ae5d1..56c262564 100755
--- a/view/tpl/profile_vcard.tpl
+++ b/view/tpl/profile_vcard.tpl
@@ -1,8 +1,11 @@
<div class="vcard">
+ {{if ! $zcard}}
<div id="profile-photo-wrapper"><img class="photo" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div>
+ {{/if}}
{{if $connect}}
<div class="connect-btn-wrapper"><a href="{{$connect_url}}" class="btn btn-block btn-success btn-sm"><i class="icon-plus"></i> {{$connect}}</a></div>
{{/if}}
+ {{if ! $zcard}}
{{if $profile.edit}}
<div class="dropdown">
<a class="profile-edit-side-link dropdown-toggle" data-toggle="dropdown" title="{{$profile.edit.3}}" href="#" ><i class="icon-pencil" title="{{$profile.edit.1}}" ></i></a>
@@ -17,9 +20,12 @@
</ul>
</div>
{{/if}}
+ {{/if}}
+ {{if ! $zcard}}
<div class="fn">{{$profile.name}}{{if $profile.online}} <i class="icon-asterisk online-now" title="{{$profile.online}}"></i>{{/if}}</div>
{{if $reddress}}<div class="reddress" oncopy="return false;">{{$profile.reddress}}</div>{{/if}}
+ {{/if}}
{{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
diff --git a/view/tpl/zcard.tpl b/view/tpl/zcard.tpl
index b73b1011c..908f07631 100644
--- a/view/tpl/zcard.tpl
+++ b/view/tpl/zcard.tpl
@@ -41,41 +41,50 @@
}
{{elseif $size == 'hz_medium'}}
.hz_card {
- -moz-transform: translate(-{{$translate}}%, -{{$translate}}%) scale({{$scale}}, {{$scale}});
- transform: translate(-{{$translate}}%, -{{$translate}}%) scale({{$scale}}, {{$scale}});
+/* -moz-transform: translate(-{{$translate}}%, -{{$translate}}%) scale({{$scale}}, {{$scale}});
+ transform: translate(-{{$translate}}%, -{{$translate}}%) scale({{$scale}}, {{$scale}}); */
font-family: sans-serif, arial, freesans;
+ width: 100%;
+ overflow: hidden;
+ height: 390px;
}
-.hz_cover_photo {
- max-width: 100%;
+.hz_cover_photo img {
+ width: {{$maxwidth}}px;
+/* max-width: 100%; */
}
.hz_profile_photo {
position: relative;
- top: -300px;
+ top: -165px;
left: 30px;
+
+ width: 150px;
+ height: 150px;
+}
+.hz_profile_photo img {
background-color: white;
border: 1px solid #ddd;
border-radius: 5px;
-moz-border-radius: 5px;
- padding: 10px;
- width: 320px;
- height: 320px;
+ padding: 5px;
+ width: 150px;
+ height: 150px;
}
.hz_name {
position: relative;
top: -100px;
- left: 400px;
+ left: 210px;
color: #fff;
- font-size: 48px;
+ font-size: 32px;
text-rendering: optimizelegibility;
text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.hz_addr {
position: relative;
- top: -110px;
- left: 400px;
+ top: -100px;
+ left: 210px;
color: #fff;
- font-size: 24px;
+ font-size: 18px;
text-rendering: optimizelegibility;
text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
@@ -130,6 +139,6 @@
<div class="hz_name">{{$zcard.chan.xchan_name}}</div>
<div class="hz_addr">{{$zcard.chan.channel_addr}}</div>
</div>
- <div class="hz_profile_photo"><img style="width: {{$pphoto.width}}px; height: {{$pphoto.height}}px;" src="{{$pphoto.href}}" alt="{{$zcard.chan.xchan_name}}" /></div>
+ <div class="hz_profile_photo"><img src="{{$pphoto.href}}" alt="{{$zcard.chan.xchan_name}}" /></div>
</div>