Dashboard css improvements
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
0392669cbc
commit
57ab639c0d
6 changed files with 49 additions and 49 deletions
|
@ -395,3 +395,9 @@ table {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.side-filters {
|
||||||
|
fieldset {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
.dashboard {
|
.dashboard {
|
||||||
@extend .row;
|
|
||||||
.activities {
|
|
||||||
}
|
|
||||||
|
|
||||||
.side {
|
.side {
|
||||||
@extend .pull-right;
|
|
||||||
|
|
||||||
.ui-box {
|
.ui-box {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
@ -108,7 +102,6 @@
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
width: 16px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
i {
|
i {
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
All projects you have access to are listed here. Public projects are not included here unless you are a member
|
All projects you have access to are listed here. Public projects are not included here unless you are a member
|
||||||
%hr
|
%hr
|
||||||
.row
|
.row
|
||||||
.col-md-3
|
.col-md-3.col-sm-4
|
||||||
%ul.nav.nav-pills.nav-stacked
|
%ul.nav.nav-pills.nav-stacked
|
||||||
= nav_tab :scope, nil do
|
= nav_tab :scope, nil do
|
||||||
= link_to projects_dashboard_filter_path(scope: nil) do
|
= link_to projects_dashboard_filter_path(scope: nil) do
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
%i.icon-tag
|
%i.icon-tag
|
||||||
= label.name
|
= label.name
|
||||||
|
|
||||||
.col-md-9
|
.col-md-9.col-sm-8
|
||||||
%ul.bordered-list.my-projects.top-list
|
%ul.bordered-list.my-projects.top-list
|
||||||
- @projects.each do |project|
|
- @projects.each do |project|
|
||||||
%li.my-project-row
|
%li.my-project-row
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
- if @has_authorized_projects
|
- if @has_authorized_projects
|
||||||
.dashboard
|
.dashboard.row
|
||||||
.activities.col-md-8
|
.activities.col-md-8
|
||||||
= render 'activities'
|
= render 'activities'
|
||||||
.side.col-md-4
|
.side.col-md-4.hidden-xs.hidden-sm
|
||||||
= render 'sidebar'
|
= render 'sidebar'
|
||||||
|
|
||||||
- else
|
- else
|
||||||
|
|
|
@ -1,41 +1,42 @@
|
||||||
= form_tag filter_path(entity), method: 'get' do
|
.side-filters
|
||||||
%fieldset.scope-filter
|
= form_tag filter_path(entity), method: 'get' do
|
||||||
%ul.nav.nav-pills.nav-stacked
|
%fieldset.scope-filter
|
||||||
%li{class: ("active" if params[:scope].blank?)}
|
%ul.nav.nav-pills.nav-stacked
|
||||||
= link_to filter_path(entity, scope: nil) do
|
%li{class: ("active" if params[:scope].blank?)}
|
||||||
Assigned to me
|
= link_to filter_path(entity, scope: nil) do
|
||||||
%li{class: ("active" if params[:scope] == 'authored')}
|
Assigned to me
|
||||||
= link_to filter_path(entity, scope: 'authored') do
|
%li{class: ("active" if params[:scope] == 'authored')}
|
||||||
Created by me
|
= link_to filter_path(entity, scope: 'authored') do
|
||||||
%li{class: ("active" if params[:scope] == 'all')}
|
Created by me
|
||||||
= link_to filter_path(entity, scope: 'all') do
|
%li{class: ("active" if params[:scope] == 'all')}
|
||||||
All
|
= link_to filter_path(entity, scope: 'all') do
|
||||||
|
All
|
||||||
|
|
||||||
%fieldset.status-filter
|
%fieldset.status-filter
|
||||||
%ul.nav.nav-pills.nav-stacked
|
%ul.nav.nav-pills.nav-stacked
|
||||||
%li{class: ("active" if params[:status].blank?)}
|
%li{class: ("active" if params[:status].blank?)}
|
||||||
= link_to filter_path(entity, status: nil) do
|
= link_to filter_path(entity, status: nil) do
|
||||||
Open
|
Open
|
||||||
%li{class: ("active" if params[:status] == 'closed')}
|
%li{class: ("active" if params[:status] == 'closed')}
|
||||||
= link_to filter_path(entity, status: 'closed') do
|
= link_to filter_path(entity, status: 'closed') do
|
||||||
Closed
|
Closed
|
||||||
%li{class: ("active" if params[:status] == 'all')}
|
%li{class: ("active" if params[:status] == 'all')}
|
||||||
= link_to filter_path(entity, status: 'all') do
|
= link_to filter_path(entity, status: 'all') do
|
||||||
All
|
All
|
||||||
|
|
||||||
%fieldset
|
%fieldset.hidden-xs.hidden-sm
|
||||||
%legend Projects
|
%legend Projects
|
||||||
%ul.nav.nav-pills.nav-pills-small.nav-stacked
|
%ul.nav.nav-pills.nav-pills-small.nav-stacked
|
||||||
- @projects.each do |project|
|
- @projects.each do |project|
|
||||||
- unless entities_per_project(project, entity).zero?
|
- unless entities_per_project(project, entity).zero?
|
||||||
%li{class: ("active" if params[:project_id] == project.id.to_s)}
|
%li{class: ("active" if params[:project_id] == project.id.to_s)}
|
||||||
= link_to filter_path(entity, project_id: project.id) do
|
= link_to filter_path(entity, project_id: project.id) do
|
||||||
= project.name_with_namespace
|
= project.name_with_namespace
|
||||||
%small.pull-right= entities_per_project(project, entity)
|
%small.pull-right= entities_per_project(project, entity)
|
||||||
|
|
||||||
%fieldset
|
%fieldset
|
||||||
- if params[:status].present? || params[:project_id].present?
|
- if params[:status].present? || params[:project_id].present?
|
||||||
= link_to filter_path(entity, status: nil, project_id: nil), class: 'pull-right cgray' do
|
= link_to filter_path(entity, status: nil, project_id: nil), class: 'pull-right cgray' do
|
||||||
%i.icon-remove
|
%i.icon-remove
|
||||||
%strong Clear filter
|
%strong Clear filter
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
- if cookies[:hide_no_ssh_message].blank? && current_user.require_ssh_key? && !current_user.gl-hide_no_ssh_key
|
- if cookies[:hide_no_ssh_message].blank? && current_user.require_ssh_key? && !current_user.hide_no_ssh_key
|
||||||
.no-ssh-key-message
|
.no-ssh-key-message
|
||||||
.container
|
.container
|
||||||
You won't be able to pull or push project code via SSH until you #{link_to 'add an SSH key', new_profile_key_path} to your profile
|
You won't be able to pull or push project code via SSH until you #{link_to 'add an SSH key', new_profile_key_path} to your profile
|
||||||
|
|
Loading…
Reference in a new issue