bf8bec322b
Create a new core plugin allowing to mark bookmarks to read them later. When enabled: * checkbox is displayed in editlink view for new bookmarks * a plugin setting is available to check it or not it by default * in bookmark list: * new global filter to display only bookmark flagged as read it later * for each bookmarks, new action icon to toggle read it later status * for each « readitlater » bookmark, red label « To Read » added, and red line on the right of the bookmark added (default template) Fixes #143 Signed-off-by: ArthurHoaro <arthur@hoa.ro>
21 lines
388 B
CSS
21 lines
388 B
CSS
.linklist-item.readitlater-unread::after {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 51;
|
|
background: red;
|
|
width: 2px;
|
|
height: 100%;
|
|
content: '';
|
|
}
|
|
|
|
.readitlater-unread .label-unread {
|
|
color: red;
|
|
border: 1px solid red;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.readitlater-unread .readitlater-toggle .fa-eye-slash {
|
|
color: red;
|
|
}
|