-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #449 from holochain/feat/guide/working-with-data
Feat/guide/working with data
- Loading branch information
Showing
8 changed files
with
362 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
.mermaid-flowchart { | ||
font-size: 14px; | ||
fill: #333; | ||
margin-left: auto; | ||
margin-right: auto; | ||
|
||
.error-icon { | ||
fill: #552222; | ||
} | ||
|
||
.error-text { | ||
fill: #552222; | ||
stroke: #552222; | ||
} | ||
|
||
.edge-thickness-normal { | ||
stroke-width: 2px; | ||
} | ||
|
||
.edge-thickness-thick { | ||
stroke-width: 3.5px; | ||
} | ||
|
||
.edge-pattern-solid { | ||
stroke-dasharray: 0; | ||
} | ||
|
||
.edge-pattern-dashed { | ||
stroke-dasharray: 3; | ||
} | ||
|
||
.edge-pattern-dotted { | ||
stroke-dasharray: 2; | ||
} | ||
|
||
.marker { | ||
fill: #333333; | ||
stroke: #333333; | ||
} | ||
|
||
.marker.cross { | ||
stroke: #333333; | ||
} | ||
|
||
svg { | ||
font-size: 16px; | ||
} | ||
|
||
.label { | ||
color: #333; | ||
} | ||
|
||
.cluster-label text { | ||
fill: #333; | ||
} | ||
|
||
.cluster-label span, p { | ||
color: #333; | ||
} | ||
|
||
.label text, span, p { | ||
fill: #333; | ||
color: #333; | ||
} | ||
|
||
.node { | ||
rect, circle, ellipse, polygon, path { | ||
fill: #ececff; | ||
stroke: #9370db; | ||
stroke-width: 1px; | ||
} | ||
|
||
.katex path { | ||
fill: #000; | ||
stroke: #000; | ||
stroke-width: 1px; | ||
} | ||
|
||
.label { | ||
text-align: center; | ||
} | ||
|
||
&.clickable { | ||
cursor: pointer; | ||
} | ||
} | ||
|
||
.flowchart-label text { | ||
text-anchor: middle; | ||
} | ||
|
||
.arrowheadPath { | ||
fill: #333333; | ||
} | ||
|
||
.edgePath .path { | ||
stroke: #333333; | ||
stroke-width: 2px; | ||
} | ||
|
||
.flowchart-link { | ||
stroke: #333333; | ||
fill: none; | ||
} | ||
|
||
.edgeLabel { | ||
background-color: #e8e8e8; | ||
text-align: center; | ||
|
||
rect { | ||
opacity: 0.5; | ||
background-color: #e8e8e8; | ||
fill: #e8e8e8; | ||
} | ||
} | ||
|
||
.labelBkg { | ||
background-color: rgba(232, 232, 232, 0.85); | ||
} | ||
|
||
.cluster { | ||
rect { | ||
fill: #ffffde; | ||
stroke: #aaaa33; | ||
stroke-width: 1px; | ||
} | ||
|
||
text { | ||
fill: #333; | ||
} | ||
} | ||
|
||
.cluster span, p { | ||
color: #333; | ||
} | ||
|
||
div.mermaidTooltip { | ||
position: absolute; | ||
text-align: center; | ||
max-width: 200px; | ||
padding: 2px; | ||
font-size: 12px; | ||
background: hsl(80, 100%, 96.2745098039%); | ||
border: 1px solid #aaaa33; | ||
border-radius: 2px; | ||
pointer-events: none; | ||
z-index: 100; | ||
} | ||
|
||
.flowchartTitleText { | ||
text-anchor: middle; | ||
font-size: 18px; | ||
fill: #333; | ||
} | ||
|
||
.nodeLabel * { | ||
margin: 0; | ||
} | ||
|
||
/* External references, used on the working with data page and others */ | ||
.external > * { | ||
stroke-dasharray: 3 3 !important; | ||
fill: transparent !important; | ||
|
||
span { | ||
stroke-dasharray: 3 3 !important; | ||
fill: transparent !important; | ||
} | ||
} | ||
|
||
/* Original actions, for diagrams showing the relationships of CRUD actions */ | ||
.original > * { | ||
fill: #F2F2F2 !important; | ||
stroke: #AAA !important; | ||
|
||
span { | ||
fill: #F2F2F2 !important; | ||
stroke: #AAA !important; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters