kissyjpf_rtm-sync/styles.css
creamhead 55e9c8d3cd Fix remaining plugin review errors and type safety
- Replace setCssStyles() with CSS classes (avoids Obsidian 1.6+ API)
- Rename heading "Remember The Milk Settings" -> "RTM Sync" (no-settings-in-heading)
- Add RTM API response interfaces to eliminate all any-type warnings
- Type callRtmApi return as RtmResponse
- Fix remaining Promise void warnings

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-13 18:23:11 +09:00

42 lines
No EOL
770 B
CSS

/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/* IDタグを非表示にする */
body .rtm-id {
display: none;
}
/* Task import modal */
.rtm-task-list {
max-height: 400px;
overflow-y: auto;
margin-bottom: 10px;
}
.rtm-task-item {
display: flex;
align-items: center;
padding: 5px 0;
border-bottom: 1px solid var(--background-modifier-border);
}
.rtm-task-label {
margin-left: 10px;
}
.rtm-task-list-name {
color: var(--text-muted);
}
.rtm-task-due {
color: var(--text-accent);
}
.rtm-btn-row {
display: flex;
justify-content: flex-end;
gap: 10px;
}
.rtm-version-info {
margin-bottom: 2em;
}