Skip to content
Snippets Groups Projects
Commit 9f9decaa authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge branch 'develop' into develop-next

parents ad785233 ca3a7ea3
No related branches found
No related tags found
No related merge requests found
<?php if ($desc = $event->getDescription(ThreadEvent::MODE_STAFF)) { ?>
<div class="thread-event <?php if ($event->uid) echo 'action'; ?>"> <div class="thread-event <?php if ($event->uid) echo 'action'; ?>">
<span class="type-icon"> <span class="type-icon">
<i class="faded icon-<?php echo $event->getIcon(); ?>"></i> <i class="faded icon-<?php echo $event->getIcon(); ?>"></i>
</span> </span>
<span class="faded description"> <span class="faded description">
<?php echo $event->getDescription(ThreadEvent::MODE_STAFF); ?> <?php echo $desc; ?>
</span> </span>
</div> </div>
<?php } ?>
...@@ -3641,3 +3641,12 @@ img.avatar + img.avatar { ...@@ -3641,3 +3641,12 @@ img.avatar + img.avatar {
*/ */
.select2-selection__rendered, .select2-search, .select2-selection__rendered, .select2-search,
.select2-search__field:not([placeholder='']){width: 100% !important;} .select2-search__field:not([placeholder='']){width: 100% !important;}
/* Fix Canned Responses Select2 Height */
#resp_sec .select2-results, #resp_sec .select2-results__choices {
height: auto;
max-height: 400px !important;
}
#select2-cannedResp-results {
height: auto;
max-height: 400px !important;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment