Commit 3b22f918 authored by JC Brand's avatar JC Brand

More work on the user profile modal

parent 0bd96bbc
...@@ -5115,6 +5115,9 @@ body.reset { ...@@ -5115,6 +5115,9 @@ body.reset {
#conversejs > .row { #conversejs > .row {
flex-direction: row-reverse; } flex-direction: row-reverse; }
#conversejs label {
font-weight: bold; }
#converse-embedded-chat .flyout, #converse-embedded-chat .flyout,
#conversejs .flyout { #conversejs .flyout {
border-radius: 4px; border-radius: 4px;
......
...@@ -5171,6 +5171,9 @@ body { ...@@ -5171,6 +5171,9 @@ body {
padding-right: 1em; padding-right: 1em;
margin-right: 1em; } margin-right: 1em; }
#conversejs label {
font-weight: bold; }
#converse-embedded-chat .flyout, #converse-embedded-chat .flyout,
#conversejs .flyout { #conversejs .flyout {
border-radius: 4px; border-radius: 4px;
......
#conversejs {
label {
font-weight: bold;
}
}
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
} }
@import "../core"; @import "../core";
@import "core"; @import "core";
@import "../profile";
@import "../chatbox"; @import "../chatbox";
@import "chatbox"; @import "chatbox";
@import "../controlbox"; @import "../controlbox";
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
} }
@import "../core"; @import "../core";
@import "core"; @import "core";
@import "../profile";
@import "../chatbox"; @import "../chatbox";
@import "chatbox"; @import "chatbox";
@import "../controlbox"; @import "../controlbox";
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
toHTML () { toHTML () {
return tpl_profile_modal(_.extend(this.model.toJSON(), { return tpl_profile_modal(_.extend(this.model.toJSON(), {
'heading_profile': __('Your profile'), 'heading_profile': __('Your Profile'),
'label_close': __('Close') 'label_close': __('Close')
})); }));
}, },
......
...@@ -6,6 +6,25 @@ ...@@ -6,6 +6,25 @@
<button type="button" class="close" data-dismiss="modal" aria-label="{{{o.label_close}}}"><span aria-hidden="true">&times;</span></button> <button type="button" class="close" data-dismiss="modal" aria-label="{{{o.label_close}}}"><span aria-hidden="true">&times;</span></button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<div class="row">
<div class="col-auto">
{[ if (o.image) { ]}
<a class="show-profile" href="#">
<img alt="User Avatar" class="img-thumbnail avatar align-self-center" height="100px" width="100px" src="data:{{{o.image_type}}};base64,{{{o.image}}}"/>
</a>
{[ } ]}
</div>
<div class="col-auto">
<div classs="row w-100">
<label>Fullname:</label>
<span class="username">{{{o.fullname}}}</span>
</div>
<div classs="row w-100">
<label>XMPP Address:</label>
<span class="username">{{{o.jid}}}</span>
</div>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment