1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-07-23 18:05:33 +00:00

Force the messages container to full width (#247)

This commit is contained in:
Greg Ross 2018-06-30 04:26:22 -04:00 committed by Loïc Blot
parent bac897df2c
commit 33e5f5926d
2 changed files with 5 additions and 1 deletions

View File

@ -187,6 +187,10 @@
opacity: 1; opacity: 1;
} }
.ocsms-messages-container {
width: 100%;
}
.msg-spacer { .msg-spacer {
clear: both; clear: both;
} }

View File

@ -79,7 +79,7 @@ use \OCA\OcSms\Lib\CountryCodes;
</div> </div>
<div id="app-content-wrapper" ng-show="!isConvLoading"> <div id="app-content-wrapper" ng-show="!isConvLoading">
<div ng-show="messages.length == 0" id="ocsms-empty-conversation">Please choose a conversation on the left menu</div> <div ng-show="messages.length == 0" id="ocsms-empty-conversation">Please choose a conversation on the left menu</div>
<div ng-show="messages.length > 0"> <div ng-show="messages.length > 0" class="ocsms-messages-container">
<div ng-repeat="message in messages | orderBy:'date'"> <div ng-repeat="message in messages | orderBy:'date'">
<div class="msg-{{ message.type }}"> <div class="msg-{{ message.type }}">
<div>{{ message.content }}</div> <div>{{ message.content }}</div>