diff --git a/build/manifest.json b/build/manifest.json new file mode 100644 index 0000000..2d844bc --- /dev/null +++ b/build/manifest.json @@ -0,0 +1,10 @@ +{ + "id": "obsidian-markdown-formatting-assistant-plugin", + "name": "Markdown Formatting Assistant", + "version": "0.1.2", + "minAppVersion": "0.10.9", + "description": "This Plugin provides a simple Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.", + "author": "Reocin", + "authorUrl": "https://github.com/Reocin/obsidian-markdown-formatting-assistant-plugin", + "isDesktopOnly": false +} diff --git a/build/styles.css b/build/styles.css new file mode 100644 index 0000000..718541c --- /dev/null +++ b/build/styles.css @@ -0,0 +1,42 @@ +/* Sets all the text color to red! */ +.nav-action-button { + color: var(--text-muted); + cursor: pointer; + padding: 0px; + margin: 5px; + border-radius: 4px; +} + +.command-list-view-table { + border: 0px solid transparent !important; +} + +.command-list-view-table tr { + cursor: pointer; +} + +.command-list-view-table td { + padding: 6px !important; +} + +.command-list-view-table tr td { + border: none !important; +} + +.command-list-view-table tr:hover { + background-color: gray; +} + +.command-list-view-row-selected { + background-color: gray; +} + +.command-list-view-icon { + height: 24px; + max-height: 24px; + border: 1px solid gray; +} + +.command-list-view-text { + color: #c7254e; +} diff --git a/build/versions.json b/build/versions.json new file mode 100644 index 0000000..929763b --- /dev/null +++ b/build/versions.json @@ -0,0 +1,5 @@ +{ + "0.1.0": "0.10.9", + "0.1.1": "0.10.9", + "0.1.2": "0.10.9" +} diff --git a/versions.json b/versions.json index b4a79ee..929763b 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { "0.1.0": "0.10.9", - "0.1.1": "0.10.9" + "0.1.1": "0.10.9", + "0.1.2": "0.10.9" }