diff --git a/app/partials/search-issues.jade b/app/partials/search-issues.jade new file mode 100644 index 00000000..9fb74bab --- /dev/null +++ b/app/partials/search-issues.jade @@ -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 \ No newline at end of file diff --git a/app/partials/views/modules/search-result-issues-table.jade b/app/partials/views/modules/search-result-issues-table.jade new file mode 100644 index 00000000..08362dd3 --- /dev/null +++ b/app/partials/views/modules/search-result-issues-table.jade @@ -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 \ No newline at end of file diff --git a/app/styles/components/taskboard-task.scss b/app/styles/components/taskboard-task.scss index 74d1edb1..3bbd9a16 100644 --- a/app/styles/components/taskboard-task.scss +++ b/app/styles/components/taskboard-task.scss @@ -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 { diff --git a/app/styles/modules/search-result-table.scss b/app/styles/modules/search-result-table.scss index a0140714..0f5846cd 100644 --- a/app/styles/modules/search-result-table.scss +++ b/app/styles/modules/search-result-table.scss @@ -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; + } + } }