Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Greenlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arbeitsgruppe Hardwarenahe IT-Systeme
Greenlight
Commits
315bb1af
Commit
315bb1af
authored
Jul 8, 2019
by
farhatahmad
Committed by
Jesus Federico
Jul 8, 2019
Browse files
Options
Downloads
Patches
Plain Diff
Added a max-width to the email column in the manage users table (#611)
parent
f6bd959c
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/assets/stylesheets/admins.scss
+4
-0
4 additions, 0 deletions
app/assets/stylesheets/admins.scss
app/views/shared/admin_settings/_users.html.erb
+2
-2
2 additions, 2 deletions
app/views/shared/admin_settings/_users.html.erb
with
6 additions
and
2 deletions
app/assets/stylesheets/admins.scss
+
4
−
0
View file @
315bb1af
...
...
@@ -18,6 +18,10 @@
.user-role
{
color
:
white
!
important
;
}
.user-email
{
max-width
:
250px
;
}
}
#clear-search
{
...
...
This diff is collapsed.
Click to expand it.
app/views/shared/admin_settings/_users.html.erb
+
2
−
2
View file @
315bb1af
...
...
@@ -21,7 +21,7 @@
<div
class=
"row"
>
<div
class=
"col-12"
>
<div
class=
"table-responsive"
>
<table
class=
"table table-hover table-outline table-vcenter
text-nowrap
card-table"
>
<table
class=
"table table-hover table-outline table-vcenter card-table"
>
<thead>
<tr>
<th
data-header=
"name"
data-order=
"
<%=
@order_column
==
"name"
?
@order_direction
:
"none"
%>
"
>
...
...
@@ -69,7 +69,7 @@
<div>
<%=
user
.
name
%>
</div>
<div
class=
"small text-muted"
>
<%=
[
t
(
"administrator.users.table.created"
),
": "
,
user
.
created_at
].
join
%>
</div>
</td>
<td>
<%=
user
.
email
&&
user
.
email
!=
""
?
user
.
email
:
user
.
username
%>
</td>
<td
class=
"user-email"
>
<%=
user
.
email
&&
user
.
email
!=
""
?
user
.
email
:
user
.
username
%>
</td>
<td>
<%=
user
.
provider
%>
</td>
<td
class=
"text-center"
>
<%
roles
=
user
.
roles
().
pluck
(
:name
)
%>
...
...
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