2015-08-27 00:13:14 +02:00
|
|
|
.conversation-title {
|
|
|
|
display: block;
|
2016-04-01 23:20:00 +02:00
|
|
|
line-height: 36px;
|
2015-08-27 00:13:14 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-08-31 23:45:23 +02:00
|
|
|
padding: 0 46px;
|
2015-12-04 03:21:19 +01:00
|
|
|
-webkit-user-select: text;
|
|
|
|
}
|
2016-03-18 21:09:45 +01:00
|
|
|
.conversation-name + .conversation-number {
|
|
|
|
&:before {
|
|
|
|
content:"\00b7"; // ·
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0 5px 0 4px;
|
|
|
|
}
|
2015-08-27 00:13:14 +02:00
|
|
|
}
|
|
|
|
|
2015-02-19 08:09:34 +01:00
|
|
|
.conversation {
|
2016-01-22 00:31:37 +01:00
|
|
|
background-color: #ffffff;
|
2016-03-18 19:11:36 +01:00
|
|
|
height: 100%;
|
2015-05-23 00:41:30 +02:00
|
|
|
|
2016-01-22 00:31:37 +01:00
|
|
|
.panel {
|
2016-03-21 23:37:53 +01:00
|
|
|
height: calc(100% - #{$header-height});
|
2016-03-23 23:28:31 +01:00
|
|
|
overflow-y: scroll;
|
2016-03-23 21:40:21 +01:00
|
|
|
|
|
|
|
.container {
|
|
|
|
padding-top: 20px;
|
2016-03-24 20:33:41 +01:00
|
|
|
max-width: 950px;
|
2016-03-23 21:40:21 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.main.panel {
|
2016-01-22 00:45:13 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-03-23 21:40:21 +01:00
|
|
|
overflow: initial;
|
2016-01-22 00:31:37 +01:00
|
|
|
|
2016-03-23 21:40:21 +01:00
|
|
|
.discussion-container {
|
2016-01-22 00:45:13 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
position: relative;
|
2016-03-23 21:40:21 +01:00
|
|
|
max-width: 100%;
|
|
|
|
margin: 0;
|
2016-01-22 00:45:13 +01:00
|
|
|
|
2016-03-19 01:59:54 +01:00
|
|
|
.bar-container {
|
|
|
|
height: 5px;
|
|
|
|
}
|
|
|
|
|
2016-01-22 00:45:13 +01:00
|
|
|
.message-list {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2016-01-22 01:02:29 +01:00
|
|
|
margin: 0;
|
2016-03-21 08:25:06 +01:00
|
|
|
padding: 2em 20px 0;
|
2016-01-22 01:02:29 +01:00
|
|
|
overflow-y: auto;
|
2016-01-22 00:45:13 +01:00
|
|
|
}
|
2016-01-22 00:31:37 +01:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
}
|
2015-02-19 08:09:34 +01:00
|
|
|
}
|
|
|
|
|
2015-02-27 03:10:04 +01:00
|
|
|
.key-verification {
|
2016-03-24 20:33:41 +01:00
|
|
|
label {
|
|
|
|
display: block;
|
2016-09-19 11:52:50 +02:00
|
|
|
margin: 10px 0;
|
2016-08-25 00:15:55 +02:00
|
|
|
font-size: $font-size-small;
|
2016-03-24 20:33:41 +01:00
|
|
|
}
|
2016-03-23 20:33:50 +01:00
|
|
|
|
2016-01-20 04:01:47 +01:00
|
|
|
.key, .placeholder {
|
2015-02-27 03:10:04 +01:00
|
|
|
padding: 0 1em;
|
2015-12-11 20:13:01 +01:00
|
|
|
-webkit-user-select: text;
|
2015-02-27 03:10:04 +01:00
|
|
|
}
|
2016-01-20 04:01:47 +01:00
|
|
|
.key {
|
2016-03-23 20:33:50 +01:00
|
|
|
display: inline-block;
|
2016-01-20 04:01:47 +01:00
|
|
|
font-family: monospace;
|
2016-03-22 02:18:10 +01:00
|
|
|
padding: 10px;
|
2016-03-24 20:33:41 +01:00
|
|
|
margin-bottom: 20px;
|
2016-03-22 02:18:10 +01:00
|
|
|
background: $grey_l;
|
|
|
|
border: solid 1px $grey_l2;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2016-01-20 04:01:47 +01:00
|
|
|
}
|
|
|
|
.placeholder {
|
2016-01-18 01:18:55 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-09-19 11:52:50 +02:00
|
|
|
.qr {
|
|
|
|
border-radius: 200px;
|
|
|
|
border: solid 1px $grey_l2;
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 25px;
|
|
|
|
margin: 10px auto;
|
2016-09-19 23:13:27 +02:00
|
|
|
canvas {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-09-19 11:52:50 +02:00
|
|
|
img {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 03:10:04 +01:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
|
2015-02-23 22:17:50 +01:00
|
|
|
.message-detail {
|
2016-03-22 22:47:17 +01:00
|
|
|
.key-conflict-dialogue {
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2016-03-24 20:33:41 +01:00
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
.header {
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius $border-radius 0 0;
|
2016-03-24 20:33:41 +01:00
|
|
|
background: #F3F3A7;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 20px
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
padding: 20px;
|
|
|
|
border: 2px solid #F3F3A7;
|
|
|
|
}
|
2016-02-17 20:59:20 +01:00
|
|
|
|
2016-03-23 20:33:50 +01:00
|
|
|
button.resolve {
|
2016-02-13 00:16:57 +01:00
|
|
|
outline: none;
|
|
|
|
border: none;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2016-02-13 00:16:57 +01:00
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
2016-03-23 20:33:50 +01:00
|
|
|
line-height: 36px;
|
|
|
|
padding: 0 20px;
|
|
|
|
float: right;
|
|
|
|
background: $blue;
|
|
|
|
margin-left: 20px;
|
2016-02-15 07:41:52 +01:00
|
|
|
}
|
2016-02-17 20:59:20 +01:00
|
|
|
|
2016-03-23 20:33:50 +01:00
|
|
|
.hideKeys, .showKeys {
|
|
|
|
float: right;
|
|
|
|
line-height: 36px;
|
2016-02-17 20:59:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 22:17:50 +01:00
|
|
|
.message-container {
|
|
|
|
background: white;
|
2016-04-15 22:37:43 +02:00
|
|
|
padding: 20px 0;
|
2015-02-23 22:17:50 +01:00
|
|
|
|
|
|
|
.sender {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
padding: 1em;
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-weight: bold;
|
|
|
|
padding-right: 1em;
|
2015-09-30 23:27:18 +02:00
|
|
|
vertical-align: top;
|
2015-02-23 22:17:50 +01:00
|
|
|
}
|
2015-10-11 01:41:44 +02:00
|
|
|
|
|
|
|
button {
|
|
|
|
border: none;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2015-10-11 01:41:44 +02:00
|
|
|
color: white;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 07:41:52 +01:00
|
|
|
.contacts .contact-detail {
|
|
|
|
padding: 0 36px;
|
2015-10-11 01:41:44 +02:00
|
|
|
margin-bottom: 5px;
|
2015-02-18 03:03:05 +01:00
|
|
|
|
2016-04-15 01:42:42 +02:00
|
|
|
.error-icon-container {
|
|
|
|
float: right;
|
|
|
|
}
|
2015-10-11 01:41:44 +02:00
|
|
|
|
|
|
|
.error-message {
|
2016-04-15 01:42:42 +02:00
|
|
|
margin: 6px 0 0;
|
2016-08-25 00:15:55 +02:00
|
|
|
font-size: $font-size-small;
|
2016-04-15 01:42:42 +02:00
|
|
|
font-weight: bold;
|
|
|
|
color: red;
|
2015-02-18 03:03:05 +01:00
|
|
|
}
|
2015-10-11 01:41:44 +02:00
|
|
|
|
2016-04-15 01:42:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 5px;
|
2015-10-03 03:31:07 +02:00
|
|
|
}
|
2015-10-11 01:41:44 +02:00
|
|
|
|
|
|
|
button.conflict {
|
|
|
|
float: right;
|
2015-10-03 03:31:07 +02:00
|
|
|
background: #d00;
|
2016-02-15 07:41:52 +01:00
|
|
|
}
|
|
|
|
button.cancel {
|
|
|
|
float: right;
|
|
|
|
color: $grey_d;
|
|
|
|
border: solid 1px #ccc;
|
2015-02-18 03:03:05 +01:00
|
|
|
}
|
2015-02-23 22:17:50 +01:00
|
|
|
}
|
2016-05-26 20:00:21 +02:00
|
|
|
.message-list {
|
|
|
|
.error-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-09-27 08:15:20 +02:00
|
|
|
|
|
|
|
.advisory {
|
|
|
|
text-align: center;
|
|
|
|
.content {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
background: #fff5c4;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
}
|
|
|
|
}
|
2016-05-26 20:00:21 +02:00
|
|
|
}
|
2016-04-15 01:42:42 +02:00
|
|
|
li.entry .error-icon-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: calc(100% + 5px);
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.error-icon {
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: normal;
|
|
|
|
bottom: calc(50% + 18px);
|
|
|
|
left: -84px;
|
|
|
|
width: 180px;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
display: block;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -16px;
|
|
|
|
left: 50%;
|
|
|
|
border: 6px solid transparent;
|
|
|
|
border-top: 10px solid #000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .error-message { display: inline-block; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: $error-icon-size;
|
|
|
|
height: $error-icon-size;
|
|
|
|
position: relative;
|
|
|
|
@include color-svg('/images/warning.svg', red);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-05-26 05:19:31 +02:00
|
|
|
.group {
|
|
|
|
li.entry .unregistered-user-error {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-15 01:42:42 +02:00
|
|
|
|
2015-01-29 13:34:31 +01:00
|
|
|
.group-update {
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
2015-11-09 20:29:51 +01:00
|
|
|
.private .entry .avatar,
|
2015-02-13 06:17:48 +01:00
|
|
|
.private .sender,
|
2015-02-13 03:16:33 +01:00
|
|
|
.outgoing .sender {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
|
2015-01-29 13:34:31 +01:00
|
|
|
.sender {
|
|
|
|
font-size: smaller;
|
|
|
|
opacity: 0.8;
|
2015-10-17 03:14:50 +02:00
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
2015-01-29 13:34:31 +01:00
|
|
|
}
|
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.timestamp {
|
2015-10-17 03:14:50 +02:00
|
|
|
margin-right: 3px;
|
2016-04-15 20:20:34 +02:00
|
|
|
white-space: nowrap;
|
2015-10-28 21:57:32 +01:00
|
|
|
}
|
2015-01-25 21:49:28 +01:00
|
|
|
|
2016-03-21 23:37:53 +01:00
|
|
|
.message-container,
|
2015-02-23 22:17:50 +01:00
|
|
|
.message-list {
|
|
|
|
list-style: none;
|
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
li {
|
2015-11-12 19:43:07 +01:00
|
|
|
max-width: 800px;
|
2016-03-24 01:51:10 +01:00
|
|
|
margin: 0 auto 10px;
|
2015-01-20 03:44:34 +01:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
visibility: hidden;
|
|
|
|
display: block;
|
|
|
|
font-size: 0;
|
|
|
|
content: " ";
|
|
|
|
clear: both;
|
|
|
|
height: 0;
|
2014-12-23 01:28:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.bubble {
|
|
|
|
position: relative;
|
|
|
|
left: -2px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2015-06-18 22:35:40 +02:00
|
|
|
word-wrap: break-word;
|
2015-10-17 03:14:50 +02:00
|
|
|
margin-left: 8px;
|
2015-11-12 19:43:07 +01:00
|
|
|
max-width: 30em;
|
2016-07-08 15:37:25 +02:00
|
|
|
text-align: -webkit-auto;
|
2016-09-10 23:57:43 +02:00
|
|
|
-webkit-user-select: text;
|
2015-11-12 19:43:07 +01:00
|
|
|
|
2016-01-22 00:45:13 +01:00
|
|
|
@media(max-width: $big-avatar-min-width - 1px) {
|
2016-04-15 01:42:42 +02:00
|
|
|
max-width: calc(100% - 45px - #{$error-icon-size}); // avatar size + padding + error-icon size
|
2015-11-12 19:43:07 +01:00
|
|
|
}
|
2015-03-17 02:08:45 +01:00
|
|
|
|
2016-08-29 10:11:13 +02:00
|
|
|
.body {
|
2015-09-07 22:32:15 +02:00
|
|
|
white-space: pre-wrap;
|
|
|
|
|
2015-06-27 01:16:13 +02:00
|
|
|
a {
|
|
|
|
word-break: break-all
|
|
|
|
}
|
2015-03-17 02:08:45 +01:00
|
|
|
}
|
2015-06-27 01:16:13 +02:00
|
|
|
|
2015-02-18 03:03:05 +01:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2016-02-15 08:30:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.meta {
|
2016-03-22 22:47:17 +01:00
|
|
|
font-size: smaller;
|
2016-02-15 08:30:14 +01:00
|
|
|
margin-top: 3px;
|
2016-04-15 01:42:42 +02:00
|
|
|
text-align: right;
|
2016-03-24 01:49:29 +01:00
|
|
|
line-height: 18px;
|
2016-03-22 22:47:17 +01:00
|
|
|
|
|
|
|
.hasRetry + .timestamp {
|
|
|
|
&:before {
|
|
|
|
content:"\00b7"; // ·
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0 5px 0 4px;
|
|
|
|
text-decoration: none;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.retry {
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-10-12 03:52:34 +02:00
|
|
|
.hasRetry, .timestamp, .status, .timer {
|
2016-03-22 22:47:17 +01:00
|
|
|
float: left;
|
|
|
|
}
|
2016-02-15 08:30:14 +01:00
|
|
|
|
|
|
|
.timestamp, .status {
|
2016-03-22 22:47:17 +01:00
|
|
|
cursor: pointer;
|
2015-11-20 22:21:13 +01:00
|
|
|
opacity: 0.5;
|
|
|
|
|
2016-03-22 22:47:17 +01:00
|
|
|
&:hover {
|
2015-11-20 22:21:13 +01:00
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
|
2016-02-15 08:30:14 +01:00
|
|
|
.status {
|
|
|
|
width: 18px;
|
2016-03-24 01:49:29 +01:00
|
|
|
height: 18px;
|
2015-09-30 23:27:18 +02:00
|
|
|
}
|
2016-02-15 08:30:14 +01:00
|
|
|
.sent .status {
|
|
|
|
display: inline-block;
|
2016-04-01 20:03:26 +02:00
|
|
|
@include color-svg('/images/check.svg', black);
|
2015-09-30 23:27:18 +02:00
|
|
|
}
|
2016-02-15 08:30:14 +01:00
|
|
|
.delivered .status {
|
|
|
|
display: inline-block;
|
2016-04-01 20:03:26 +02:00
|
|
|
@include color-svg('/images/double-check.svg', black);
|
2016-02-15 08:30:14 +01:00
|
|
|
}
|
|
|
|
.pending .status {
|
|
|
|
display: inline-block;
|
|
|
|
background: none;
|
|
|
|
&:before { content: '...'; }
|
|
|
|
}
|
2015-09-30 23:27:18 +02:00
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.incoming {
|
2015-11-12 19:43:07 +01:00
|
|
|
.avatar, .bubble {
|
|
|
|
float: left;
|
|
|
|
}
|
2016-03-24 00:13:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.outgoing {
|
2016-10-12 03:52:34 +02:00
|
|
|
.meta {
|
|
|
|
float: right;
|
|
|
|
}
|
2016-04-15 01:42:42 +02:00
|
|
|
.error-icon-container {
|
|
|
|
left: auto;
|
|
|
|
right: calc(100% + 5px);
|
|
|
|
}
|
2016-03-24 00:13:41 +01:00
|
|
|
|
|
|
|
.avatar, .bubble {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bubble {
|
|
|
|
clear: left;
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-21 02:19:51 +02:00
|
|
|
@keyframes shake {
|
|
|
|
0% { transform: translateX(0px); }
|
|
|
|
25% { transform: translateX(-5px); }
|
|
|
|
50% { transform: translateX(0px); }
|
|
|
|
75% { transform: translateX(5px); }
|
|
|
|
100% { transform: translateX(0px); }
|
|
|
|
}
|
|
|
|
|
|
|
|
.expired .bubble {
|
|
|
|
animation: shake 0.2s linear 3;
|
|
|
|
}
|
|
|
|
|
2016-09-24 01:50:03 +02:00
|
|
|
.timer {
|
|
|
|
display: none;
|
2016-10-11 06:55:23 +02:00
|
|
|
.hourglass {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2016-09-22 23:12:38 +02:00
|
|
|
}
|
|
|
|
|
2015-03-23 23:44:47 +01:00
|
|
|
.control {
|
|
|
|
.bubble {
|
|
|
|
.content {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
&::before, &::after {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-03-23 23:44:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 20:49:23 +01:00
|
|
|
.attachments {
|
2015-12-22 02:36:33 +01:00
|
|
|
a {
|
|
|
|
font-style: italic;
|
|
|
|
display: block;
|
|
|
|
padding: 1em;
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
2015-03-02 20:49:23 +01:00
|
|
|
img, audio, video {
|
|
|
|
max-width: 100%;
|
2015-11-12 19:35:29 +01:00
|
|
|
max-height: 300px;
|
2015-03-02 20:49:23 +01:00
|
|
|
}
|
2015-03-03 02:53:44 +01:00
|
|
|
|
|
|
|
video {
|
|
|
|
background: black;
|
2015-11-12 19:35:29 +01:00
|
|
|
min-height: 300px;
|
2016-10-28 08:05:44 +02:00
|
|
|
min-width: 280px;
|
2015-03-03 02:53:44 +01:00
|
|
|
}
|
2015-10-21 19:25:28 +02:00
|
|
|
|
|
|
|
img {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2015-12-22 02:36:33 +01:00
|
|
|
|
2015-01-22 10:39:07 +01:00
|
|
|
}
|
2015-02-02 05:37:50 +01:00
|
|
|
|
2015-03-12 01:49:01 +01:00
|
|
|
.outgoing .avatar {
|
2015-02-02 05:37:50 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-04-15 01:42:42 +02:00
|
|
|
.bubble .content.error-message {
|
2016-05-26 05:37:28 +02:00
|
|
|
cursor: pointer;
|
2015-02-18 03:03:05 +01:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key-conflict {
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 20:33:50 +01:00
|
|
|
.message-list,
|
|
|
|
.message-container,
|
|
|
|
.key-conflict-dialogue {
|
|
|
|
.avatar {
|
|
|
|
height: 36px;
|
|
|
|
width: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.bottom-bar {
|
2016-03-22 01:17:39 +01:00
|
|
|
box-sizing: content-box;
|
2015-06-16 22:43:40 +02:00
|
|
|
$button-width: 36px;
|
2016-03-22 19:30:45 +01:00
|
|
|
padding: 5px 5px 5px 0;
|
2016-03-18 21:09:45 +01:00
|
|
|
background: $grey_l;
|
|
|
|
|
2016-03-21 07:15:21 +01:00
|
|
|
form.active {
|
|
|
|
outline: solid 1px $blue;
|
|
|
|
}
|
|
|
|
|
2016-03-18 21:09:45 +01:00
|
|
|
form.send {
|
|
|
|
background: #ffffff;
|
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
|
2016-04-07 21:26:16 +02:00
|
|
|
input, textarea {
|
2015-01-20 03:44:34 +01:00
|
|
|
color: $grey_d;
|
|
|
|
}
|
|
|
|
|
2015-10-30 02:19:51 +01:00
|
|
|
.attachment-previews {
|
|
|
|
padding: 0 36px;
|
|
|
|
.attachment-preview {
|
|
|
|
padding: 13px 10px 0;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
border: 2px solid #ddd;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2015-10-30 02:19:51 +01:00
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
2016-04-02 00:15:02 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 2px;
|
2015-10-30 02:19:51 +01:00
|
|
|
background: #999;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-16 00:36:29 +02:00
|
|
|
|
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.send-message {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 02:19:51 +01:00
|
|
|
.choose-file {
|
2015-01-25 10:18:10 +01:00
|
|
|
float: left;
|
2015-10-30 02:19:51 +01:00
|
|
|
height: 36px;
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
.send-message {
|
|
|
|
display: block;
|
|
|
|
max-height: 100px;
|
|
|
|
padding: 10px;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
z-index: 5;
|
2015-06-17 23:06:19 +02:00
|
|
|
resize: none;
|
2015-12-07 08:26:27 +01:00
|
|
|
font-size: 1em;
|
2016-01-20 05:15:12 +01:00
|
|
|
font-family: inherit;
|
2016-08-16 00:36:29 +02:00
|
|
|
|
|
|
|
&[disabled=disabled] {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2014-11-07 09:17:27 +01:00
|
|
|
}
|
2016-08-16 00:36:29 +02:00
|
|
|
.capture-audio {
|
|
|
|
float: right;
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
|
2015-01-11 12:27:22 +01:00
|
|
|
}
|
2015-02-14 01:21:39 +01:00
|
|
|
|
2015-03-03 01:31:04 +01:00
|
|
|
.toast {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
margin: 0 2em 3em;
|
|
|
|
padding: 0.5em 1.5em;
|
|
|
|
background: rgba(0, 0, 0, 0.75);
|
|
|
|
color: white;
|
|
|
|
box-shadow: 0 0 5px 0 black;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2016-08-25 00:15:55 +02:00
|
|
|
font-size: $font-size-small;
|
2016-09-02 00:09:24 +02:00
|
|
|
z-index: 100;
|
2015-03-03 01:31:04 +01:00
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
|
2015-05-27 01:54:21 +02:00
|
|
|
.confirmation-dialog {
|
2016-02-19 02:28:34 +01:00
|
|
|
.content {
|
2016-01-23 17:00:07 +01:00
|
|
|
max-width: 350px;
|
|
|
|
margin: 100px auto;
|
|
|
|
padding: 1em;
|
|
|
|
background: white;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2016-01-23 17:00:07 +01:00
|
|
|
overflow: auto;
|
|
|
|
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
|
2015-03-03 03:27:14 +01:00
|
|
|
|
2016-01-23 17:00:07 +01:00
|
|
|
.message {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
float: right;
|
|
|
|
margin-left: 10px;
|
|
|
|
background-color: $grey_l;
|
2016-04-01 23:24:13 +02:00
|
|
|
border-radius: $border-radius;
|
2016-01-23 17:00:07 +01:00
|
|
|
outline: none;
|
|
|
|
padding: 5px 8px;
|
2016-01-24 12:53:30 +01:00
|
|
|
border: 1px solid $grey_l2;
|
2016-01-23 17:00:07 +01:00
|
|
|
|
|
|
|
&:focus {
|
2016-01-24 12:53:30 +01:00
|
|
|
border-color: $grey_l4;
|
2016-01-23 17:00:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2016-01-24 12:53:30 +01:00
|
|
|
background-color: $grey_l2;
|
|
|
|
border-color: $grey_l3;
|
2016-01-23 17:00:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
}
|
2015-05-27 01:54:21 +02:00
|
|
|
}
|
2016-09-18 08:55:05 +02:00
|
|
|
.message-list li.keychange {
|
|
|
|
text-align: center;
|
|
|
|
.content {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
background: #fff5c4;
|
2017-01-17 06:26:11 +01:00
|
|
|
color: $grey_d;
|
2016-09-18 08:55:05 +02:00
|
|
|
border-radius: $border-radius;
|
|
|
|
}
|
|
|
|
}
|