-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.css
118 lines (97 loc) · 2.55 KB
/
build.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
fl-helper[name="search-and-filter"] .sort-option-icon {
display: none;
}
fl-helper[name="search-and-filter"] .sort-option-icon.active {
display: block;
}
fl-helper[name="search-and-filter"] .sort-container {
display: inline-block;
position: relative;
}
fl-helper[name="search-and-filter"] .sort-container .sort-options-container {
min-width: 120px;
position: absolute;
background: #fff;
box-shadow: 0 0 14px 1px #e4e4e4;
border-radius: 4px;
right: 0;
top: 25px;
display: none;
z-index: 10;
}
fl-helper[name="search-and-filter"] .sort-container .sort-options-container ul {
list-style: none;
padding: 0;
margin: 0;
}
fl-helper[name="search-and-filter"] .sort-container .sort-options-container ul .sort-option {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px;
cursor: pointer;
}
fl-helper[name="search-and-filter"] .sort-container .sort-options-container ul .sort-option:hover {
background: #f8f8f8;
cursor: pointer;
}
fl-helper[name="search-and-filter"] .cursor-pointer {
cursor: pointer;
}
fl-helper[name="search-and-filter"] .bookmark-icon {
display: none;
}
fl-helper[name="search-and-filter"] .bookmark-icon.active {
display: inline-block;
}
fl-helper[name="search-and-filter"] .search-container {
user-select: none;
padding: 0 5px;
width: 100%;
display: flex;
align-items: center;
}
fl-helper[name="search-and-filter"] .search-container .action-icons {
padding-top: 8px;
}
fl-helper[name="search-and-filter"] .search-container .action-icons i {
margin-left: 8px;
}
fl-helper[name="search-and-filter"] .search-filter-container {
display: flex;
align-items: center;
border: 1px solid #d5d5d5;
border-radius: 24px;
padding: 1px;
margin-top: 10px;
flex: 1 0 auto;
}
fl-helper[name="search-and-filter"] .search-filter-container .search-input {
flex: 1 0 auto;
border-color: transparent;
height: 42px;
}
fl-helper[name="search-and-filter"] .search-filter-container.search-input::placeholder {
color: #d5d5d5;
opacity: 1;
}
fl-helper[name="search-and-filter"] .search-input:focus {
border-color: transparent !important;
outline: none;
}
fl-helper[name="search-and-filter"] .search-input:focus-visible {
border-color: transparent !important;
}
fl-helper[name="search-and-filter"] .search-input:active {
border-color: transparent;
}
fl-helper[name="search-and-filter"] .search-button {
border-radius: 24px;
border-color: transparent;
background: #f2f0f0;
width: 80px;
height: 44px;
}
fl-helper[name="search-and-filter"] .fa-search {
padding: 0 5px;
}