优化界面

This commit is contained in:
刘祥超
2022-01-20 15:53:46 +08:00
parent 65d19d92e9
commit 4b4072a47e
4 changed files with 18 additions and 4 deletions

View File

@@ -274,6 +274,12 @@ p.margin {
.field.text {
padding: .5em;
}
.form .fields:not(.inline) .field {
margin-bottom: 0.5em !important;
}
.form .fields:not(.inline) .field .button {
min-width: 5em;
}
/** body **/
@keyframes blink {
from {

File diff suppressed because one or more lines are too long

View File

@@ -214,6 +214,16 @@ div.margin, p.margin {
padding: .5em;
}
.form .fields:not(.inline) {
.field {
margin-bottom: 0.5em !important;
.button {
min-width: 5em;
}
}
}
/** body **/
@keyframes blink {
from {

View File

@@ -6,7 +6,7 @@
<form method="get" action="/clusters/logs" class="ui form" autocomplete="off">
<input type="hidden" name="type" :value="type"/>
<div class="ui fields inline">
<div class="ui fields">
<div class="ui field">
<input type="text" name="dayFrom" placeholder="开始日期" v-model="dayFrom" value="" style="width:8em" id="day-from-picker"/>
</div>
@@ -31,8 +31,6 @@
<div class="ui field">
<input type="text" name="keyword" style="width:10em" v-model="keyword" placeholder="关键词"/>
</div>
</div>
<div class="ui fields inline" style="margin-top: 0.5em">
<div class="ui field">
<node-cluster-combo-box :v-cluster-id="clusterId" @change="changeCluster"></node-cluster-combo-box>
</div>