Skip to content

Commit

Permalink
Merge pull request #11 from AccelerateNetworks/main
Browse files Browse the repository at this point in the history
Work towards improving issue #4 by styling conversations and displayi…
  • Loading branch information
danry25 authored Aug 11, 2023
2 parents 6b407b0 + 3743f1a commit e6d2322
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
4 changes: 0 additions & 4 deletions footer.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
<?php
if (if_group("superadmin")) {
echo "<br /><a href='githook.php'>Check for app updates</a> | <a href='admin.php'>Number Administration</a><br />\n";
}

echo "<script type='text/javascript' src='webtexting.js'></script>";
require "resources/footer.php";
2 changes: 1 addition & 1 deletion frontend/components/Conversation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default {
<div class="message-wrapper" ref="bottom">&nbsp;</div>
</div>
<SendBox :remoteNumber="remoteNumber" :groupUUID="groupUUID" :ownNumber="ownNumber" />
<div class="statusbox">{{ state.connectivityStatus }}</div>
<div class="statusbox">{{ state.connectivityStatus }} - Sending as {{ remoteNumber }}</div>
</div>
</template>

Expand Down
15 changes: 15 additions & 0 deletions threadlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@
.thread-last-message {
color: #000;
}
td {
border: solid black;
border-radius: 1em;
padding: 0.25em;
margin-bottom: 0.5em;
min-height: calc(50px + 1em);
}
table {
border-spacing: 1em;
width: 100%;
}

</style>
<form method='get' action="thread.php" onsubmit="clean_number()">
<input type="hidden" name="extension_uuid" value="<?php echo $extension['extension_uuid']; ?>" />
Expand Down Expand Up @@ -183,4 +195,7 @@ function clean_number() { // clean any non-digits out of the phone number box
}
</script>
<?php
if (if_group("superadmin")) {
echo "<br /><a href='githook.php'>Check for app updates</a> | <a href='admin.php'>Number Administration</a><br />\n";
}
require_once "footer.php";

0 comments on commit e6d2322

Please sign in to comment.