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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fb99a430
Commit
fb99a430
authored
Oct 31, 2016
by
tauriedavis
Committed by
Annabel Dunstone Gray
Nov 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
23545 Fix distorted project and group avatars
parent
aba94f65
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
77 additions
and
43 deletions
+77
-43
app/assets/stylesheets/framework/avatar.scss
app/assets/stylesheets/framework/avatar.scss
+43
-20
app/assets/stylesheets/framework/lists.scss
app/assets/stylesheets/framework/lists.scss
+0
-4
app/assets/stylesheets/pages/dashboard.scss
app/assets/stylesheets/pages/dashboard.scss
+0
-4
app/assets/stylesheets/pages/groups.scss
app/assets/stylesheets/pages/groups.scss
+9
-0
app/assets/stylesheets/pages/projects.scss
app/assets/stylesheets/pages/projects.scss
+2
-2
app/views/admin/groups/_group.html.haml
app/views/admin/groups/_group.html.haml
+2
-1
app/views/admin/groups/show.html.haml
app/views/admin/groups/show.html.haml
+2
-1
app/views/admin/projects/index.html.haml
app/views/admin/projects/index.html.haml
+2
-1
app/views/groups/edit.html.haml
app/views/groups/edit.html.haml
+2
-1
app/views/groups/show.html.haml
app/views/groups/show.html.haml
+2
-1
app/views/projects/_home_panel.html.haml
app/views/projects/_home_panel.html.haml
+2
-1
app/views/projects/edit.html.haml
app/views/projects/edit.html.haml
+2
-1
app/views/shared/groups/_group.html.haml
app/views/shared/groups/_group.html.haml
+2
-1
app/views/shared/projects/_project.html.haml
app/views/shared/projects/_project.html.haml
+5
-4
app/views/users/_groups.html.haml
app/views/users/_groups.html.haml
+2
-1
No files found.
app/assets/stylesheets/framework/avatar.scss
View file @
fb99a430
.avatar
{
@mixin
avatar-size
(
$size
,
$margin-right
)
{
width
:
$size
;
height
:
$size
;
margin-right
:
$margin-right
;
}
.avatar-container
{
float
:
left
;
float
:
left
;
margin-right
:
12px
;
margin-right
:
15px
;
border-radius
:
$avatar_radius
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
.1
);
&
.s16
{
@include
avatar-size
(
16px
,
6px
);
}
&
.s20
{
@include
avatar-size
(
20px
,
7px
);
}
&
.s24
{
@include
avatar-size
(
24px
,
8px
);
}
&
.s26
{
@include
avatar-size
(
26px
,
8px
);
}
&
.s32
{
@include
avatar-size
(
32px
,
10px
);
}
&
.s36
{
@include
avatar-size
(
36px
,
10px
);
}
&
.s40
{
@include
avatar-size
(
40px
,
10px
);
}
&
.s46
{
@include
avatar-size
(
46px
,
15px
);
}
&
.s48
{
@include
avatar-size
(
48px
,
10px
);
}
&
.s60
{
@include
avatar-size
(
60px
,
12px
);
}
&
.s70
{
@include
avatar-size
(
70px
,
14px
);
}
&
.s90
{
@include
avatar-size
(
90px
,
15px
);
}
&
.s110
{
@include
avatar-size
(
110px
,
15px
);
}
&
.s140
{
@include
avatar-size
(
140px
,
15px
);
}
&
.s160
{
@include
avatar-size
(
160px
,
20px
);
}
}
.avatar
{
@extend
.avatar-container
;
width
:
40px
;
width
:
40px
;
height
:
40px
;
height
:
40px
;
padding
:
0
;
padding
:
0
;
border-radius
:
$avatar_radius
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
.1
);
&
.avatar-inline
{
&
.avatar-inline
{
float
:
none
;
float
:
none
;
...
@@ -20,22 +45,6 @@
...
@@ -20,22 +45,6 @@
border-radius
:
0
;
border-radius
:
0
;
border
:
none
;
border
:
none
;
}
}
&
.s16
{
width
:
16px
;
height
:
16px
;
margin-right
:
6px
;
}
&
.s20
{
width
:
20px
;
height
:
20px
;
margin-right
:
7px
;
}
&
.s24
{
width
:
24px
;
height
:
24px
;
margin-right
:
8px
;
}
&
.s26
{
width
:
26px
;
height
:
26px
;
margin-right
:
8px
;
}
&
.s32
{
width
:
32px
;
height
:
32px
;
margin-right
:
10px
;
}
&
.s36
{
width
:
36px
;
height
:
36px
;
margin-right
:
10px
;
}
&
.s40
{
width
:
40px
;
height
:
40px
;
margin-right
:
10px
;
}
&
.s46
{
width
:
46px
;
height
:
46px
;
margin-right
:
15px
;
}
&
.s48
{
width
:
48px
;
height
:
48px
;
margin-right
:
10px
;
}
&
.s60
{
width
:
60px
;
height
:
60px
;
margin-right
:
12px
;
}
&
.s70
{
width
:
70px
;
height
:
70px
;
margin-right
:
14px
;
}
&
.s90
{
width
:
90px
;
height
:
90px
;
margin-right
:
15px
;
}
&
.s110
{
width
:
110px
;
height
:
110px
;
margin-right
:
15px
;
}
&
.s140
{
width
:
140px
;
height
:
140px
;
margin-right
:
20px
;
}
&
.s160
{
width
:
160px
;
height
:
160px
;
margin-right
:
20px
;
}
}
}
.identicon
{
.identicon
{
...
@@ -54,3 +63,17 @@
...
@@ -54,3 +63,17 @@
&
.s140
{
font-size
:
72px
;
line-height
:
138px
;
}
&
.s140
{
font-size
:
72px
;
line-height
:
138px
;
}
&
.s160
{
font-size
:
96px
;
line-height
:
158px
;
}
&
.s160
{
font-size
:
96px
;
line-height
:
158px
;
}
}
}
.image-container
{
@extend
.avatar-container
;
overflow
:
hidden
;
display
:
flex
;
.avatar
{
border-radius
:
0
;
border
:
none
;
height
:
auto
;
margin
:
0
;
align-self
:
center
;
}
}
\ No newline at end of file
app/assets/stylesheets/framework/lists.scss
View file @
fb99a430
...
@@ -142,10 +142,6 @@ ul.content-list {
...
@@ -142,10 +142,6 @@ ul.content-list {
}
}
}
}
.avatar
{
margin-right
:
15px
;
}
.controls
{
.controls
{
float
:
right
;
float
:
right
;
...
...
app/assets/stylesheets/pages/dashboard.scss
View file @
fb99a430
...
@@ -36,10 +36,6 @@
...
@@ -36,10 +36,6 @@
}
}
}
}
.dash-project-avatar
{
float
:
left
;
}
.dash-project-access-icon
{
.dash-project-access-icon
{
float
:
left
;
float
:
left
;
margin-right
:
5px
;
margin-right
:
5px
;
...
...
app/assets/stylesheets/pages/groups.scss
View file @
fb99a430
...
@@ -3,12 +3,14 @@
...
@@ -3,12 +3,14 @@
}
}
.dashboard
.side
.panel
.panel-heading
.input-group
{
.dashboard
.side
.panel
.panel-heading
.input-group
{
.form-control
{
.form-control
{
height
:
42px
;
height
:
42px
;
}
}
}
}
.group-row
{
.group-row
{
.stats
{
.stats
{
float
:
right
;
float
:
right
;
line-height
:
$list-text-height
;
line-height
:
$list-text-height
;
...
@@ -21,12 +23,14 @@
...
@@ -21,12 +23,14 @@
}
}
.ldap-group-links
{
.ldap-group-links
{
.form-actions
{
.form-actions
{
margin-bottom
:
$gl-padding
;
margin-bottom
:
$gl-padding
;
}
}
}
}
.groups-cover-block
{
.groups-cover-block
{
.container-fluid
{
.container-fluid
{
position
:
relative
;
position
:
relative
;
}
}
...
@@ -41,9 +45,14 @@
...
@@ -41,9 +45,14 @@
background-color
:
$background-color
;
background-color
:
$background-color
;
}
}
}
}
.group-avatar
{
border
:
0
;
}
}
}
.groups-header
{
.groups-header
{
@media
(
min-width
:
$screen-sm-min
)
{
@media
(
min-width
:
$screen-sm-min
)
{
.nav-links
{
.nav-links
{
width
:
35%
;
width
:
35%
;
...
...
app/assets/stylesheets/pages/projects.scss
View file @
fb99a430
...
@@ -96,8 +96,8 @@
...
@@ -96,8 +96,8 @@
.project-avatar
{
.project-avatar
{
float
:
none
;
float
:
none
;
margin
-left
:
auto
;
margin
:
0
auto
;
margin-right
:
auto
;
border
:
none
;
&
.identicon
{
&
.identicon
{
border-radius
:
50%
;
border-radius
:
50%
;
...
...
app/views/admin/groups/_group.html.haml
View file @
fb99a430
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
,
placement:
'left'
},
title:
visibility_icon_description
(
group
)}
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
,
placement:
'left'
},
title:
visibility_icon_description
(
group
)}
=
visibility_level_icon
(
group
.
visibility_level
,
fw:
false
)
=
visibility_level_icon
(
group
.
visibility_level
,
fw:
false
)
=
image_tag
group_icon
(
group
),
class:
"avatar s40 hidden-xs"
.image-container.s40
=
image_tag
group_icon
(
group
),
class:
"avatar s40 hidden-xs"
.title
.title
=
link_to
[
:admin
,
group
],
class:
'group-name'
do
=
link_to
[
:admin
,
group
],
class:
'group-name'
do
=
group
.
name
=
group
.
name
...
...
app/views/admin/groups/show.html.haml
View file @
fb99a430
...
@@ -13,7 +13,8 @@
...
@@ -13,7 +13,8 @@
Group info:
Group info:
%ul
.well-list
%ul
.well-list
%li
%li
=
image_tag
group_icon
(
@group
),
class:
"avatar s60"
.image-container.s60
=
image_tag
group_icon
(
@group
),
class:
"avatar s60"
%li
%li
%span
.light
Name:
%span
.light
Name:
%strong
=
@group
.
name
%strong
=
@group
.
name
...
...
app/views/admin/projects/index.html.haml
View file @
fb99a430
...
@@ -76,7 +76,8 @@
...
@@ -76,7 +76,8 @@
.title
.title
=
link_to
[
:admin
,
project
.
namespace
.
becomes
(
Namespace
),
project
]
do
=
link_to
[
:admin
,
project
.
namespace
.
becomes
(
Namespace
),
project
]
do
.dash-project-avatar
.dash-project-avatar
=
project_icon
(
project
,
alt:
''
,
class:
'avatar project-avatar s40'
)
.image-container.s40
=
project_icon
(
project
,
alt:
''
,
class:
'avatar project-avatar s40'
)
%span
.project-full-name
%span
.project-full-name
%span
.namespace-name
%span
.namespace-name
-
if
project
.
namespace
-
if
project
.
namespace
...
...
app/views/groups/edit.html.haml
View file @
fb99a430
...
@@ -8,7 +8,8 @@
...
@@ -8,7 +8,8 @@
.form-group
.form-group
.col-sm-offset-2.col-sm-10
.col-sm-offset-2.col-sm-10
=
image_tag
group_icon
(
@group
),
alt:
''
,
class:
'avatar group-avatar s160'
.image-container.s160
=
image_tag
group_icon
(
@group
),
alt:
''
,
class:
'avatar group-avatar s160'
%p
.light
%p
.light
-
if
@group
.
avatar?
-
if
@group
.
avatar?
You can change your group avatar here
You can change your group avatar here
...
...
app/views/groups/show.html.haml
View file @
fb99a430
...
@@ -6,7 +6,8 @@
...
@@ -6,7 +6,8 @@
.cover-block.groups-cover-block
.cover-block.groups-cover-block
%div
{
class:
container_class
}
%div
{
class:
container_class
}
=
image_tag
group_icon
(
@group
),
class:
"avatar group-avatar s70 avatar-tile"
.image-container.s70.group-avatar
=
image_tag
group_icon
(
@group
),
class:
"avatar s70 avatar-tile"
.group-info
.group-info
.cover-title
.cover-title
%h1
%h1
...
...
app/views/projects/_home_panel.html.haml
View file @
fb99a430
-
empty_repo
=
@project
.
empty_repo?
-
empty_repo
=
@project
.
empty_repo?
.project-home-panel.text-center
{
class:
(
"empty-project"
if
empty_repo
)
}
.project-home-panel.text-center
{
class:
(
"empty-project"
if
empty_repo
)
}
%div
{
class:
container_class
}
%div
{
class:
container_class
}
=
project_icon
(
@project
,
alt:
@project
.
name
,
class:
'project-avatar avatar s70 avatar-tile'
)
.image-container.s70.project-avatar
=
project_icon
(
@project
,
alt:
@project
.
name
,
class:
'avatar s70 avatar-tile'
)
%h1
.project-title
%h1
.project-title
=
@project
.
name
=
@project
.
name
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
},
title:
visibility_icon_description
(
@project
)}
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
},
title:
visibility_icon_description
(
@project
)}
...
...
app/views/projects/edit.html.haml
View file @
fb99a430
...
@@ -118,7 +118,8 @@
...
@@ -118,7 +118,8 @@
Project avatar
Project avatar
.form-group
.form-group
-
if
@project
.
avatar?
-
if
@project
.
avatar?
=
project_icon
(
"
#{
@project
.
namespace
.
to_param
}
/
#{
@project
.
to_param
}
"
,
alt:
''
,
class:
'avatar project-avatar s160'
)
.image-container.s160
=
project_icon
(
"
#{
@project
.
namespace
.
to_param
}
/
#{
@project
.
to_param
}
"
,
alt:
''
,
class:
'avatar project-avatar s160'
)
%p
.light
%p
.light
-
if
@project
.
avatar_in_git
-
if
@project
.
avatar_in_git
Project avatar in repository:
#{
@project
.
avatar_in_git
}
Project avatar in repository:
#{
@project
.
avatar_in_git
}
...
...
app/views/shared/groups/_group.html.haml
View file @
fb99a430
...
@@ -24,7 +24,8 @@
...
@@ -24,7 +24,8 @@
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
,
placement:
'left'
},
title:
visibility_icon_description
(
group
)}
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
,
placement:
'left'
},
title:
visibility_icon_description
(
group
)}
=
visibility_level_icon
(
group
.
visibility_level
,
fw:
false
)
=
visibility_level_icon
(
group
.
visibility_level
,
fw:
false
)
=
image_tag
group_icon
(
group
),
class:
"avatar s40 hidden-xs"
.image-container.s40
=
image_tag
group_icon
(
group
),
class:
"avatar s40 hidden-xs"
.title
.title
=
link_to
group
,
class:
'group-name'
do
=
link_to
group
,
class:
'group-name'
do
=
group
.
name
=
group
.
name
...
...
app/views/shared/projects/_project.html.haml
View file @
fb99a430
...
@@ -32,10 +32,11 @@
...
@@ -32,10 +32,11 @@
=
link_to
project_path
(
project
),
class:
dom_class
(
project
)
do
=
link_to
project_path
(
project
),
class:
dom_class
(
project
)
do
-
if
avatar
-
if
avatar
.dash-project-avatar
.dash-project-avatar
-
if
use_creator_avatar
.image-container.s40
=
image_tag
avatar_icon
(
project
.
creator
.
email
,
40
),
class:
"avatar s40"
,
alt
:''
-
if
use_creator_avatar
-
else
=
image_tag
avatar_icon
(
project
.
creator
.
email
,
40
),
class:
"avatar s40"
,
alt
:''
=
project_icon
(
project
,
alt:
''
,
class:
'avatar project-avatar s40'
)
-
else
=
project_icon
(
project
,
alt:
''
,
class:
'avatar project-avatar s40'
)
%span
.project-full-name
%span
.project-full-name
%span
.namespace-name
%span
.namespace-name
-
if
project
.
namespace
&&
!
skip_namespace
-
if
project
.
namespace
&&
!
skip_namespace
...
...
app/views/users/_groups.html.haml
View file @
fb99a430
.clearfix
.clearfix
-
groups
.
each
do
|
group
|
-
groups
.
each
do
|
group
|
=
link_to
group
,
class:
'profile-groups-avatars inline'
,
title:
group
.
name
do
=
link_to
group
,
class:
'profile-groups-avatars inline'
,
title:
group
.
name
do
=
image_tag
group_icon
(
group
),
class:
'avatar group-avatar s40'
.image-container.s40
=
image_tag
group_icon
(
group
),
class:
'avatar group-avatar s40'
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