2015-09-04 22:11:21 +02:00
|
|
|
.conversation {
|
|
|
|
background-color: #ffffff;
|
2015-10-17 03:14:50 +02:00
|
|
|
margin: 10px;
|
2015-11-09 20:29:51 +01:00
|
|
|
padding: 20px;
|
2015-10-17 03:14:50 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2015-11-08 03:35:11 +01:00
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: rgba(0,0,0,0.15);
|
|
|
|
}
|
2015-09-04 22:11:21 +02:00
|
|
|
}
|
2015-08-27 00:13:14 +02:00
|
|
|
.conversation-title {
|
|
|
|
display: block;
|
|
|
|
line-height: $header-height;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
padding-left: 10px;
|
2015-12-04 03:21:19 +01:00
|
|
|
-webkit-user-select: text;
|
|
|
|
}
|
|
|
|
.conversation-number {
|
|
|
|
padding-left: 5px;
|
|
|
|
line-height: 1em;
|
|
|
|
font-size: small;
|
|
|
|
color: #999;
|
2015-08-27 00:13:14 +02:00
|
|
|
}
|
|
|
|
|
2015-02-19 08:09:34 +01:00
|
|
|
.conversation {
|
2015-10-17 03:14:50 +02:00
|
|
|
height: calc(100% - 20px);
|
|
|
|
border-radius: 10px;
|
2015-05-23 00:41:30 +02:00
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
.discussion-container {
|
2015-10-17 03:14:50 +02:00
|
|
|
height: calc(100% - 2 * #{$header-height} - 60px);
|
2015-06-16 22:43:40 +02:00
|
|
|
}
|
2015-02-19 08:09:34 +01:00
|
|
|
}
|
|
|
|
|
2015-09-04 22:11:21 +02:00
|
|
|
.group-member-list,
|
|
|
|
.new-group-update,
|
2015-10-17 03:14:50 +02:00
|
|
|
.message-list, .message-detail, .key-verification {
|
2015-02-19 08:09:34 +01:00
|
|
|
height: 100%;
|
|
|
|
}
|
2014-11-07 09:17:27 +01:00
|
|
|
|
2015-02-27 03:10:04 +01:00
|
|
|
.key-verification {
|
2015-09-15 20:01:48 +02:00
|
|
|
background: white;
|
|
|
|
|
2015-02-27 03:10:04 +01:00
|
|
|
p {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
.key {
|
|
|
|
font-family: monospace;
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
|
2015-02-23 22:17:50 +01:00
|
|
|
.message-detail {
|
2015-11-05 23:32:55 +01:00
|
|
|
.container {
|
|
|
|
height: calc(100% - (#{$header-height} + 4px));
|
|
|
|
}
|
2015-02-23 22:17:50 +01:00
|
|
|
|
|
|
|
.message-container {
|
|
|
|
background: white;
|
|
|
|
padding: 1em 0;
|
|
|
|
|
|
|
|
.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;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: white;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
background: $blue;
|
|
|
|
|
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
background: url('/images/refresh.png') no-repeat center center;
|
|
|
|
background-size: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-detail {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
padding: 0 36px;
|
2015-02-23 22:17:50 +01:00
|
|
|
}
|
2015-02-18 03:03:05 +01:00
|
|
|
|
2015-10-11 01:41:44 +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 {
|
|
|
|
float: right;
|
2015-10-03 03:31:07 +02:00
|
|
|
}
|
2015-10-11 01:41:44 +02:00
|
|
|
}
|
2015-02-18 03:03:05 +01:00
|
|
|
|
2015-10-11 01:41:44 +02:00
|
|
|
.error-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
background: url('/images/error_red.png') no-repeat center center;
|
|
|
|
vertical-align: middle;
|
|
|
|
position: relative;
|
|
|
|
margin: 9px;
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: normal;
|
|
|
|
bottom: calc(100% + 16px);
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -130px;
|
|
|
|
width: 180px;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
left: -10px;
|
|
|
|
display: block;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -23px;
|
|
|
|
left: calc(50% - 6px + 40px);
|
|
|
|
border: 6px solid transparent;
|
|
|
|
border-top: 18px solid #000000;
|
|
|
|
}
|
2015-02-18 03:03:05 +01:00
|
|
|
}
|
2015-10-11 01:41:44 +02:00
|
|
|
|
|
|
|
&:hover .error-message { display: block; }
|
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;
|
2015-02-18 03:03:05 +01:00
|
|
|
|
2015-10-11 01:41:44 +02:00
|
|
|
span {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2015-10-03 03:31:07 +02:00
|
|
|
&:before {
|
|
|
|
background: url('/images/error.png') no-repeat center center;
|
2015-02-18 03:03:05 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-23 22:17:50 +01:00
|
|
|
}
|
|
|
|
|
2015-01-29 13:34:31 +01:00
|
|
|
.group-update {
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
2015-09-04 22:11:21 +02:00
|
|
|
.group-member-list {
|
2015-08-04 21:15:37 +02:00
|
|
|
.container {
|
|
|
|
height: calc(100% - #{$header-height});
|
|
|
|
}
|
|
|
|
}
|
2015-09-04 22:11:21 +02:00
|
|
|
|
|
|
|
.new-group-update {
|
|
|
|
.container { height: calc(100% - #{$header-height} - 85px); }
|
2015-03-12 19:40:55 +01:00
|
|
|
}
|
|
|
|
|
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-01-30 22:43:10 +01:00
|
|
|
font-size: smaller;
|
2015-10-17 03:14:50 +02:00
|
|
|
margin-right: 3px;
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
|
2015-10-28 22:12:40 +01:00
|
|
|
.outgoing.entry {
|
|
|
|
.status {
|
2015-10-28 21:01:36 +01:00
|
|
|
display: inline-block;
|
|
|
|
width: 18px;
|
|
|
|
height: 1em;
|
|
|
|
}
|
2015-10-28 22:12:40 +01:00
|
|
|
&.sent .status {
|
|
|
|
background: url('/images/check-white.png');
|
|
|
|
}
|
|
|
|
&.delivered .status {
|
|
|
|
background: url('/images/double-check-white.png');
|
|
|
|
}
|
|
|
|
&.pending .status {
|
2015-11-08 23:25:03 +01:00
|
|
|
background: none;
|
|
|
|
&:before { content: '...'; }
|
|
|
|
}
|
2015-10-28 21:57:32 +01:00
|
|
|
}
|
2015-01-25 21:49:28 +01:00
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.message-list {
|
2015-11-11 01:03:19 +01:00
|
|
|
position: relative;
|
2015-11-12 19:35:29 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 2em 0 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
&:before {
|
2015-11-11 01:03:19 +01:00
|
|
|
display: block;
|
2015-11-12 19:35:29 +01:00
|
|
|
margin: -25px auto 10px;
|
2015-11-11 01:03:19 +01:00
|
|
|
content: " ";
|
2015-11-12 19:35:29 +01:00
|
|
|
height: $loading-height;
|
|
|
|
width: $loading-height;
|
|
|
|
border: solid 3px transparent;
|
2015-11-11 01:03:19 +01:00
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
|
2015-02-23 22:17:50 +01:00
|
|
|
.timestamp {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2015-08-27 02:30:20 +02:00
|
|
|
|
2015-02-23 22:17:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-detail,
|
|
|
|
.message-list {
|
|
|
|
list-style: none;
|
|
|
|
|
2015-11-08 03:35:11 +01:00
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
li {
|
2015-11-12 19:43:07 +01:00
|
|
|
max-width: 800px;
|
2015-01-20 03:44:34 +01:00
|
|
|
margin: 0 8px 16px;
|
|
|
|
|
|
|
|
&::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;
|
|
|
|
padding: 9px 12px;
|
2015-10-17 03:14:50 +02:00
|
|
|
border-radius: 10px;
|
2015-01-20 03:44:34 +01:00
|
|
|
box-shadow: 0 3px 3px -4px black;
|
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;
|
|
|
|
|
2015-11-30 03:40:30 +01:00
|
|
|
@media(max-width:900px) {
|
2015-11-12 19:43:07 +01:00
|
|
|
max-width: calc(100% - 45px); // avatar size + padding
|
|
|
|
}
|
2015-03-17 02:08:45 +01:00
|
|
|
|
2015-06-27 01:16:13 +02:00
|
|
|
.content {
|
|
|
|
-webkit-user-select: text;
|
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;
|
|
|
|
}
|
2015-11-20 22:21:13 +01:00
|
|
|
.meta {
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
|
2015-07-08 04:21:10 +02:00
|
|
|
.outgoing.sent .bubble {
|
|
|
|
}
|
2015-05-26 22:30:51 +02:00
|
|
|
|
2015-10-24 02:20:24 +02:00
|
|
|
.error.bubble {
|
|
|
|
cursor: pointer;
|
2015-09-30 23:27:18 +02:00
|
|
|
background: url('/images/error_red.png') no-repeat;
|
|
|
|
}
|
2015-10-24 02:20:24 +02:00
|
|
|
.incoming .error.bubble {
|
2015-09-30 23:27:18 +02:00
|
|
|
padding-right: 40px;
|
|
|
|
background-position: calc(100% - 12px) 9px;
|
|
|
|
}
|
2015-10-24 02:20:24 +02:00
|
|
|
.outgoing .error.bubble {
|
2015-09-30 23:27:18 +02:00
|
|
|
padding-left: 40px;
|
|
|
|
background-position: 12px 9px;
|
|
|
|
}
|
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.incoming {
|
2015-11-12 19:43:07 +01:00
|
|
|
.avatar, .bubble {
|
|
|
|
float: left;
|
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
.bubble {
|
|
|
|
color: $grey_d;
|
2015-09-30 23:27:18 +02:00
|
|
|
background-color: $grey_l;
|
2015-01-20 03:44:34 +01:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
left: -10px;
|
|
|
|
border-right: 10px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
left: -8px;
|
|
|
|
border-right: 8px solid $grey_l;
|
|
|
|
}
|
2014-12-23 01:28:10 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
|
|
|
|
.outgoing {
|
|
|
|
|
2015-03-10 20:11:32 +01:00
|
|
|
.avatar, .bubble {
|
2015-01-20 03:44:34 +01:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bubble {
|
|
|
|
clear: left;
|
|
|
|
color: white;
|
2015-09-30 23:27:18 +02:00
|
|
|
background-color: $blue;
|
2015-01-20 03:44:34 +01:00
|
|
|
|
2015-03-06 01:29:12 +01:00
|
|
|
.meta {
|
2015-11-20 22:21:13 +01:00
|
|
|
color: white;
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
right: -10px;
|
|
|
|
border-left: 10px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
right: -8px;
|
|
|
|
border-left: 8px solid $blue;
|
|
|
|
}
|
2015-09-02 18:26:01 +02:00
|
|
|
|
|
|
|
.content {
|
2015-09-02 20:47:32 +02:00
|
|
|
a {
|
|
|
|
color: $grey_l;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::selection, a::selection {
|
2015-09-02 18:26:01 +02:00
|
|
|
color: $grey_d;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
2015-09-02 20:47:32 +02:00
|
|
|
&::-moz-selection, a::-moz-selection {
|
2015-09-02 18:26:01 +02:00
|
|
|
color: $grey_d;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
}
|
2015-01-20 03:44:34 +01: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 {
|
|
|
|
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;
|
2015-03-03 02:53:44 +01:00
|
|
|
}
|
2015-10-21 19:25:28 +02:00
|
|
|
|
|
|
|
img {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2015-03-23 22:01:18 +01:00
|
|
|
.avatar {
|
2015-03-04 22:59:40 +01:00
|
|
|
height: 36px;
|
|
|
|
width: 36px;
|
2015-06-20 01:20:27 +02:00
|
|
|
line-height: 36px;
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
|
2015-03-06 01:29:12 +01:00
|
|
|
.meta {
|
2015-01-20 03:44:34 +01:00
|
|
|
margin-top: 3px;
|
|
|
|
float: right;
|
|
|
|
}
|
2015-02-19 20:51:32 +01:00
|
|
|
|
|
|
|
.end-session {
|
|
|
|
font: small;
|
|
|
|
font-style: italic;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2015-02-18 03:03:05 +01:00
|
|
|
|
2015-09-30 23:27:18 +02:00
|
|
|
.bubble .error-message {
|
2015-02-18 03:03:05 +01:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key-conflict {
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.key-conflict-dialogue {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
padding: $header-height;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 1em;
|
|
|
|
background: white;
|
|
|
|
color: black;
|
|
|
|
box-shadow: 0 0 5px 0 black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.verify {
|
|
|
|
color: $blue;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2014-11-07 09:17:27 +01:00
|
|
|
}
|
|
|
|
|
2015-01-20 03:44:34 +01:00
|
|
|
.bottom-bar {
|
2015-06-16 22:43:40 +02:00
|
|
|
$button-width: 36px;
|
2015-10-17 03:14:50 +02:00
|
|
|
margin-top: 4px;
|
2015-01-20 03:44:34 +01:00
|
|
|
height: 36px;
|
|
|
|
border-top: 1px solid $grey_l;
|
|
|
|
background: white;
|
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
button, input, textarea {
|
2015-01-20 03:44:34 +01:00
|
|
|
color: $grey_d;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
2015-06-16 22:43:40 +02:00
|
|
|
width: $button-width;
|
2015-01-20 03:44:34 +01:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
font-size: 24px;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2015-10-30 02:19:51 +01:00
|
|
|
|
|
|
|
.attachment-previews {
|
|
|
|
padding: 0 36px;
|
|
|
|
.attachment-preview {
|
|
|
|
padding: 13px 10px 0;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
border: 2px solid #ddd;
|
|
|
|
border-radius: 5px;
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
background: #999;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
|
|
|
.send-btn {
|
2015-01-22 10:39:07 +01:00
|
|
|
float: right;
|
2015-10-30 02:19:51 +01:00
|
|
|
height: 36px;
|
2015-01-22 10:39:07 +01:00
|
|
|
width: 36px;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
background: url('/images/send.png') no-repeat;
|
2015-03-06 00:48:28 +01:00
|
|
|
background-size: 75%;
|
|
|
|
background-position: center center;
|
2015-01-22 10:39:07 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '+';
|
|
|
|
}
|
2015-01-20 03:44:34 +01:00
|
|
|
}
|
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
form, input, textarea {
|
2015-01-20 03:44:34 +01:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
.send-message {
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 2 * #{$button-width} - 20px);
|
|
|
|
min-height: $header-height - 1px;
|
|
|
|
max-height: 100px;
|
|
|
|
padding: 10px;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
z-index: 5;
|
2015-06-17 23:06:19 +02:00
|
|
|
resize: none;
|
2014-11-07 09:17:27 +01:00
|
|
|
}
|
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;
|
|
|
|
border-radius: 20px;
|
|
|
|
font-size: small;
|
|
|
|
}
|
2015-06-16 22:43:40 +02:00
|
|
|
|
2015-05-27 01:54:21 +02:00
|
|
|
.confirmation-dialog {
|
2015-06-16 22:43:40 +02:00
|
|
|
position: absolute;
|
|
|
|
top: $header-height;
|
|
|
|
padding: 1em;
|
|
|
|
background: white;
|
|
|
|
border: solid 2px $blue;
|
2015-05-27 01:54:21 +02:00
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
.message {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-03-03 03:27:14 +01:00
|
|
|
|
2015-06-16 22:43:40 +02:00
|
|
|
button {
|
|
|
|
float: right;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2015-05-27 01:54:21 +02:00
|
|
|
}
|