issue filter
parent
c2ed0186ee
commit
6eb724ed1a
|
@ -0,0 +1,14 @@
|
||||||
|
extends layout
|
||||||
|
|
||||||
|
block head
|
||||||
|
title Taiga Project management web application with scrum in mind!
|
||||||
|
|
||||||
|
block content
|
||||||
|
div.wrapper
|
||||||
|
sidebar.menu-secondary.sidebar
|
||||||
|
include views/modules/search-in
|
||||||
|
include views/modules/filter-tags
|
||||||
|
|
||||||
|
section.main.admin-roles
|
||||||
|
header
|
||||||
|
include views/components/mainTitle
|
|
@ -0,0 +1,12 @@
|
||||||
|
div.filter-tags
|
||||||
|
div.filter-tag.selected(style="background-color: red")
|
||||||
|
div.tag-name Tagname
|
||||||
|
div.tag-count 4
|
||||||
|
|
||||||
|
div.filter-tag(style="background-color: blue")
|
||||||
|
div.tag-name Tagname
|
||||||
|
div.tag-count 4
|
||||||
|
|
||||||
|
div.filter-tag(style="background-color: green")
|
||||||
|
div.tag-name Tagname
|
||||||
|
div.tag-count 4
|
|
@ -1,4 +1,4 @@
|
||||||
section.search
|
section.search-in
|
||||||
header
|
header
|
||||||
form
|
form
|
||||||
fieldset
|
fieldset
|
||||||
|
|
|
@ -4,12 +4,6 @@ fieldset {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
// xavi pleeeeeease
|
|
||||||
// .icon {
|
|
||||||
// position: absolute;
|
|
||||||
// right: 10px;
|
|
||||||
// top: 6px;
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
|
|
|
@ -35,6 +35,8 @@ $prefix-for-spec: true;
|
||||||
@import 'modules/taskboard-table';
|
@import 'modules/taskboard-table';
|
||||||
@import 'modules/search-filter';
|
@import 'modules/search-filter';
|
||||||
@import 'modules/search-result-table';
|
@import 'modules/search-result-table';
|
||||||
|
@import 'modules/search-in';
|
||||||
|
@import 'modules/filter-tags';
|
||||||
@import 'modules/admin-menu';
|
@import 'modules/admin-menu';
|
||||||
@import 'modules/admin-submenu';
|
@import 'modules/admin-submenu';
|
||||||
@import 'modules/admin-membership';
|
@import 'modules/admin-membership';
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
.filter-tags {
|
||||||
|
margin-top: 2rem;
|
||||||
|
.filter-tag {
|
||||||
|
color: $white;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
opacity: .5;
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
position: relative;
|
||||||
|
&.selected {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.tag-count {
|
||||||
|
background: none repeat scroll 0 0 rgba(0, 0, 0, .3);
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
.search-in {
|
||||||
|
.icon {
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
top: 6px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue