-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (57 loc) · 1.28 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (57 loc) · 1.28 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
65
.calibre-import-modal .modal-content {
padding: 0;
display: flex;
flex-direction: column;
height: 80vh;
max-height: 600px;
}
.calibre-import-modal .calibre-search-row {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 16px;
border-bottom: 1px solid var(--background-modifier-border);
flex-shrink: 0;
}
.calibre-import-modal .calibre-search-input {
flex: 1;
padding: 6px 10px;
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
background: var(--background-primary);
color: var(--text-normal);
font-size: 14px;
}
.calibre-import-modal .calibre-book-list {
flex: 1;
overflow-y: auto;
padding: 4px 0;
}
.calibre-import-modal .calibre-book-item {
display: flex;
align-items: center;
gap: 10px;
padding: 6px 16px;
cursor: pointer;
border-radius: 4px;
}
.calibre-import-modal .calibre-book-item:hover {
background: var(--background-modifier-hover);
}
.calibre-import-modal .calibre-book-item label {
cursor: pointer;
font-size: 13px;
flex: 1;
}
.calibre-import-modal .calibre-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
border-top: 1px solid var(--background-modifier-border);
flex-shrink: 0;
}
.calibre-import-modal .calibre-footer-count {
font-size: 13px;
color: var(--text-muted);
}