forked from tgrosinger/recent-files-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 1.01 KB
/
styles.css
File metadata and controls
57 lines (49 loc) · 1.01 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
.recent-files-title {
display: flex !important;
flex-direction: row !important;
justify-content: flex-start !important;
align-items: center !important;
width: 100% !important;
padding-right: 4px !important;
}
.recent-files-title-container {
display: flex;
align-items: center;
flex: 1 1 0% !important;
min-width: 0;
}
.nav-file-title-content {
flex: 1 1 0% !important;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.recent-files-last-edit {
font-size: 0.7rem;
color: var(--text-muted);
margin-left: auto;
padding-left: 8px;
white-space: nowrap;
flex-shrink: 0;
opacity: 0.6;
}
.recent-files-file-delete {
justify-content: right;
display: none;
}
.recent-files-title:hover .recent-files-file-delete {
display: flex;
cursor: var(--cursor);
}
.recent-files-file-delete:hover {
color: var(--nav-item-color-hover);
}
.recent-files-donation {
width: 70%;
margin: 0 auto;
text-align: center;
}
.recent-files-donate-button {
margin: 10px;
}