58 lines
822 B
SCSS
Raw Normal View History

2019-12-03 18:59:11 +09:00
.ucap-message-write {
width: 100%;
height: 100%;
.message-receiver-list {
width: 100%;
}
.message-title {
width: 100%;
}
.message-write-body {
overflow: auto;
height: 270px;
.ucap-message-write-editor {
display: inline-block;
width: 100%;
height: 100%;
min-height: 270px;
}
2019-12-04 17:58:59 +09:00
[contenteditable] {
}
[contenteditable]:hover,
[contenteditable]:focus {
}
[contenteditable]:hover {
background: #fafafa;
}
[contenteditable]:focus {
background: #efefef;
}
}
2019-12-09 10:53:25 +09:00
.editor-length-invalid {
color: crimson;
}
2019-12-04 17:58:59 +09:00
mat-card-actions {
display: flex;
width: 100%;
.editor-tools {
padding-left: 0px;
}
.editor-actions-spacer {
flex: 1 1 auto;
}
.editor-actions {
}
2019-12-03 18:59:11 +09:00
}
}