* [packages][m]: mv @flowershow/core package here * [packages/core][xs]: rename to @portaljs/core * [package.json][xs]: setup npm workspaces * [packages/core][xs]:replace deprecated rollup executor * [core/package.json][s]: fix mermaid versions * [core/tsconfig][xs]: rm extends * [core/jest.config][xs]: rm coverageDirectory * [core/package.json][xs]: install core-js * [packages.json][s]:use same version for all nrwl packages * [core/.eslintrc][xs]: adjust ignorePatterns * [core/project.json][xs]: rm publish targets * [packages][m]: mv @flowershow/remark-wiki-link here * [packages][m]: mv @flowershow/remark-wiki-link here * [packages][m]: mv @flowershow/remark-embed here * [remark-callouts/project.json][xs]: adjst test pattern * [package.json][s]: install missing deps * [remark-callouts][xs]: adjst fields in package.json * [remark-callouts][s]: rm pubish targets and adjst build executor * [remark-embed/jest.config][xs]: rm unknown option coverageDirectory * [remark-embed][xs]: rm publish targets * [remark-embed][s]: rename to @portaljs/remark-embed * [remark-wiki-link/eslintrc][xs]:adjst ignorePatterns * [package.json][xs]: install missing deps * [remark-wiki-link/test][xs]:specify format - also temporarily force any type on htmlExtension * [remark-wiki-link/README][xs]: replace @flowershow with @portaljs * [remark-wiki-link][xs]:rm old changelog * [remark-wiki-link][xs]: adjst package.json * [remark-wiki-link/project.json][xs]: rm publish targets * [core][s]: rm old changelog * [core/README][xs]:correct scope name * [remark-callouts/README][xs]: add @portaljs to pckg name * [remark-embed/README][xs]: add @portaljs to pckg name * [package-lock.json][xs]: refresh after rebasing on main
65 lines
804 B
CSS
65 lines
804 B
CSS
:root {
|
|
--callout-bg-color: #f2f3f5;
|
|
}
|
|
|
|
:root.dark {
|
|
--callout-bg-color: #161616;
|
|
}
|
|
|
|
.blockquote,
|
|
.callout {
|
|
background: #f2f3f5;
|
|
background: var(--callout-bg-color);
|
|
font-style: normal;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.callout {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.callout-title {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10px;
|
|
gap: 10px;
|
|
}
|
|
|
|
.callout-title > strong {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.blockquote,
|
|
.callout-content {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.blockquote-heading {
|
|
margin: 5px 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.blockquote > p,
|
|
.callout-content > p {
|
|
font-weight: normal;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.callout-title p {
|
|
margin: 0;
|
|
}
|
|
|
|
.callout-title > strong {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.callout p:before,
|
|
p:after {
|
|
display: none;
|
|
}
|
|
|
|
.blockquote > p:before,
|
|
p:after {
|
|
display: none;
|
|
}
|