Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Pleroma
pleroma-fe
Merge requests
!1004
Display profile fields
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Display profile fields
kphrx/pleroma-fe:iss-149/profile-fields-display
into
develop
Overview
56
Commits
14
Pipelines
6
Changes
1
Merged
kPherox
requested to merge
kphrx/pleroma-fe:iss-149/profile-fields-display
into
develop
5 years ago
Overview
56
Commits
14
Pipelines
6
Changes
1
Expand
refs
#149 (closed)
Rebasing after merge the
!995 (merged)
.
Edited
5 years ago
by
kPherox
0
0
Merge request reports
Viewing commit
87940ead
Prev
Next
Show latest version
1 file
+
5
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
87940ead
Change css selectors to classname from elementname
· 87940ead
kPherox
authored
5 years ago
src/components/user_profile/user_profile.vue
+
5
−
4
Options
@@ -18,6 +18,7 @@
<dl
v-for=
"(field, index) in user.fields_html"
:key=
"index"
class=
"user-profile-field"
>
<!-- eslint-disable vue/no-v-html -->
<dt
@@ -164,11 +165,11 @@
}
}
d
l
{
.user-profile-fiel
d
{
display
:
flex
;
margin
:
1em
1
.5em
;
dt
{
.user-profile-field-name
{
flex
:
0
0
auto
;
font-weight
:
500
;
color
:
var
(
--
lightText
);
@@ -176,13 +177,13 @@
min-width
:
120px
;
}
dd
{
.user-profile-field-value
{
flex
:
1
1
auto
;
color
:
var
(
--
text
);
margin-left
:
10px
;
}
dt
,
dd
{
.user-profile-field-name
,
.user-profile-field-value
{
line-height
:
18px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
Loading