-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"0.1.0": "0.10.9", | ||
"0.1.1": "0.10.9", | ||
"0.1.2": "0.10.9" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |