search issues
parent
ea9b480e46
commit
d8880cd292
|
@ -0,0 +1,13 @@
|
|||
extends layout
|
||||
|
||||
block head
|
||||
title Taiga Project management web application with scrum in mind!
|
||||
|
||||
block content
|
||||
sidebar.menu-secondary.sidebar
|
||||
include views/modules/search-in
|
||||
|
||||
section.main.search-result
|
||||
include views/components/mainTitle
|
||||
include views/modules/search-filter
|
||||
include views/modules/search-result-issues-table
|
|
@ -0,0 +1,15 @@
|
|||
section.search-result-table
|
||||
div.row.title
|
||||
div.user-stories.width-6 Issue
|
||||
div.status.width-2 Status
|
||||
div.points.width-1 Assigned to
|
||||
- for (var x = 0; x < 50; x++)
|
||||
div.row.table-main
|
||||
div.user-stories.width-6
|
||||
div.user-story-name
|
||||
a(href="") Crear el perfil de usuario Senior en el admin
|
||||
div.status.width-2 Status
|
||||
div.points.width-1
|
||||
figure.avatar
|
||||
img(src="http://thecodeplayer.com/u/uifaces/12.jpg", alt="username")
|
||||
figcaption Pilar
|
|
@ -38,7 +38,7 @@
|
|||
margin-right: .5em;
|
||||
}
|
||||
.taskboard-text {
|
||||
@include table-flex-child($flex-grow: 10, $flex-basis: 50px, $width: 100px);
|
||||
@include table-flex-child($flex-grow: 10, $flex-basis: 50px);
|
||||
}
|
||||
.icon-edit,
|
||||
.icon-drag-h {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
width: 100%;
|
||||
.row {
|
||||
align-content: stretch;
|
||||
align-items: stretch;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
|
@ -69,4 +69,14 @@
|
|||
.points {
|
||||
position: relative;
|
||||
}
|
||||
.avatar {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
img {
|
||||
flex-basis: 35px;
|
||||
}
|
||||
figcaption {
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue