1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-07 16:06:15 +00:00

WIP: Permit to resize contact list

This commit is contained in:
Loic Blot 2017-12-28 19:35:59 +01:00
parent 409f92f344
commit 2c2f090f13
No known key found for this signature in database
GPG Key ID: EFAA458E8C153987
2 changed files with 8 additions and 1 deletions

View File

@ -11,6 +11,8 @@
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
user-select: none; user-select: none;
resize: horizontal;
overflow-x: auto;
} }
#app-mailbox-peers > ul { #app-mailbox-peers > ul {
@ -51,6 +53,11 @@
text-align: center; text-align: center;
} }
#ocsms-app-content {
height: 100%;
overflow-y: auto;
}
#app-content-wrapper { #app-content-wrapper {
padding: 15px; padding: 15px;
margin-top: 100px; margin-top: 100px;

View File

@ -58,7 +58,7 @@ use \OCA\OcSms\Lib\CountryCodes;
</div> <!-- app-settings-content --> </div> <!-- app-settings-content -->
</div> </div>
<div id="app-content"> <div id="ocsms-app-content">
<div id="app-content-loader" class="icon-loading" ng-show="isConvLoading"> <div id="app-content-loader" class="icon-loading" ng-show="isConvLoading">
</div> </div>
<div id="app-content-header" ng-show="!isConvLoading && selectedContact.label !== undefined && selectedContact.label !== ''" <div id="app-content-header" ng-show="!isConvLoading && selectedContact.label !== undefined && selectedContact.label !== ''"