🎨 Minor UI styling
This commit is contained in:
@@ -259,6 +259,10 @@ h4 {
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-bottom: 1px dashed var(--brd-color);
|
||||||
|
}
|
||||||
|
|
||||||
.tooltip {
|
.tooltip {
|
||||||
$bgcolor: var(--tt-color);
|
$bgcolor: var(--tt-color);
|
||||||
$fgcolor: var(--fg-color);
|
$fgcolor: var(--fg-color);
|
||||||
|
|||||||
@@ -381,23 +381,21 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-for="testReport in testReports">
|
<div v-for="testReport in testReports">
|
||||||
<div v-if="testReport.result" class="flex-wrap">
|
<div v-if="testReport.startBlock" class="info">
|
||||||
<span :class="testReport.styles.class" class="info">
|
<h4>{{ testReport.startBlock }}</h4>
|
||||||
|
</div>
|
||||||
|
<p v-else-if="testReport.result" class="flex-wrap info">
|
||||||
|
<span :class="testReport.styles.class">
|
||||||
<i class="material-icons">
|
<i class="material-icons">
|
||||||
{{ testReport.styles.icon }}
|
{{ testReport.styles.icon }}
|
||||||
</i>
|
</i>
|
||||||
<span> {{ testReport.result }}</span>
|
<span> {{ testReport.result }}</span>
|
||||||
|
<span v-if="testReport.message">
|
||||||
|
<label> • {{ testReport.message }}</label>
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<ul v-if="testReport.message">
|
</p>
|
||||||
<li>
|
<div v-else-if="testReport.endBlock"><hr /></div>
|
||||||
<label>{{ testReport.message }}</label>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div v-else-if="testReport.startBlock" class="info">
|
|
||||||
<h4>{{ testReport.startBlock }}</h4>
|
|
||||||
</div>
|
|
||||||
<div v-else-if="testReport.endBlock"><br /></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user