(css) Improve message editor

This commit is contained in:
Francis Lachapelle
2015-12-18 11:38:53 -05:00
parent 140803ebf2
commit 39dfc84800
2 changed files with 14 additions and 10 deletions
+7 -5
View File
@@ -44,8 +44,8 @@
</div>
</div>
<md-dialog-content class="md-padding">
<header>
<md-dialog-content>
<header class="md-padding">
<div class="msg-header-content">
<!-- to -->
@@ -209,9 +209,11 @@
</header>
<!-- MESSAGE CONTENT -->
<textarea name="content" var:class="editorClass"
ck-locale="editor.localeCode"
ng-model="editor.message.editable.text"/>
<div var:class="editorClass">
<textarea name="content" var:class="editorClass"
ck-locale="editor.localeCode"
ng-model="editor.message.editable.text"/>
</div>
</md-dialog-content>
<!-- TOOLBAR BUTTONS -->
@@ -29,8 +29,10 @@ textarea.ck-editor {
margin-top: $mg;
}
// Plain text editor
textarea.plain-text {
width: 100%;
min-height: grid-step(3);
margin-top: $mg;
}
div.plain-text {
@extend .md-padding;
textarea {
width: 100%;
min-height: grid-step(3);
}
}