Commit 16ca8ec5 authored by Phil Hughes's avatar Phil Hughes

Updated spacing

CHANGELOG item
parent eac81b98
...@@ -15,6 +15,7 @@ v 8.10.0 (unreleased) ...@@ -15,6 +15,7 @@ v 8.10.0 (unreleased)
- Fix check for New Branch button on Issue page !4630 (winniehell) - Fix check for New Branch button on Issue page !4630 (winniehell)
- Fix MR-auto-close text added to description. !4836 - Fix MR-auto-close text added to description. !4836
- Fix pagination when sorting by columns with lots of ties (like priority) - Fix pagination when sorting by columns with lots of ties (like priority)
- Updated project header design
- Exclude email check from the standard health check - Exclude email check from the standard health check
- Fix changing issue state columns in milestone view - Fix changing issue state columns in milestone view
- Add notification settings dropdown for groups - Add notification settings dropdown for groups
......
...@@ -89,7 +89,10 @@ ...@@ -89,7 +89,10 @@
} }
.project-home-desc { .project-home-desc {
margin-left: auto;
margin-right: auto;
margin-bottom: 15px; margin-bottom: 15px;
max-width: 480px;
> p { > p {
margin-bottom: 0; margin-bottom: 0;
...@@ -367,6 +370,15 @@ a.deploy-project-label { ...@@ -367,6 +370,15 @@ a.deploy-project-label {
&:not(:last-child) { &:not(:last-child) {
margin-right: $gl-padding; margin-right: $gl-padding;
} }
&.project-repo-buttons-right {
margin-top: 10px;
@media (min-width: $screen-md-min) {
float: right;
margin-top: 0;
}
}
} }
.nav > li > a { .nav > li > a {
...@@ -498,7 +510,7 @@ pre.light-well { ...@@ -498,7 +510,7 @@ pre.light-well {
} }
.ci-status { .ci-status {
margin-right: 16px; margin-right: $gl-padding;
} }
.commit-row-message { .commit-row-message {
...@@ -506,19 +518,12 @@ pre.light-well { ...@@ -506,19 +518,12 @@ pre.light-well {
} }
.commit_short_id { .commit_short_id {
margin: 0 5px; margin-right: 5px;
color: $gl-link-color; color: $gl-link-color;
font-weight: 600; font-weight: 600;
} }
.commit-author-link { .commit-author-link {
margin-left: 7px;
text-decoration: none;
.avatar {
float: none;
margin-right: 4px;
}
.commit-author-name { .commit-author-name {
font-weight: 600; font-weight: 600;
} }
......
...@@ -9,13 +9,14 @@ ...@@ -9,13 +9,14 @@
- if @project.description.present? - if @project.description.present?
.project-home-desc .project-home-desc
= markdown(@project.description, pipeline: :description) - if @project.description.present?
= markdown(@project.description, pipeline: :description)
- if forked_from_project = @project.forked_from_project - if forked_from_project = @project.forked_from_project
.cover-desc %p
Forked from Forked from
= link_to project_path(forked_from_project) do = link_to project_path(forked_from_project) do
= forked_from_project.namespace.try(:name) = forked_from_project.namespace.try(:name)
.project-repo-buttons.project-action-buttons .project-repo-buttons.project-action-buttons
.count-buttons .count-buttons
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
%li.missing %li.missing
= link_to add_special_file_path(@project, file_name: '.gitlab-ci.yml') do = link_to add_special_file_path(@project, file_name: '.gitlab-ci.yml') do
Set Up CI Set Up CI
%li.pull-right %li.project-repo-buttons-right
.project-repo-buttons.project-right-buttons .project-repo-buttons.project-right-buttons
- if current_user - if current_user
= render 'shared/members/access_request_buttons', source: @project = render 'shared/members/access_request_buttons', source: @project
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment