mirror of
https://github.com/stracker-phil/obsidian-mention-things.git
synced 2026-07-22 05:43:27 +00:00
📦️ Commit deployable plugin
This commit is contained in:
parent
8317a778c0
commit
3589818a1c
3 changed files with 23 additions and 3 deletions
2
dist/main.js
vendored
2
dist/main.js
vendored
File diff suppressed because one or more lines are too long
4
dist/manifest.json
vendored
4
dist/manifest.json
vendored
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"id": "mention-things",
|
||||
"name": "Mention Things",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Define a list of prefixes to trigger an autocomplete suggestion to insert a link.",
|
||||
"author": "Philipp Stracker",
|
||||
"authorUrl": "https://philippstracker.com",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
}
|
||||
20
dist/styles.css
vendored
Normal file
20
dist/styles.css
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
.mention-type-row {
|
||||
--preview-width: 20ch;
|
||||
|
||||
.type-label {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.type-preview {
|
||||
display: inline-block;
|
||||
min-width: var(--preview-width);
|
||||
max-width: var(--preview-width);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
text-align: left;
|
||||
font-size: 12px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue