style(测试计划): 测试计划列表中预览报告标题显示优化
This commit is contained in:
parent
46f166b321
commit
d2ec4963b1
|
@ -11,9 +11,18 @@
|
||||||
<el-row type="flex" class="head-bar">
|
<el-row type="flex" class="head-bar">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<div class="name-edit">
|
<div class="name-edit">
|
||||||
<el-button plain size="mini" icon="el-icon-back" @click="handleClose">{{$t('test_track.return')}}
|
<el-button plain size="mini" icon="el-icon-back" @click="handleClose"
|
||||||
</el-button>
|
style="float: left; margin-top: 8px; margin-right: 5px">
|
||||||
<span class="title">{{plan.name}}</span>
|
{{$t('test_track.return')}}
|
||||||
|
</el-button>
|
||||||
|
<el-tooltip
|
||||||
|
effect="dark"
|
||||||
|
:content="plan.name"
|
||||||
|
placement="bottom">
|
||||||
|
<div class="title">
|
||||||
|
<span>{{plan.name}}</span>
|
||||||
|
</div>
|
||||||
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" class="head-right">
|
<el-col :span="12" class="head-right">
|
||||||
|
@ -109,4 +118,14 @@ export default {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-top: 0;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
word-wrap: break-word;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue