first commit

This commit is contained in:
CrazyJasonwell
2026-07-23 20:36:13 +08:00
commit 513b68be8c
7915 changed files with 2642530 additions and 0 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+10
View File
@@ -0,0 +1,10 @@
{
"id": "obsidian-raindrop-highlights",
"name": "Raindrop Highlights",
"version": "0.0.25",
"minAppVersion": "1.6.6",
"description": "Sync your Raindrop.io highlights.",
"author": "kaiiiz",
"authorUrl": "https://github.com/kaiiiz",
"isDesktopOnly": false
}
+53
View File
@@ -0,0 +1,53 @@
/* Sets all the text color to red! */
/* body {
color: red;
} */
.raindrop-content-template .setting-item-info,
.raindrop-content-template .setting-item-control,
.raindrop-metadata-template .setting-item-info,
.raindrop-metadata-template .setting-item-control,
.raindrop-filename-template .setting-item-info,
.raindrop-filename-template .setting-item-control {
width: 0;
}
.raindrop-content-template .setting-item-control textarea,
.raindrop-metadata-template .setting-item-control textarea,
.raindrop-filename-template .setting-item-control textarea {
width: 100%;
font-size: 0.75em;
font-family: var(--font-monospace);
}
.raindrop-content-template .setting-item-control textarea {
height: 600px;
}
.raindrop-metadata-template .setting-item-control textarea,
.raindrop-filename-template .setting-item-control textarea {
height: 250px;
}
.collection-entry {
display: flex;
align-items: center;
}
.collection-entry input[type="checkbox"]:disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
.collection-notice {
padding: 8px;
background: var(--interactive-accent);
color: var(--text-on-accent);
margin-bottom: 8px;
border-radius: 4px;
font-size: 0.9rem;
}
.collection-notice a {
color: var(--text-on-accent);
}