Skip to content

Commit

Permalink
Merge pull request #2 from jdanielmourao/main
Browse files Browse the repository at this point in the history
Added Bold, emphasis, highlight, strikethrough and warning button
  • Loading branch information
jdanielmourao authored Jan 5, 2022
2 parents d4869b0 + 9211683 commit 4f3e102
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions obsidian.css
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@
button {}
/*Settings Buttons*/
button.mod-cta {}
/*Warning Buttons*/
button.mod-warning{}



Expand Down Expand Up @@ -215,8 +217,24 @@ button.mod-cta {}

.markdown-preview-view {} /*Reading Mode*/

/*--Emphasis--*/

/*Bold*/
strong {} /*Reading View*/
.cm-s-obsidian .cm-strong {} /*Editing View*/

/*Italic/Emphasis*/
em {} /*Reading View*/
.cm-em {} /*Editing View*/

/*Highlight*/
.markdown-preview-view mark {} /*Reading View*/
.cm-s-obsidian .cm-highlight {} /*Editing View*/
.cm-s-obsidian .cm-formatting-highlight {} /*Editing View highlight symbols/syntax*/

/*Strikethrough*/
.cm-strikethrough {} /*Editing View*/
del {} /*Reading View*/

/*--Headers/Headings--*/
h1 {} /*Reading Mode*/
Expand Down

0 comments on commit 4f3e102

Please sign in to comment.