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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
d81d67ba
Commit
d81d67ba
authored
Nov 08, 2016
by
tauriedavis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
19205 Redesign group page header to match new navigation
parent
c6d01098
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
45 additions
and
57 deletions
+45
-57
app/assets/stylesheets/framework/mobile.scss
app/assets/stylesheets/framework/mobile.scss
+1
-1
app/assets/stylesheets/pages/groups.scss
app/assets/stylesheets/pages/groups.scss
+3
-22
app/assets/stylesheets/pages/projects.scss
app/assets/stylesheets/pages/projects.scss
+19
-11
app/views/groups/show.html.haml
app/views/groups/show.html.haml
+12
-14
app/views/projects/buttons/_dropdown.html.haml
app/views/projects/buttons/_dropdown.html.haml
+1
-1
app/views/projects/show.html.haml
app/views/projects/show.html.haml
+4
-3
app/views/shared/notifications/_button.html.haml
app/views/shared/notifications/_button.html.haml
+1
-1
spec/features/groups_spec.rb
spec/features/groups_spec.rb
+4
-4
No files found.
app/assets/stylesheets/framework/mobile.scss
View file @
d81d67ba
...
...
@@ -71,7 +71,7 @@
display
:
none
;
}
.group-
right-
buttons
{
.group-buttons
{
display
:
none
;
}
...
...
app/assets/stylesheets/pages/groups.scss
View file @
d81d67ba
...
...
@@ -10,7 +10,6 @@
}
.group-row
{
.stats
{
float
:
right
;
line-height
:
$list-text-height
;
...
...
@@ -23,36 +22,18 @@
}
.ldap-group-links
{
.form-actions
{
margin-bottom
:
$gl-padding
;
}
}
.groups-cover-block
{
.container-fluid
{
position
:
relative
;
}
.group-right-buttons
{
position
:
absolute
;
right
:
16px
;
.btn
{
@include
btn-gray
;
padding
:
3px
10px
;
background-color
:
$background-color
;
}
}
.group-avatar
{
border
:
0
;
.group-buttons
{
.notification-dropdown
{
display
:
inline-block
;
}
}
.groups-header
{
@media
(
min-width
:
$screen-sm-min
)
{
.nav-links
{
width
:
35%
;
...
...
app/assets/stylesheets/pages/projects.scss
View file @
d81d67ba
...
...
@@ -86,7 +86,8 @@
}
}
.project-home-panel
{
.project-home-panel
,
.group-home-panel
{
padding-top
:
24px
;
padding-bottom
:
24px
;
...
...
@@ -94,7 +95,8 @@
border-bottom
:
1px
solid
$border-color
;
}
.project-avatar
{
.project-avatar
,
.group-avatar
{
float
:
none
;
margin
:
0
auto
;
border
:
none
;
...
...
@@ -104,7 +106,8 @@
}
}
.project-title
{
.project-title
,
.group-title
{
margin-top
:
10px
;
margin-bottom
:
10px
;
font-size
:
24px
;
...
...
@@ -118,10 +121,11 @@
}
}
.project-home-desc
{
.project-home-desc
,
.group-home-desc
{
margin-left
:
auto
;
margin-right
:
auto
;
margin-bottom
:
15px
;
margin-bottom
:
0
;
max-width
:
700px
;
>
p
{
...
...
@@ -141,13 +145,18 @@
}
}
.project-repo-buttons
{
font-size
:
0
;
.project-repo-buttons
,
.group-buttons
{
margin-top
:
15px
;
.btn
{
@include
btn-gray
;
padding
:
3px
10px
;
&
:last-child
{
margin-left
:
0
;
}
.fa
{
color
:
$layout-link-gray
;
}
...
...
@@ -168,7 +177,8 @@
}
}
.project-repo-btn-group
,
.download-button
,
.dropdown-toggle
,
.notification-dropdown
,
.project-dropdown
{
margin-left
:
10px
;
...
...
@@ -474,9 +484,7 @@ a.deploy-project-label {
margin-right
:
$gl-padding
;
}
&
.project-repo-buttons-right
{
margin-top
:
10px
;
&
.right
{
@media
(
min-width
:
$screen-md-min
)
{
float
:
right
;
margin-top
:
0
;
...
...
app/views/groups/show.html.haml
View file @
d81d67ba
...
...
@@ -4,26 +4,24 @@
-
if
current_user
=
auto_discovery_link_tag
(
:atom
,
group_url
(
@group
,
format: :atom
,
private_token:
current_user
.
private_token
),
title:
"
#{
@group
.
name
}
activity"
)
.
cover-block.groups-cover-block
.
group-home-panel.text-center
%div
{
class:
container_class
}
.avatar-container.s70.group-avatar
=
image_tag
group_icon
(
@group
),
class:
"avatar s70 avatar-tile"
.group-info
.cover-title
%h1
%h1
.group-title
@
#{
@group
.
path
}
%span
.visibility-icon.has-tooltip
{
data:
{
container:
'body'
},
title:
visibility_icon_description
(
@group
)
}
=
visibility_level_icon
(
@group
.
visibility_level
,
fw:
false
)
.group-right-buttons.btn-group
-
if
current_user
.pull-left.append-right-10
=
render
'shared/members/access_request_buttons'
,
source:
@group
=
render
'shared/notifications/button'
,
notification_setting:
@notification_setting
-
if
@group
.
description
.
present?
.cover-desc.description
.group-home-desc
=
markdown_field
(
@group
,
:description
)
-
if
current_user
.group-buttons
=
render
'shared/members/access_request_buttons'
,
source:
@group
=
render
'shared/notifications/button'
,
notification_setting:
@notification_setting
%div
.groups-header
{
class:
container_class
}
.top-area
%ul
.nav-links
...
...
app/views/projects/buttons/_dropdown.html.haml
View file @
d81d67ba
-
if
current_user
.dropdown.inline
.project-dropdown
.dropdown.inline
%a
.btn.dropdown-toggle
{
href:
'#'
,
"data-toggle"
=>
"dropdown"
}
=
icon
(
'plus'
)
=
icon
(
"caret-down"
)
...
...
app/views/projects/show.html.haml
View file @
d81d67ba
...
...
@@ -66,8 +66,8 @@
=
link_to
add_special_file_path
(
@project
,
file_name:
'.gitlab-ci.yml'
)
do
Set Up CI
%li
.project-repo-buttons
-
right
.project-r
epo-buttons.project-r
ight-buttons
%li
.project-repo-buttons
.
right
.project-right-buttons
-
if
current_user
=
render
'shared/members/access_request_buttons'
,
source:
@project
=
render
"projects/buttons/koding"
...
...
@@ -76,6 +76,7 @@
=
render
'projects/buttons/download'
,
project:
@project
,
ref:
@ref
=
render
'projects/buttons/dropdown'
.pull-right
=
render
'shared/notifications/button'
,
notification_setting:
@notification_setting
-
if
@repository
.
commit
.project-last-commit
{
class:
container_class
}
...
...
app/views/shared/notifications/_button.html.haml
View file @
d81d67ba
-
left_align
=
local_assigns
[
:left_align
]
-
if
notification_setting
.dropdown.notification-dropdown
.pull-right
.dropdown.notification-dropdown
=
form_for
notification_setting
,
remote:
true
,
html:
{
class:
"inline notification-form"
}
do
|
f
|
=
hidden_setting_source_input
(
notification_setting
)
=
f
.
hidden_field
:level
,
class:
"notification_setting_level"
...
...
spec/features/groups_spec.rb
View file @
d81d67ba
...
...
@@ -80,7 +80,7 @@ feature 'Group', feature: true do
visit
path
expect
(
page
).
to
have_css
(
'.
description
> p > strong'
)
expect
(
page
).
to
have_css
(
'.
group-home-desc
> p > strong'
)
end
it
'passes through html-pipeline'
do
...
...
@@ -88,7 +88,7 @@ feature 'Group', feature: true do
visit
path
expect
(
page
).
to
have_css
(
'.
description
> p > img'
)
expect
(
page
).
to
have_css
(
'.
group-home-desc
> p > img'
)
end
it
'sanitizes unwanted tags'
do
...
...
@@ -96,7 +96,7 @@ feature 'Group', feature: true do
visit
path
expect
(
page
).
not_to
have_css
(
'.
description
h1'
)
expect
(
page
).
not_to
have_css
(
'.
group-home-desc
h1'
)
end
it
'permits `rel` attribute on links'
do
...
...
@@ -104,7 +104,7 @@ feature 'Group', feature: true do
visit
path
expect
(
page
).
to
have_css
(
'.
description
a[rel]'
)
expect
(
page
).
to
have_css
(
'.
group-home-desc
a[rel]'
)
end
end
end
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