Fixed the max width of the attribute value field, fixes #512

pull/516/head
Iglocska 2015-06-02 12:47:07 +02:00
parent 8b203324d7
commit ff46811386
2 changed files with 6 additions and 1 deletions

View File

@ -140,7 +140,7 @@
<?php echo h($object['type']); ?>
</div>
</td>
<td class="showspaces <?php echo $extra; ?>">
<td class="showspaces <?php echo $extra; ?> limitedWidth">
<div id = "<?php echo $currentType . '_' . $object['id'] . '_value_placeholder'; ?>" class = "inline-field-placeholder"></div>
<?php if ('attachment' == $object['type'] || 'malware-sample' == $object['type'] ): ?>
<div id = "<?php echo $currentType . '_' . $object['id'] . '_value_solid'; ?>" class="inline-field-solid">

View File

@ -241,6 +241,11 @@ td.shortish {
text-align: left;
}
td.limitedWidth {
max-width:400px;
word-wrap:break-word;
}
td.bitwider {
width:20%;
text-align: left;