Skip to content

Commit a680308

Browse files
committed
add Edited Note List and Change Clone Icon
1 parent 90558a7 commit a680308

File tree

7 files changed

+58
-0
lines changed

7 files changed

+58
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
修改笔记克隆图标为DNA图标,同时修改为 沙褐色 ,这样在明亮和黑暗的主题里都能清楚显示
3+
Change note clone icon to DNA symbol with `sandy brown` color which displays clearly in both light theme and drak theme
4+
by Nriver
5+
*/
6+
7+
span.fancytree-node.multiple-parents .fancytree-title::after {
8+
font-family: 'boxicons' !important;
9+
font-size: 100% !important;
10+
color: sandybrown !important;
11+
/* original "\ec27" is `bx-star` */
12+
/* `\ec5a` is `bx-unite` */
13+
/* `\eea7` is `bx-dna` */
14+
content: " \eaa7" !important;
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
Moded from https://github.com/zadam/trilium/discussions/2670
3+
Edited note display in list
4+
Thanks to wouterbatelaan-es
5+
Mod by Nriver
6+
*/
7+
8+
.edited-notes-list > .edited-note-line {
9+
display: list-item;
10+
margin-left: 10px;
11+
list-style-type: none;
12+
border-bottom: 1px solid var(--main-text-color);
13+
padding: 4px;
14+
}
15+
/* 最后一个不显示底部边框 */
16+
.edited-notes-list > .edited-note-line:last-child {
17+
border-bottom: none;
18+
}

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,31 @@ Enhanced:
6868

6969
By Nriver
7070

71+
### Edited Note List
72+
73+
Default:
74+
75+
![](docs/edited-note-list-default.webp)
76+
77+
Enhanced:
78+
79+
![](docs/edited-note-list.webp)
80+
81+
82+
Moded from https://github.com/zadam/trilium/discussions/2670, thanks to wouterbatelaan-es!
83+
84+
### Change Clone Icon
85+
86+
Change note clone icon to DNA symbol with `sandy brown` color which displays clearly in both light theme and dark theme.
87+
88+
Default:
89+
90+
![](docs/clone-icon-default.webp)
91+
92+
Enhanced:
93+
94+
![](docs/clone-icon.webp)
95+
7196
## Action Enhancements
7297

7398
### Note Tree Scroll Bar

docs/clone-icon-default.webp

19.3 KB
Loading

docs/clone-icon.webp

14.2 KB
Loading

docs/edited-note-list-default.webp

149 KB
Loading

docs/edited-note-list.webp

152 KB
Loading

0 commit comments

Comments
 (0)