mirror of
https://github.com/lemon695/obsidian-plugin-update-locker.git
synced 2026-07-22 11:40:26 +00:00
Constraint: Keep markdown contract files and local .gitignore changes out of this release-branch checkpoint Rejected: Mark the plugin desktop-only | mobile compatibility was explicitly preserved instead Confidence: high Scope-risk: moderate Directive: Prefer Vault APIs and explicit repository metadata over browser-only flows or display-field heuristics Tested: npm run build Not-tested: Real-device mobile UX and live third-party GitHub release resolution across diverse plugin manifests
71 lines
1.4 KiB
CSS
71 lines
1.4 KiB
CSS
/* Plugin Update Locker Styles (pul-) */
|
|
|
|
.pul-controls {
|
|
margin-bottom: 1em;
|
|
padding-bottom: 1em;
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.pul-group-header {
|
|
margin-top: 1.5em;
|
|
margin-bottom: 0.5em;
|
|
padding: 0.5em;
|
|
background-color: var(--background-secondary);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 1em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.pul-group-header-icon,
|
|
.pul-status-icon,
|
|
.pul-compat-warn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pul-plugin-name-link {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
text-decoration-style: dotted;
|
|
}
|
|
|
|
.pul-locked {
|
|
background-color: var(--background-secondary-alt);
|
|
border-left: 3px solid var(--interactive-accent);
|
|
}
|
|
|
|
.pul-no-plugins-found {
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
padding: 2em;
|
|
}
|
|
|
|
.pul-version-badge {
|
|
background-color: var(--background-modifier-accent);
|
|
color: var(--text-on-accent);
|
|
padding: 2px 6px;
|
|
border-radius: 10px;
|
|
font-size: 0.8em;
|
|
margin-left: 8px;
|
|
font-family: var(--font-monospace);
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.pul-status-text,
|
|
.pul-version-diff {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.pul-conflict {
|
|
border-left: 3px solid var(--background-modifier-error);
|
|
}
|
|
|
|
.pul-release-notes-title {
|
|
font-size: 1.25em;
|
|
font-weight: 600;
|
|
margin-bottom: 12px;
|
|
}
|