2019-10-21 18:10:39 +09:00
|
|
|
@charset 'utf-8';
|
2019-10-24 10:07:30 +09:00
|
|
|
|
|
|
|
@mixin ellipsis($row) {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
@if $row == 1 {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
word-wrap: normal;
|
|
|
|
} @else if $row >= 2 {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: $row;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-21 13:20:14 +09:00
|
|
|
.bubble-main {
|
|
|
|
padding: 14px;
|
|
|
|
text-align: left;
|
2019-10-21 18:10:39 +09:00
|
|
|
.content {
|
|
|
|
max-width: 250px;
|
|
|
|
@include ellipsis(1);
|
|
|
|
}
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
2019-10-21 15:04:10 +09:00
|
|
|
|
2019-10-21 13:20:14 +09:00
|
|
|
.btn-box {
|
|
|
|
border-top: 1px solid #dddddd;
|
|
|
|
height: 40px;
|
|
|
|
.mat-button {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|