Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
ce857b7c
Commit
ce857b7c
authored
Mar 26, 2014
by
Tom de Bruijn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve alignment of labels in .well-list items
parent
b7225bea
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
42 additions
and
27 deletions
+42
-27
app/assets/stylesheets/generic/lists.scss
app/assets/stylesheets/generic/lists.scss
+6
-0
app/views/admin/groups/show.html.haml
app/views/admin/groups/show.html.haml
+3
-2
app/views/admin/hooks/index.html.haml
app/views/admin/hooks/index.html.haml
+4
-2
app/views/admin/projects/index.html.haml
app/views/admin/projects/index.html.haml
+4
-3
app/views/admin/projects/show.html.haml
app/views/admin/projects/show.html.haml
+3
-2
app/views/admin/users/index.html.haml
app/views/admin/users/index.html.haml
+10
-9
app/views/admin/users/show.html.haml
app/views/admin/users/show.html.haml
+2
-1
app/views/groups/edit.html.haml
app/views/groups/edit.html.haml
+3
-2
app/views/users_groups/_users_group.html.haml
app/views/users_groups/_users_group.html.haml
+7
-6
No files found.
app/assets/stylesheets/generic/lists.scss
View file @
ce857b7c
...
...
@@ -52,6 +52,12 @@
.author
{
color
:
#999
;
}
.list-item-name
{
float
:
left
;
position
:
relative
;
top
:
3px
;
}
p
{
padding-top
:
1px
;
margin
:
0
;
...
...
app/views/admin/groups/show.html.haml
View file @
ce857b7c
...
...
@@ -70,6 +70,7 @@
-
@group
.
users_groups
.
order
(
'group_access DESC'
).
each
do
|
member
|
-
user
=
member
.
user
%li
{
class:
dom_class
(
user
)}
.list-item-name
%strong
=
link_to
user
.
name
,
admin_user_path
(
user
)
%span
.pull-right.light
...
...
app/views/admin/hooks/index.html.haml
View file @
ce857b7c
...
...
@@ -28,8 +28,10 @@
%ul
.well-list
-
@hooks
.
each
do
|
hook
|
%li
.list-item-name
=
link_to
admin_hook_path
(
hook
)
do
%strong
=
hook
.
url
.pull-right
=
link_to
'Test Hook'
,
admin_hook_test_path
(
hook
),
class:
"btn btn-small"
=
link_to
'Remove'
,
admin_hook_path
(
hook
),
data:
{
confirm:
'Are you sure?'
},
method: :delete
,
class:
"btn btn-remove btn-small"
=
link_to
admin_hook_path
(
hook
)
do
%strong
=
hook
.
url
app/views/admin/projects/index.html.haml
View file @
ce857b7c
...
...
@@ -44,6 +44,7 @@
%ul
.well-list
-
@projects
.
each
do
|
project
|
%li
.list-item-name
%span
{
class:
visibility_level_color
(
project
.
visibility_level
)
}
=
visibility_level_icon
(
project
.
visibility_level
)
=
link_to
project
.
name_with_namespace
,
[
:admin
,
project
]
...
...
app/views/admin/projects/show.html.haml
View file @
ce857b7c
...
...
@@ -116,6 +116,7 @@
-
@project
.
users_projects
.
each
do
|
users_project
|
-
user
=
users_project
.
user
%li
.users_project
.list-item-name
%strong
=
link_to
user
.
name
,
admin_user_path
(
user
)
.pull-right
...
...
app/views/admin/users/index.html.haml
View file @
ce857b7c
...
...
@@ -36,6 +36,7 @@
%ul
.well-list
-
@users
.
each
do
|
user
|
%li
.list-item-name
-
if
user
.
blocked?
%i
.icon-lock.cred
-
else
...
...
app/views/admin/users/show.html.haml
View file @
ce857b7c
...
...
@@ -124,6 +124,7 @@
-
@user
.
users_groups
.
each
do
|
user_group
|
-
group
=
user_group
.
group
%li
.users_group
%span
{
class:
(
"list-item-name"
unless
user_group
.
owner?
)}
%strong
=
link_to
group
.
name
,
admin_group_path
(
group
)
.pull-right
%span
.light
=
user_group
.
human_access
...
...
app/views/groups/edit.html.haml
View file @
ce857b7c
...
...
@@ -73,6 +73,7 @@
%ul
.well-list
-
@group
.
projects
.
each
do
|
project
|
%li
.list-item-name
=
visibility_level_icon
(
project
.
visibility_level
)
=
link_to
project
.
name_with_namespace
,
project
.pull-right
...
...
app/views/users_groups/_users_group.html.haml
View file @
ce857b7c
...
...
@@ -2,6 +2,7 @@
-
return
unless
user
-
show_roles
=
true
if
show_roles
.
nil?
%li
{
class:
"#{dom_class(member)} js-toggle-container"
,
id:
dom_id
(
member
)}
%span
{
class:
(
"list-item-name"
if
show_controls
)}
=
image_tag
avatar_icon
(
user
.
email
,
16
),
class:
"avatar s16"
%strong
=
user
.
name
%span
.cgray
=
user
.
username
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment