Skip to content
Snippets Groups Projects
Commit 48846c33 authored by Robin Leber's avatar Robin Leber
Browse files

FEAT: icon legend

parent 1c9a4edc
No related branches found
No related tags found
No related merge requests found
...@@ -91,6 +91,7 @@ ...@@ -91,6 +91,7 @@
></i> ></i>
<i id="Check" class="fa-sharp fa-xl fa-solid fa-check"></i> <i id="Check" class="fa-sharp fa-xl fa-solid fa-check"></i>
<i id="DeployIcon" class="fa-solid fa-xl fa-play"></i> <i id="DeployIcon" class="fa-solid fa-xl fa-play"></i>
<i id="PauseIcon" class="fa-solid fa-xl fa-pause"></i>
</div> </div>
<div class="Filter" data-type="Collector"> <div class="Filter" data-type="Collector">
Aggregator Aggregator
...@@ -100,6 +101,7 @@ ...@@ -100,6 +101,7 @@
class="fa-sharp fa-solid fa-xl fa-exclamation" class="fa-sharp fa-solid fa-xl fa-exclamation"
></i> ></i>
<i id="Check" class="fa-sharp fa-xl fa-solid fa-check"></i> <i id="Check" class="fa-sharp fa-xl fa-solid fa-check"></i>
<i id="DeployIcon" class="fa-solid fa-xl fa-play"></i>
<i id="PauseIcon" class="fa-solid fa-xl fa-pause"></i> <i id="PauseIcon" class="fa-solid fa-xl fa-pause"></i>
</div> </div>
</div> </div>
...@@ -115,6 +117,27 @@ ...@@ -115,6 +117,27 @@
<button id="Pause">Pause</button> <button id="Pause">Pause</button>
</div> </div>
</div> </div>
<div class="iconsLegend">
<div>
<i
style="color: red"
class="fa-sharp fa-solid fa-xl fa-exclamation"
></i>
<span>User Action Required</span>
</div>
<div>
<i style="color: green" class="fa-sharp fa-xl fa-solid fa-check"></i>
<span>Ready To Deploy</span>
</div>
<div>
<i style="color: blue" class="fa-solid fa-xl fa-play"></i>
<span>Deployed And Running</span>
</div>
<div>
<i style="color: orange" class="fa-solid fa-xl fa-pause"></i>
<span>Deployed And Paused</span>
</div>
</div>
</div> </div>
<script src="main.js"></script> <script src="main.js"></script>
</body> </body>
......
...@@ -333,3 +333,8 @@ ...@@ -333,3 +333,8 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.iconsLegend {
display: flex;
justify-content: space-around;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment