This commit is contained in:
Oscar Plaisant
2024-03-28 23:40:47 +01:00
parent bcca52f387
commit 8100d33567
3475 changed files with 1433 additions and 69 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +0,0 @@
{
"id": "rss-reader",
"name": "RSS Reader",
"version": "1.2.2",
"minAppVersion": "0.13.33",
"description": "Read RSS Feeds from within obsidian",
"author": "Johannes Theiner",
"authorUrl": "https://github.com/joethei",
"isDesktopOnly": false
}

View File

@@ -1,142 +0,0 @@
.rss-read a {
color: darkslategrey;
}
.has-invalid-message {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-template-areas:
"text image"
"inv inv";
}
.rss-setting-input input {
grid-column: span 2;
}
input.is-invalid {
border-color: #dc3545 !important;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.unset-align-items {
align-items: unset;
}
.invalid-feedback {
display: block;
grid-area: inv;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #dc3545;
}
.rss-scrollable-content {
overflow: auto;
height: 60vh;
}
.rss-tooltip {
position: relative;
}
.rss-tooltip .tooltiptext {
visibility: hidden;
background-color: var(--interactive-hover);
color: var(--text-normal);
text-align: center;
padding: 5px 0;
border-radius: 6px;
position: absolute;
z-index: var(--layer-tooltip);
}
.rss-tooltip:hover .tooltiptext {
visibility: visible;
}
.rss-content img {
max-width: 100%;
}
.rss-subtitle {
display: inline;
}
/*action buttons on mobile should not take one line each*/
.is-mobile button.rss-button {
width: auto;
}
.rss-selectable {
user-select: text;
}
.rss-card {
padding-top: 10px;
width: 100%;
height: 100%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
border-radius: 5px;
background: var(--background-primary);
}
.rss-card-items {
display: flex;
padding-top: 10px;
}
.rss-card-items .rss-item-text {
padding-left: 5px;
text-overflow: ellipsis;
overflow: hidden;
max-height: 10em;
}
.rss-item-title {
padding-left: 5px;
}
.rss-feed-item {
width: 100%;
}
.rss-view {
background: var(--background-secondary);
}
/*making sure both highlight styles look consistent*/
.rss-modal li mark {
background-color: var(--text-highlight-bg);
}
.rss-modal mark li {
background-color: var(--text-highlight-bg);
}
.rss-modal mark {
background-color: var(--text-highlight-bg);
}
.rss-content .frontmatter {
display: none;
}
.rss-content .frontmatter-container {
display: none;
}
.rss-item-count {
margin-left: auto;
margin-right: 0;
}