forked from marktext/marktext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
64 lines (54 loc) · 1.04 KB
/
index.css
File metadata and controls
64 lines (54 loc) · 1.04 KB
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
.ag-list-picker {
width: 140px;
max-height: 156px;
padding: 8px 0;
overflow-y: auto;
box-sizing: border-box;
font-size: 14px;
}
.ag-list-picker ul,
.ag-list-picker li {
margin: 0;
padding: 0;
}
.ag-list-picker .item {
height: 28px;
display: flex;
list-style: none;
}
.ag-list-picker:hover .active {
background: transparent;
}
.ag-list-picker .item .language {
color: var(--editorColor);
}
.ag-list-picker .item:hover,
.ag-list-picker .item.active {
background-color: var(--floatHoverColor);
}
.ag-list-picker .item .icon-wrapper {
width: 28px;
height: 28px;
display: flex;
justify-content: space-around;
align-items: center;
padding-top: 2px;
}
.ag-list-picker .item .icon-wrapper span:before {
font-size: 14px;
}
.ag-list-picker .icon-wrapper > svg {
width: 14px;
height: 14px;
fill: var(--iconColor);
}
.ag-list-picker .item .icon-wrapper img {
width: 14px;
height: 14px;
}
.ag-list-picker .item .language {
color: var(--editorColor);
font-size: 14px;
line-height: 28px;
margin-left: 5px;
}