forked from jesseweed/seti-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautocomplete-plus.less
84 lines (75 loc) · 1.53 KB
/
autocomplete-plus.less
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
autocomplete-suggestion-list {
color: @white;
&.select-list.popover-list {
background: @black;
color: @white;
ol.list-group {
li {
color: @white;
&.selected {
background: @seti-primary;
color: @seti-primary-text;
.word {
.character-match {
color: @seti-primary-highlight;
}
}
.left-label{
color: @seti-primary-text;
}
.right-label{
color: @seti-primary-text;
}
&::before {
display: none;
}
}
.word {
color: @white !important;
.character-match {
color: @seti-primary;
}
}
}
}
.suggestion-description {
background: lighten(@black, 3%);
border: solid 1px @black;
&-content {
color: @white;
font-family: @seti-font-family;
font-weight: 300;
font-size: 0.9em;
}
&-more-link {
color: @seti-primary;
font-family: @seti-font-family;
font-size: 0.9em;
}
}
}
.icon.property {
color: @white;
background: @red;
}
.icon.code {
color: @white;
background: @red;
}
.icon.selector {
color: @white;
background: darken(@yellow, 25%);
}
.icon.value {
color: @black;
background: @yellow;
}
.icon.snippet {
color: @white;
background: darken(@green, 15%);
}
.icon.tag {
color: @white;
background: darken(@red, 15%);
}
}