mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-01 15:31:16 +00:00
add word-wrap to member modal, linky and <a> for website
This commit is contained in:
parent
5d160c7f21
commit
75613b0508
2 changed files with 8 additions and 5 deletions
|
|
@ -161,4 +161,7 @@ hr
|
|||
padding 1px 3px 1px 3px
|
||||
|
||||
a
|
||||
cursor: pointer
|
||||
cursor: pointer
|
||||
|
||||
#modalMember p
|
||||
word-wrap: break-word;
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
div(ng-controller='MemberModalCtrl')
|
||||
div(modal='modals.member')
|
||||
#memberModal(modal='modals.member')
|
||||
.modal-header
|
||||
h3
|
||||
span {{username(profile.auth, profile.profile.name)}}
|
||||
span(ng-show='profile.backer.contributor') - {{profile.backer.contributor}}
|
||||
.modal-body
|
||||
app:avatar:profile
|
||||
.row-fluid
|
||||
.span6
|
||||
img(ng-show='profile.profile.imageUrl', ng-src='{{profile.profile.imageUrl}}')
|
||||
p(ng-show='profile.profile.blurb') {{profile.profile.blurb}}
|
||||
p(ng-show='profile.profile.blurb') {{profile.profile.blurb | linky:'_blank'}}
|
||||
ul(ng-show='profile.profile.websites')
|
||||
li(ng-repeat='website in profile.profile.websites') {{website}}
|
||||
li(ng-repeat='website in profile.profile.websites')
|
||||
a(href="{{website}}") {{website}}
|
||||
h3 Stats
|
||||
include ../profiles/stats
|
||||
.span6
|
||||
|
|
|
|||
Loading…
Reference in a new issue