fix(Steps): add text-overflow ellipsis
parent
321dabc86d
commit
108a8f553e
|
@ -226,6 +226,7 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-steps-item .p-menuitem-link {
|
.p-steps-item .p-menuitem-link {
|
||||||
|
@ -246,6 +247,9 @@ export default {
|
||||||
|
|
||||||
.p-steps-title {
|
.p-steps-title {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-steps-number {
|
.p-steps-number {
|
||||||
|
|
Loading…
Reference in New Issue