Skip to content
Snippets Groups Projects
Commit fd167f22 authored by Alfredo Sumaran's avatar Alfredo Sumaran Committed by Annabel Dunstone Gray
Browse files

Fix admin projects page in admin area

parent 79275ca0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -52,6 +52,18 @@
}
}
 
@mixin basic-list-stats {
.stats {
float: right;
line-height: $list-text-height;
color: $gl-text-color;
span {
margin-right: 15px;
}
}
}
@mixin bulleted-list {
> ul {
list-style-type: disc;
Loading
Loading
Loading
Loading
@@ -17,15 +17,7 @@
}
 
.group-row {
.stats {
float: right;
line-height: $list-text-height;
color: $gl-text-color;
span {
margin-right: 15px;
}
}
@include basic-list-stats;
}
 
.ldap-group-links {
Loading
Loading
Loading
Loading
@@ -573,9 +573,19 @@ pre.light-well {
display: flex;
flex-direction: column;
 
// Disable Flexbox for admin page
&.admin-projects {
display: block;
.project-row {
display: block;
}
}
.project-row {
display: flex;
align-items: center;
@include basic-list-stats;
}
 
h3 {
Loading
Loading
.js-projects-list-holder
- if @projects.any?
%ul.projects-list.content-list
%ul.projects-list.content-list.admin-projects
- @projects.each_with_index do |project|
%li.project-row
%li.project-row{ class: ('no-description' if project.description.blank?) }
.controls
- if project.archived
%span.label.label-warning archived
%span.badge
= storage_counter(project.statistics.storage_size)
= link_to 'Edit', edit_namespace_project_path(project.namespace, project), id: "edit_#{dom_id(project)}", class: "btn"
= link_to 'Delete', [project.namespace.becomes(Namespace), project], data: { confirm: remove_project_message(project) }, method: :delete, class: "btn btn-remove"
.stats
%span.badge
= storage_counter(project.statistics.storage_size)
- if project.archived
%span.label.label-warning archived
.title
= link_to [:admin, project.namespace.becomes(Namespace), project] do
.dash-project-avatar
Loading
Loading
@@ -20,7 +21,7 @@
- if project.namespace
= project.namespace.human_name
\/
%span.project-name.filter-title
%span.project-name
= project.name
 
- if project.description.present?
Loading
Loading
Loading
Loading
@@ -24,7 +24,7 @@
- if project.namespace && !skip_namespace
= project.namespace.human_name
\/
%span.project-name.filter-title
%span.project-name
= project.name
 
- if show_last_commit_as_description
Loading
Loading
---
title: Fix layout of projects page on admin area
merge_request:
author:
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