first commit
This commit is contained in:
+3975
File diff suppressed because it is too large
Load Diff
+704
File diff suppressed because one or more lines are too long
+10
@@ -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
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user