forked from avallete/ag-grid-autocomplete-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathag-grid-autocomplete-editor.scss
48 lines (39 loc) · 994 Bytes
/
ag-grid-autocomplete-editor.scss
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
$backgroundColor: #f5f6fa;
$selectedColor: #dcdde1;
$groupColor: #7f8fa6;
.autocomplete {
}
.ag-cell-editor-autocomplete {
background-color: $backgroundColor;
z-index: 1000;
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
border: 1px solid rgba(50, 50, 50, 0.6);
max-height: 25% !important;
max-width: 25% !important;
}
.ag-cell-editor-autocomplete * {
font: inherit;
}
.ag-cell-editor-autocomplete > div {
margin: 0;
}
.ag-cell-editor-autocomplete > div.group {
background-color: $groupColor;
color: white;
}
.ag-cell-editor-autocomplete > div:hover:not(.group),
.ag-cell-editor-autocomplete > div.selected {
background: $selectedColor;
cursor: pointer;
}
.ag-cell-editor-autocomplete > div > * > strong {
font-weight: bold !important;
}
// can be use to customize default agGridEditor wrapper
.ag-cell-editor-autocomplete-wrapper {
}
// can be use to customize default agGridEditor input text editor
.ag-cell-editor-autocomplete-input {
}