mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-06-07 07:56:23 +00:00
Various CSS fixes
This commit is contained in:
parent
8cc33a1ca0
commit
712274b52e
@ -5,12 +5,15 @@
|
|||||||
|
|
||||||
#app-navigation {
|
#app-navigation {
|
||||||
min-width: 20em;
|
min-width: 20em;
|
||||||
height: 100%;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding-bottom: 44px;
|
padding-bottom: 44px;
|
||||||
border-left: 1px solid #ddd;
|
border-left: 1px solid #ddd;
|
||||||
border-right: 1px solid #ddd;
|
border-right: 1px solid #ddd;
|
||||||
resize: horizontal;
|
resize: horizontal;
|
||||||
|
position: relative;
|
||||||
|
flex: 1;
|
||||||
|
top: 0;
|
||||||
|
height: 100vh;
|
||||||
}
|
}
|
||||||
/* Navigation: folder like structure */
|
/* Navigation: folder like structure */
|
||||||
#app-mailbox-peers {
|
#app-mailbox-peers {
|
||||||
@ -61,9 +64,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#app-conversation {
|
#app-conversation {
|
||||||
height: 100%;
|
height: 100vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
flex: 4;
|
flex: 5;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,7 +138,6 @@ var Conversation = new Vue({
|
|||||||
*/
|
*/
|
||||||
addConversationMessage: function (msg) {
|
addConversationMessage: function (msg) {
|
||||||
this.messages.push(msg);
|
this.messages.push(msg);
|
||||||
console.log(this.messages);
|
|
||||||
},
|
},
|
||||||
removeConversationMessage: function (msgId) {
|
removeConversationMessage: function (msgId) {
|
||||||
const len = this.messages.length;
|
const len = this.messages.length;
|
||||||
|
@ -7,11 +7,11 @@ use \OCA\OcSms\Lib\CountryCodes;
|
|||||||
//\OCP\Util::addScript('ocsms', 'app.min');
|
//\OCP\Util::addScript('ocsms', 'app.min');
|
||||||
// Develop
|
// Develop
|
||||||
\OCP\Util::addScript('ocsms', 'devel/app');
|
\OCP\Util::addScript('ocsms', 'devel/app');
|
||||||
|
\OCP\Util::addScript('ocsms', 'devel/settings');
|
||||||
\OCP\Util::addScript('ocsms', 'devel/contactlist');
|
\OCP\Util::addScript('ocsms', 'devel/contactlist');
|
||||||
\OCP\Util::addScript('ocsms', 'devel/conversation');
|
\OCP\Util::addScript('ocsms', 'devel/conversation');
|
||||||
\OCP\Util::addScript('ocsms', 'devel/helpers');
|
\OCP\Util::addScript('ocsms', 'devel/helpers');
|
||||||
\OCP\Util::addScript('ocsms', 'devel/notifications');
|
\OCP\Util::addScript('ocsms', 'devel/notifications');
|
||||||
\OCP\Util::addScript('ocsms', 'devel/settings');
|
|
||||||
\OCP\Util::addStyle('ocsms', 'style');
|
\OCP\Util::addStyle('ocsms', 'style');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user