Fixed overflow when long strings where present
This commit is contained in:
parent
20e688b0dc
commit
d9ab4acd8f
1 changed files with 7 additions and 0 deletions
|
@ -16,6 +16,7 @@ img {
|
|||
}
|
||||
.ihead {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
text-align: center;
|
||||
font-size: 14pt;
|
||||
font-weight: bold;
|
||||
|
@ -33,6 +34,7 @@ img {
|
|||
}
|
||||
.ibody {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
font-size: 11pt;
|
||||
line-height: 1.6;
|
||||
background-color: #b7bec8;
|
||||
|
@ -49,6 +51,7 @@ img {
|
|||
}
|
||||
.idesc, .inote, .istat, .noxreas {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
max-height: 205px;
|
||||
overflow: auto;
|
||||
border: 1px solid #dbdee3;
|
||||
|
@ -59,6 +62,10 @@ img {
|
|||
padding-top: 2px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
.idesc {
|
||||
word-break: normal;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
.istat {
|
||||
padding: 6px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue