Skip to content
Snippets Groups Projects
Unverified Commit 147f95b7 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Apply new style for issues, merge requests and milestone pages

parent cf36509a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -398,5 +398,12 @@ table {
color: #4c4e54;
border-bottom: 2px solid #1cacfc;
}
.badge {
font-weight: normal;
background-color: #fff;
background-color: #eee;
color: #78a;
}
}
}
Loading
Loading
@@ -2,31 +2,6 @@
margin-right: 15px;
}
 
.issues-state-filters {
li.active a {
border-color: #DDD !important;
&, &:hover, &:active, &.active {
background: #f5f5f5 !important;
border-bottom: 1px solid #f5f5f5 !important;
}
}
}
.issues-details-filters {
font-size: 13px;
background: #f5f5f5;
margin: -10px 0;
padding: 10px 15px;
margin-top: -15px;
border-left: 1px solid #DDD;
border-right: 1px solid #DDD;
.btn {
font-size: 13px;
}
}
@media (min-width: 800px) {
.issues-filters,
.issues_bulk_update {
Loading
Loading
Loading
Loading
@@ -45,3 +45,14 @@
 
.btn { font-size: 13px; }
}
.project-issuable-filter {
.controls {
float: right;
margin-top: 7px;
}
.center-top-menu {
text-align: left;
}
}
Loading
Loading
@@ -4,8 +4,6 @@
- if current_user
= auto_discovery_link_tag(:atom, issues_dashboard_url(format: :atom, private_token: current_user.private_token), title: "#{current_user.name} issues")
 
%p.light
List all issues from all projects you have access to.
 
.append-bottom-20
.pull-right
Loading
Loading
@@ -15,4 +13,5 @@
%i.fa.fa-rss
 
= render 'shared/issuable/filter', type: :issues
= render 'shared/issues'
- page_title "Merge Requests"
- header_title "Merge Requests", merge_requests_dashboard_path(assignee_id: current_user.id)
 
%p.light
List all merge requests from all projects you have access to.
.append-bottom-20
= render 'shared/issuable/filter', type: :merge_requests
= render 'shared/merge_requests'
.panel.panel-default
%ul.well-list.issues-list
= render @issues
- if @issues.blank?
%li
.nothing-here-block No issues to show
%ul.content-list.issues-list
= render @issues
- if @issues.blank?
%li
.nothing-here-block No issues to show
 
- if @issues.present?
.pull-right
Loading
Loading
Loading
Loading
@@ -3,8 +3,8 @@
- if current_user
= auto_discovery_link_tag(:atom, namespace_project_issues_url(@project.namespace, @project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
 
.append-bottom-10
.pull-right
.project-issuable-filter
.controls
.pull-left
- if current_user
.hidden-xs.pull-left
Loading
Loading
.panel.panel-default
%ul.well-list.mr-list
= render @merge_requests
- if @merge_requests.blank?
%li
.nothing-here-block No merge requests to show
%ul.content-list.mr-list
= render @merge_requests
- if @merge_requests.blank?
%li
.nothing-here-block No merge requests to show
 
- if @merge_requests.present?
.pull-right
Loading
Loading
- page_title "Merge Requests"
= render 'projects/last_push'
.append-bottom-10
.pull-right
.project-issuable-filter
.controls
= render 'shared/issuable/search_form', path: namespace_project_merge_requests_path(@project.namespace, @project)
 
- if can? current_user, :create_merge_request, @project
Loading
Loading
.issues-filters
.issues-state-filters
%ul.nav.nav-tabs
%ul.center-top-menu
%li{class: ("active" if params[:state] == 'opened')}
= link_to page_filter_path(state: 'opened') do
= icon('exclamation-circle')
#{state_filters_text_for(:opened, @project)}
 
- if defined?(type) && type == :merge_requests
%li{class: ("active" if params[:state] == 'merged')}
= link_to page_filter_path(state: 'merged') do
= icon('check-circle')
#{state_filters_text_for(:merged, @project)}
 
%li{class: ("active" if params[:state] == 'closed')}
= link_to page_filter_path(state: 'closed') do
= icon('ban')
#{state_filters_text_for(:closed, @project)}
- else
%li{class: ("active" if params[:state] == 'closed')}
= link_to page_filter_path(state: 'closed') do
= icon('check-circle')
#{state_filters_text_for(:closed, @project)}
 
%li{class: ("active" if params[:state] == 'all')}
= link_to page_filter_path(state: 'all') do
= icon('compass')
#{state_filters_text_for(:all, @project)}
 
.issues-details-filters
.issues-details-filters.gray-content-block
= form_tag page_filter_path(without: [:assignee_id, :author_id, :milestone_title, :label_name]), method: :get, class: 'filter-form' do
- if controller.controller_name == 'issues' && can?(current_user, :admin_issue, @project)
.check-all-holder
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment