Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
342
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
27
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
17861ce6
Commit
17861ce6
authored
7 years ago
by
こぴなたみぽ
Browse files
Options
Downloads
Patches
Plain Diff
wip
parent
28e69298
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/web/app/desktop/-tags/list-user.tag
+0
-93
0 additions, 93 deletions
src/web/app/desktop/-tags/list-user.tag
src/web/app/desktop/views/components/list-user.vue
+101
-0
101 additions, 0 deletions
src/web/app/desktop/views/components/list-user.vue
with
101 additions
and
93 deletions
src/web/app/desktop/-tags/list-user.tag
deleted
100644 → 0
+
0
−
93
View file @
28e69298
<mk-list-user>
<a class="avatar-anchor" href={ '/' + user.username }>
<img class="avatar" src={ user.avatar_url + '?thumbnail&size=64' } alt="avatar"/>
</a>
<div class="main">
<header>
<a class="name" href={ '/' + user.username }>{ user.name }</a>
<span class="username">@{ user.username }</span>
</header>
<div class="body">
<p class="followed" v-if="user.is_followed">フォローされています</p>
<div class="description">{ user.description }</div>
</div>
</div>
<mk-follow-button user={ user }/>
<style lang="stylus" scoped>
:scope
display block
margin 0
padding 16px
font-size 16px
&:after
content ""
display block
clear both
> .avatar-anchor
display block
float left
margin 0 16px 0 0
> .avatar
display block
width 58px
height 58px
margin 0
border-radius 8px
vertical-align bottom
> .main
float left
width calc(100% - 74px)
> header
margin-bottom 2px
> .name
display inline
margin 0
padding 0
color #777
font-size 1em
font-weight 700
text-align left
text-decoration none
&:hover
text-decoration underline
> .username
text-align left
margin 0 0 0 8px
color #ccc
> .body
> .followed
display inline-block
margin 0 0 4px 0
padding 2px 8px
vertical-align top
font-size 10px
color #71afc7
background #eefaff
border-radius 4px
> .description
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
font-size 1.1em
color #717171
> mk-follow-button
position absolute
top 16px
right 16px
</style>
<script lang="typescript">this.user = this.opts.user</script>
</mk-list-user>
This diff is collapsed.
Click to expand it.
src/web/app/desktop/views/components/list-user.vue
0 → 100644
+
101
−
0
View file @
17861ce6
<
template
>
<div
class=
"mk-list-user"
>
<a
class=
"avatar-anchor"
:href=
"`/$
{user.username}`">
<img
class=
"avatar"
:src=
"`$
{user.avatar_url}?thumbnail
&
size=64`" alt="avatar"/>
</a>
<div
class=
"main"
>
<header>
<a
class=
"name"
:href=
"`/$
{user.username}`">
{{
user
.
name
}}
</a>
<span
class=
"username"
>
@
{{
user
.
username
}}
</span>
</header>
<div
class=
"body"
>
<p
class=
"followed"
v-if=
"user.is_followed"
>
フォローされています
</p>
<div
class=
"description"
>
{{
user
.
description
}}
</div>
</div>
</div>
<mk-follow-button
:user=
"user"
/>
</div>
</
template
>
<
script
lang=
"ts"
>
import
Vue
from
'
vue
'
;
export
default
Vue
.
extend
({
props
:
[
'
user
'
]
});
</
script
>
<
style
lang=
"stylus"
scoped
>
.mk-list-user
margin 0
padding 16px
font-size 16px
&:after
content ""
display block
clear both
> .avatar-anchor
display block
float left
margin 0 16px 0 0
> .avatar
display block
width 58px
height 58px
margin 0
border-radius 8px
vertical-align bottom
> .main
float left
width calc(100% - 74px)
> header
margin-bottom 2px
> .name
display inline
margin 0
padding 0
color #777
font-size 1em
font-weight 700
text-align left
text-decoration none
&:hover
text-decoration underline
> .username
text-align left
margin 0 0 0 8px
color #ccc
> .body
> .followed
display inline-block
margin 0 0 4px 0
padding 2px 8px
vertical-align top
font-size 10px
color #71afc7
background #eefaff
border-radius 4px
> .description
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
font-size 1.1em
color #717171
> mk-follow-button
position absolute
top 16px
right 16px
</
style
>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment