Use Docsy alert classes

Update the Kubernetes overrides from the Docsy theme to diverge less,
specifically in the areas of callouts (alerts) and pageinfo blocks.
This commit is contained in:
Tim Bannister
2021-10-13 01:10:58 +01:00
parent 85d3fb9900
commit 4a57e58ab4
5 changed files with 32 additions and 24 deletions
+3 -3
View File
@@ -1,3 +1,3 @@
<blockquote class="caution callout">
<div><strong>{{ T "caution" }}</strong> {{ trim .Inner " \n" | markdownify }}</div>
</blockquote>
<div class="alert alert-warning caution callout" role="alert">
<strong>{{ T "caution" }}</strong> {{ trim .Inner " \n" | markdownify }}
</div>
+3 -3
View File
@@ -1,3 +1,3 @@
<blockquote class="note callout">
<div><strong>{{ T "note" }}</strong> {{ trim .Inner " \n" | markdownify }}</div>
</blockquote>
<div class="alert alert-info note callout" role="alert">
<strong>{{ T "note" }}</strong> {{ trim .Inner " \n" | markdownify }}
</div>
+4 -3
View File
@@ -1,3 +1,4 @@
<blockquote class="warning callout">
<div><strong>{{ T "warning" }}</strong> {{ trim .Inner " \n" | markdownify }}</div>
</blockquote>
<div class="alert alert-danger warning callout" role="alert">
<strong>{{ T "warning" }}</strong> {{ trim .Inner " \n" | markdownify }}
</div>