mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
🐛 Fix problem with span overflow
This commit is contained in:
parent
54d9b02b4d
commit
4088e55c9f
6 changed files with 6 additions and 6 deletions
|
@ -92,7 +92,7 @@
|
||||||
color: $color-gray-20;
|
color: $color-gray-20;
|
||||||
font-size: $fs12;
|
font-size: $fs12;
|
||||||
max-width: 75%;
|
max-width: 75%;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,7 @@ span.element-name {
|
||||||
max-width: 75%;
|
max-width: 75%;
|
||||||
min-width: 40px;
|
min-width: 40px;
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
color: $color-gray-20;
|
color: $color-gray-20;
|
||||||
font-size: $fs12;
|
font-size: $fs12;
|
||||||
max-width: 75%;
|
max-width: 75%;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
color: $color-gray-10;
|
color: $color-gray-10;
|
||||||
font-size: $fs14;
|
font-size: $fs14;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
color: $color-gray-20;
|
color: $color-gray-20;
|
||||||
margin-right: $size-1;
|
margin-right: $size-1;
|
||||||
font-size: $fs14;
|
font-size: $fs14;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
span {
|
span {
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
font-size: $fs14;
|
font-size: $fs14;
|
||||||
overflow-x: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue