Skip to content

Commit

Permalink
4.1.4
Browse files Browse the repository at this point in the history
- Fixed issue with detail summary marker displaying
  • Loading branch information
valentine195 committed May 11, 2021
1 parent b744e6d commit 40f0051
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-admonition",
"name": "Admonition",
"version": "4.1.3",
"version": "4.1.4",
"minAppVersion": "0.11.0",
"description": "Admonition block-styled content for Obsidian.md",
"author": "Jeremy Valentine",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-admonition",
"version": "4.1.3",
"version": "4.1.4",
"description": "Admonition block-styled content for Obsidian.md",
"main": "main.js",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ details.admonition > summary {
cursor: pointer;
}

details.admonition > summary {
list-style-type: none;
details.admonition > summary::-webkit-details-marker,
details.admonition > summary::marker {
display: none;
}

details.admonition > summary > .collapser {
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"3.2.2": "0.11.0",
"3.3.4": "0.11.0",
"4.0.1": "0.11.0",
"4.1.3": "0.11.0"
"4.1.4": "0.11.0"
}

0 comments on commit 40f0051

Please sign in to comment.