Skip to content

Commit 619d68e

Browse files
feat(Filter): Add Filter Component
1 parent d30ce8f commit 619d68e

File tree

13 files changed

+956
-90
lines changed

13 files changed

+956
-90
lines changed

less/_filter.less

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
.filter-pf {
2+
.filter-pf-category-select {
3+
display: flex;
4+
}
5+
.filter-pf-category-select-value {
6+
border-left-width: 0;
7+
}
8+
9+
.filter-pf-category-item {
10+
margin-bottom: 5px;
11+
}
12+
13+
.filter-pf-fields .form-group {
14+
width: 275px;
15+
}
16+
.filter-pf-select-dropdown {
17+
background-color: @color-pf-white;
18+
background-image: none;
19+
color: @color-pf-black-500;
20+
font-size: 12px;
21+
font-style: italic;
22+
font-weight: 400;
23+
padding-right: 25px;
24+
text-align: left;
25+
width: 100%;
26+
z-index: 1;
27+
}
28+
.filter-pf-category-label {
29+
font-weight: 700;
30+
margin-right: 5px;
31+
padding: 5px 0 6px 5px;
32+
}
33+
.filter-pf-select > .dropdown.btn-group {
34+
width: 100%;
35+
}
36+
}

less/patternfly-react.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/**
22
Patternfly React Specific Extensions
33
*/
4+
5+
@import '_filter';

0 commit comments

Comments
 (0)