forked from github/dataease
refactor(视图): 钻取路径长度限制为120px
This commit is contained in:
parent
1f843986d3
commit
4c1fec264b
@ -17,6 +17,7 @@
|
|||||||
@click.native="drillJump(index + 1)"
|
@click.native="drillJump(index + 1)"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
|
class="drill-label"
|
||||||
:style="{'color': textColor}"
|
:style="{'color': textColor}"
|
||||||
:title="filter.value[0]"
|
:title="filter.value[0]"
|
||||||
>{{ filter.value[0] }}</span>
|
>{{ filter.value[0] }}</span>
|
||||||
@ -100,8 +101,12 @@ export default {
|
|||||||
margin: 0!important;
|
margin: 0!important;
|
||||||
}
|
}
|
||||||
.drill-item{
|
.drill-item{
|
||||||
max-width: 120px;
|
|
||||||
overflow: hidden;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.drill-label {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 120px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user