Commit 54d7962f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce

parents b8c42159 34e14b1c
...@@ -22,6 +22,7 @@ v 7.11.0 (unreleased) ...@@ -22,6 +22,7 @@ v 7.11.0 (unreleased)
- Improve UI for sidebar. Increase separation between navigation and content - Improve UI for sidebar. Increase separation between navigation and content
- Improve new project command options (Ben Bodenmiller) - Improve new project command options (Ben Bodenmiller)
- Prevent sending empty messages to HipChat (Chulki Lee) - Prevent sending empty messages to HipChat (Chulki Lee)
- Improve UI for mobile phones on dashboard and project pages
v 7.10.0 (unreleased) v 7.10.0 (unreleased)
- Ignore submodules that are defined in .gitmodules but are checked in as directories. - Ignore submodules that are defined in .gitmodules but are checked in as directories.
......
...@@ -4,6 +4,11 @@ ...@@ -4,6 +4,11 @@
margin-top: 20px; margin-top: 20px;
} }
.container-fluid {
padding-left: 5px;
padding-right: 5px;
}
.nav.nav-tabs > li > a { .nav.nav-tabs > li > a {
padding: 10px; padding: 10px;
font-size: 12px; font-size: 12px;
...@@ -27,6 +32,34 @@ ...@@ -27,6 +32,34 @@
.project-home-links { .project-home-links {
display: none; display: none;
} }
.project-avatar {
display: none;
}
.project-home-panel {
padding-left: 0 !important;
.project-home-row {
.project-home-desc {
margin-right: 0 !important;
float: none !important;
}
.project-repo-buttons {
position: static;
margin-top: 15px;
width: 100%;
float: none;
text-align: left;
}
}
}
.navbar-inner .title {
margin-left: 6px !important;
max-width: 70% !important;
}
} }
@media (max-width: $screen-sm-max) { @media (max-width: $screen-sm-max) {
......
= render "events/event_last_push", event: @last_push .hidden-xs
= render "events/event_last_push", event: @last_push
- if current_user - if current_user
%ul.nav.nav-pills.event_filter.pull-right %ul.nav.nav-pills.event_filter.pull-right
%li.pull-right %li.pull-right
= link_to dashboard_path(:atom, { private_token: current_user.private_token }), class: 'rss-btn' do = link_to dashboard_path(:atom, { private_token: current_user.private_token }), class: 'rss-btn' do
%i.fa.fa-rss %i.fa.fa-rss
Activity Feed Activity Feed
= render 'shared/event_filter' = render 'shared/event_filter'
%hr %hr
.content_list .content_list
= spinner = spinner
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
%hr %hr
.row .row
%section.activities.col-md-8 %section.activities.col-md-8
.hidden-xs
- if current_user - if current_user
= render "events/event_last_push", event: @last_push = render "events/event_last_push", event: @last_push
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
= render 'shared/no_password' = render 'shared/no_password'
= render "home_panel" = render "home_panel"
%ul.nav.nav-tabs %ul.nav.nav-tabs
%li.active %li.active
= link_to '#tab-activity', 'data-toggle' => 'tab' do = link_to '#tab-activity', 'data-toggle' => 'tab' do
...@@ -17,11 +16,11 @@ ...@@ -17,11 +16,11 @@
= link_to '#tab-readme', 'data-toggle' => 'tab' do = link_to '#tab-readme', 'data-toggle' => 'tab' do
Readme Readme
- if @repository.changelog - if @repository.changelog
%li %li.hidden-xs
= link_to changelog_url(@project) do = link_to changelog_url(@project) do
Changelog Changelog
- if @repository.contribution_guide - if @repository.contribution_guide
%li %li.hidden-xs
= link_to contribution_guide_url(@project) do = link_to contribution_guide_url(@project) do
Contribution guide Contribution guide
- if @repository.license - if @repository.license
...@@ -42,6 +41,7 @@ ...@@ -42,6 +41,7 @@
= link_to '#aside', class: 'show-aside' do = link_to '#aside', class: 'show-aside' do
%i.fa.fa-angle-left %i.fa.fa-angle-left
%section.col-md-9 %section.col-md-9
.hidden-xs
= render "events/event_last_push", event: @last_push = render "events/event_last_push", event: @last_push
- if current_user - if current_user
......
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