Finish implemtning OPML importer

Now with progress messages!
This commit is contained in:
2023-08-29 00:35:19 -04:00
parent eddf39b62e
commit 2f39be4152
10 changed files with 148 additions and 58 deletions

View File

@@ -43,15 +43,15 @@ ul.entries {
font-size: 16px;
}
ul.entries li {
li.entry {
margin-bottom: 8px;
}
ul.entries li a {
a.entry-link {
text-decoration: none;
}
ul.entries li em.domain {
em.entry-link-domain {
margin-left: 8px;
color: rgba(0, 0, 0, 0.75);
}
@@ -152,6 +152,20 @@ form.feed-form .form-grid button {
grid-column: 3 / 4;
}
ul#add-feed-messages {
list-style: none;
padding: 0;
margin: 0;
overflow-x: hidden;
white-space: nowrap;
}
ul#add-feed-messages li {
overflow: hidden;
white-space: no-wrap;
text-overflow: ellipsis;
}
/* Feed */
header.feed-header {