liquid_feedback_frontend
diff app/main/member/_profile.lua @ 700:a2d907f12dd8
Optical improvements
| author | bsw | 
|---|---|
| date | Tue Jun 26 19:40:29 2012 +0200 (2012-06-26) | 
| parents | 3e4f6534bb15 | 
| children | 6c5cc85f59c1 | 
   line diff
1.1 --- a/app/main/member/_profile.lua Tue Jun 26 19:29:58 2012 +0200 1.2 +++ b/app/main/member/_profile.lua Tue Jun 26 19:40:29 2012 +0200 1.3 @@ -10,7 +10,7 @@ 1.4 end 1.5 1.6 ui.form{ 1.7 - attr = { class = "box member vertical" }, 1.8 + attr = { class = "member_statement member vertical" }, 1.9 record = member, 1.10 readonly = true, 1.11 content = function() 1.12 @@ -110,16 +110,16 @@ 1.13 if member.last_activity then 1.14 ui.field.text{ label = _"Last activity (updated daily)", value = format.date(member.last_activity) or _"not yet" } 1.15 end 1.16 + slot.put("<br style=\"clear: both;\" /><br />") 1.17 1.18 if member.statement and #member.statement > 0 then 1.19 ui.container{ 1.20 - attr = { class = "member_statement wiki" }, 1.21 + attr = { class = " wiki" }, 1.22 content = function() 1.23 slot.put(member:get_content("html")) 1.24 end 1.25 } 1.26 end 1.27 - slot.put("<br style=\"clear: both;\" />") 1.28 end 1.29 } 1.30