File size: 1,262 Bytes
3d5837a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.pysssss-autocomplete {
	color: var(--descrip-text);
	background-color: var(--comfy-menu-bg);
	position: absolute;
	font-family: sans-serif;
	box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
	z-index: 9999;
	overflow: auto;
}

.pysssss-autocomplete-item {
	cursor: pointer;
	padding: 3px 7px;
	display: flex;
	border-left: 3px solid transparent;
	align-items: center;
}

.pysssss-autocomplete-item--selected {
	border-left-color: dodgerblue;
}

.pysssss-autocomplete-highlight {
	font-weight: bold;
	text-decoration: underline;
	text-decoration-color: dodgerblue;
}

.pysssss-autocomplete-pill {
	margin-left: auto;
	font-size: 10px;
	color: #fff;
	padding: 2px 4px 2px 14px;
	position: relative;
}

.pysssss-autocomplete-pill::after {
	content: "";
	display: block;
	background: rgba(255, 255, 255, 0.25);
	width: calc(100% - 10px);
	height: 100%;
	position: absolute;
	left: 10px;
	top: 0;
	border-radius: 5px;
}

.pysssss-autocomplete-pill + .pysssss-autocomplete-pill {
	margin-left: 0;
}

.pysssss-autocomplete-item-info {
	margin-left: auto;
	transition: filter 0.2s;
	will-change: filter;
	text-decoration: none;
	padding-left: 10px;
}
.pysssss-autocomplete-item-info:hover {
	filter: invert(1);
}