This commit is contained in:
RakVhalate 2022-12-28 23:21:58 +05:00
parent a1f4abca0f
commit c32dc357cf
2 changed files with 34 additions and 3 deletions

View File

@ -1,9 +1,9 @@
<details>
<summary>{{object.ID}}</summary>
<div>
<summary class="summary">{{object.ID}}</summary>
<div class="element">
<h4>Service: {{object.Service}},</h4>
<h4>Tags: {{object.Tags}},</h4>
<h4>Port: {{object.Port}},</h4>
<h4 class="port">Port: {{object.Port}},</h4>
<h4>Address: {{object.Address}},</h4>
<h4>Weights: </h4>
<h6>Passing: {{object.Weights.Passing}},</h6>

View File

@ -0,0 +1,31 @@
.summary{
white-space: pre-wrap;
border-width: 1px;
border-color: rgb(231, 245, 45);
border-style: solid;
background-color: #a09d9a;
border-radius: 5px;
padding:20px;
width: 500px;
word-break: break-word;
word-wrap: break-word;
margin-top: 6px;
}
.element{
white-space: pre-wrap;
border-width: 1px;
border-color: rgb(228, 1, 1);
border-style: solid;
background-color: #F0D0B6;
border-radius: 5px;
padding:20px;
width: 500px;
word-break: break-word;
word-wrap: break-word;
margin-top: 6px;
}
.port{
background-color: blueviolet;
}