11 |
--------------------------------------------------------------------------------
/UI/src/app/shared/filters/filter-dropdown/filter-list/filter-list.component.scss:
--------------------------------------------------------------------------------
1 | @import "../../../../styles/mixins";
2 |
3 | .filters-list {
4 | padding: 10px 5px 5px 36px;
5 | background-color: #fff;
6 |
7 | .filter {
8 | margin: 0 0 9px 3px;
9 | @include search-input();
10 |
11 | &::placeholder {
12 | font-size: 12px;
13 | }
14 | }
15 |
16 | &__item {
17 | margin-bottom: 5px;
18 | display: flex;
19 | align-items: center;
20 | height: 23px;
21 |
22 | input {
23 | cursor: pointer;
24 | margin-right: 7px;
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/UI/src/app/shared/hint/hint-overlay/hint-overlay.component.html:
--------------------------------------------------------------------------------
1 |