Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed incorrectly computed measuredBounds for nodes ([#486]https://github.com/synergycodes/ng-diagram/pull/486)
- Fixed missing edge arrowheads in Safari. Safari doesn't support `context-stroke` in SVG markers, so a fallback using inline markers with `currentColor` substitution is now used for Safari compatibility ([#487](https://github.com/synergycodes/ng-diagram/pull/487))
- Fixed copy-paste retaining `groupId` when pasting nodes outside their group. Now `groupId` is only preserved when the group is also copied, with the reference updated to the new group's ID ([#491](https://github.com/synergycodes/ng-diagram/pull/491))
- Fixed bullet points styles in the documentation

### Deprecated

Expand Down
15 changes: 13 additions & 2 deletions apps/docs/src/styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ ng-diagram-canvas {
}
}

/*
.sl-markdown-content {
/*
* TODO - move this to wrapper stylesheet when created
* Style diagram buttons inside markdown content
*/
.sl-markdown-content {
button {
border: 1px solid var(--ngd-pt-stroke-primary-default);
padding: 1px 6px;
Expand All @@ -79,4 +79,15 @@ ng-diagram-canvas {
button:active {
background-color: var(--ngd-node-stroke-primary-default);
}

/* Restore list styles removed by Tailwind preflight */
ul:not([role='tablist']),
ol {
list-style-type: disc;
padding-left: 1.5rem;
}

ol {
list-style-type: decimal;
}
}