Commit 4dfa1ed2 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Add some mobile fixes to UI

parent 67b42e26
/** Common mobile (screen XS) styles **/ /** Common mobile (screen XS, SM) styles **/
@media (max-width: $screen-xs-max) { @media (max-width: $screen-xs-max) {
.container .content { .container .content {
margin-top: 20px; margin-top: 20px;
...@@ -13,5 +13,36 @@ ...@@ -13,5 +13,36 @@
display: none; display: none;
} }
} }
.issues-filters,
.dash-projects-filters {
display: none;
}
.rss-btn {
display: none !important;
}
.project-home-panel {
.star-fork-buttons {
padding-top: 10px;
padding-right: 15px;
}
}
.project-home-links {
display: none;
}
} }
@media (max-width: $screen-sm-max) {
.issues-filters {
.milestone-filter, .labels-filter {
display: none;
}
}
.page-title .new-issue-link {
display: none;
}
}
...@@ -296,20 +296,6 @@ ul.nav.nav-projects-tabs { ...@@ -296,20 +296,6 @@ ul.nav.nav-projects-tabs {
} }
} }
@media (max-width: $screen-xs-max) {
.project-home-panel {
.star-fork-buttons {
padding-top: 10px;
padding-right: 15px;
}
}
.project-home-links {
display: none;
}
}
table.table.protected-branches-list tr.no-border { table.table.protected-branches-list tr.no-border {
th, td { th, td {
border: 0; border: 0;
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
.pull-right .pull-right
- if can?(current_user, :write_issue, @project) - if can?(current_user, :write_issue, @project)
= link_to new_project_issue_path(@project), class: "btn btn-grouped", title: "New Issue", id: "new_issue_link" do = link_to new_project_issue_path(@project), class: "btn btn-grouped new-issue-link", title: "New Issue", id: "new_issue_link" do
%i.fa.fa-plus %i.fa.fa-plus
New Issue New Issue
- if can?(current_user, :modify_issue, @issue) - if can?(current_user, :modify_issue, @issue)
......
.fixed.sidebar-expand-button.hidden-lg.hidden-md .milestones-filters.append-bottom-10
%i.fa.fa-list.fa-2x
.responsive-side.milestones-filters.append-bottom-10
%ul.nav.nav-pills.nav-compact %ul.nav.nav-pills.nav-compact
%li{class: ("active" if params[:state].blank? || params[:state] == 'opened')} %li{class: ("active" if params[:state].blank? || params[:state] == 'opened')}
= link_to milestones_filter_path(state: 'opened') do = link_to milestones_filter_path(state: 'opened') do
......
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