File size: 1,862 Bytes
a6ec9cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.model-list {
    position: absolute;
    margin-block-start: 2px;
    display: none;
    padding-inline-start: 0;
    max-height: 200px;
    overflow: auto;
    background: var(--input-background-color);
    border: var(--input-border-size) solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    color: var(--input-text-color);
    z-index: 1;
    line-height: normal;
}

.model-list ul {
    padding-right: 20px;
    padding-inline-start: 0;
    margin-top: 3pt;
}

.model-list li {
    padding-top: 3px;
    padding-bottom: 3px;
}

.model-list .icon {
    padding-right: 3pt;
}

.model-result {
    list-style: none;
}

.model-no-result {
    color: var(--text-color);
    list-style: none;
    padding: 3px 6px 3px 6px;
    font-size: 9pt;
    font-style: italic;
    display: none;
}

.model-list li.model-folder {
    color: var(--text-color);
    list-style: none;
    padding: 6px 6px 6px 6px;
    font-size: 9pt;
    font-weight: bold;
    border-top: 1px solid var(--background-color1);
}

.model-list li.model-file {
    color: var(--input-text-color);
    list-style: none;
    padding-left: 12px;
    padding-right:20px;
    font-size: 10pt;
    font-weight: normal;
    transition: none;
    transition:property: none;
    cursor: default;
}

.model-list li.model-file.in-root-folder {
    padding-left: 6px;
}

.model-list li.model-file.selected {
    background: grey;
}

.model-selector {
    cursor: pointer;
}

.model-selector-arrow {
    position: absolute;
    width: 17px;
    margin: 5px -17px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 8pt;
    transition: none;
}

.model-input {
    white-space: nowrap;
}

.reloadModels {
    background: var(--background-color2);
    border: none;
    padding: 0px 0px;
}

#reload-models.secondaryButton:hover {
    background: var(--background-color2);
}