Skip to content

Commit

Permalink
4.1.7
Browse files Browse the repository at this point in the history
- Fixed display issue with collapsible admonitions
  • Loading branch information
valentine195 committed May 18, 2021
1 parent b310a35 commit e21db64
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 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.6",
"version": "4.1.7",
"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.6",
"version": "4.1.7",
"description": "Admonition block-styled content for Obsidian.md",
"main": "main.js",
"scripts": {
Expand Down
7 changes: 4 additions & 3 deletions src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ details.admonition:not([open]) {

details.admonition > summary {
outline: none;
list-style: none;
display: block;
display: block !important;
list-style: none !important;
list-style-type: none !important;
min-height: 1rem;
border-top-left-radius: 0.1rem;
border-top-right-radius: 0.1rem;
Expand All @@ -96,7 +97,7 @@ details.admonition > summary {

details.admonition > summary::-webkit-details-marker,
details.admonition > summary::marker {
display: none;
display: none !important;
}

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.6": "0.11.0"
"4.1.7": "0.11.0"
}

0 comments on commit e21db64

Please sign in to comment.