Skip to content

Commit 15c5249

Browse files
committed
Convert nested styles into inline CSS
1 parent cc28bda commit 15c5249

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

docs/references/tutorials.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ flowchart TB
4949
end
5050
end
5151
end
52-
style level2 fill: #00948680, color: #f6f6f7, stroke: #3c3c43;
53-
style level1 fill: #2b75a080, color: #f6f6f7, stroke: #3c3c43;
54-
style level0 fill: #5c837480, color: #f6f6f7, stroke: #3c3c43;
55-
style token fill: #44506980, color: #f6f6f7, stroke: #3c3c43;
5652
```
5753

5854
:::
@@ -157,4 +153,28 @@ request fails. And the errors that occur during the OAuth steps are considered a
157153
.info, .details {
158154
border: 0;
159155
}
156+
157+
g#level2 rect,
158+
g#level1 rect,
159+
g#level0 rect,
160+
g[id^="flowchart-token"] rect {
161+
color: #f6f6f7 !important;
162+
stroke: #3c3c43 !important;
163+
}
164+
165+
g#level2 rect {
166+
fill: #00948680 !important;
167+
}
168+
169+
g#level1 rect {
170+
fill: #2b75a080 !important;
171+
}
172+
173+
g#level0 rect {
174+
fill: #5c837480 !important;
175+
}
176+
177+
g[id^="flowchart-token"] rect {
178+
fill: #44506980 !important;
179+
}
160180
</style>

0 commit comments

Comments
 (0)