-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpalette-search.css
More file actions
52 lines (43 loc) · 974 Bytes
/
palette-search.css
File metadata and controls
52 lines (43 loc) · 974 Bytes
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
input[id^="paletteSearch_"]:focus {
border-color: #96d3f3;
box-shadow: 0 0 0 2px rgba(150, 211, 243, 0.2);
}
input[id^="paletteSearch_"]::placeholder {
opacity: 0.6;
font-style: italic;
}
input[id^="paletteSearch_"] + button:hover {
opacity: 0.8;
transform: scale(1.1);
}
.palette-search-highlight {
background-color: rgba(150, 211, 243, 0.2) !important;
transition: background-color 0.2s ease;
}
#noResultsMessage td {
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#PaletteBody_items tr {
transition: opacity 0.2s ease, max-height 0.2s ease;
}
#PaletteBody_items tr[style*="display: none"] {
opacity: 0;
max-height: 0;
overflow: hidden;
}
@media (max-width: 768px) {
input[id^="paletteSearch_"] {
font-size: 14px;
padding: 6px 10px;
}
}