2015-08-25 16:47:15 -07:00
|
|
|
.conversation-stack,
|
2018-05-04 16:07:52 -04:00
|
|
|
.new-conversation,
|
|
|
|
.inbox,
|
|
|
|
.gutter {
|
2015-02-18 23:09:34 -08:00
|
|
|
height: 100%;
|
|
|
|
}
|
2015-08-26 17:11:01 -07:00
|
|
|
|
2016-04-03 20:06:27 -07:00
|
|
|
.expired {
|
2018-05-04 16:07:52 -04:00
|
|
|
.conversation-stack,
|
|
|
|
.gutter {
|
2016-04-03 20:06:27 -07:00
|
|
|
height: calc(100% - 56px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 13:40:21 -07:00
|
|
|
.scrollable {
|
2015-03-09 14:50:50 -07:00
|
|
|
height: 100%;
|
2015-02-18 23:09:34 -08:00
|
|
|
overflow: auto;
|
2015-01-29 20:59:08 -10:00
|
|
|
}
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.gutter {
|
2016-03-20 23:36:45 -07:00
|
|
|
color: $grey_d;
|
2015-08-25 16:47:15 -07:00
|
|
|
float: left;
|
2015-08-26 17:48:18 -07:00
|
|
|
width: 300px;
|
2017-04-11 16:24:06 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2016-02-22 10:47:48 -08:00
|
|
|
.content {
|
2016-03-18 11:11:36 -07:00
|
|
|
background-color: $grey_l;
|
2017-04-11 16:24:06 -07:00
|
|
|
flex-grow: 1;
|
2017-09-07 18:57:47 +02:00
|
|
|
overflow-y: auto;
|
2015-08-26 17:48:18 -07:00
|
|
|
}
|
2017-04-11 16:24:06 -07:00
|
|
|
}
|
|
|
|
.network-status-container {
|
|
|
|
.network-status {
|
2017-03-07 16:54:46 -08:00
|
|
|
background: url('../images/error_red.svg') no-repeat left 10px center;
|
2017-04-11 16:24:06 -07:00
|
|
|
background-size: 25px 25px;
|
|
|
|
background-color: #fcd156;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 2 * $button-height;
|
|
|
|
display: none;
|
2015-08-25 16:47:15 -07:00
|
|
|
|
2018-05-04 16:07:52 -04:00
|
|
|
.network-status-message {
|
2017-04-11 16:24:06 -07:00
|
|
|
h3 {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 0.5em 0;
|
2017-01-03 21:37:56 -06:00
|
|
|
}
|
|
|
|
}
|
2017-04-12 16:46:51 -07:00
|
|
|
.action {
|
|
|
|
button {
|
|
|
|
border-radius: $border-radius;
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
cursor: pointer;
|
|
|
|
font-family: inherit;
|
|
|
|
color: white;
|
|
|
|
background: $blue;
|
|
|
|
}
|
|
|
|
}
|
2015-03-09 13:20:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.conversation-stack {
|
2016-03-22 10:34:54 -07:00
|
|
|
padding-left: 300px;
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.conversation {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.conversation:first-child {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.conversation-header {
|
2016-03-21 15:37:53 -07:00
|
|
|
height: $header-height;
|
2016-03-18 13:09:45 -07:00
|
|
|
text-align: center;
|
|
|
|
color: white;
|
2016-03-20 23:46:31 -07:00
|
|
|
background-color: #999999;
|
|
|
|
transition: background-color 0.5s;
|
2018-05-04 16:07:52 -04:00
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
2016-03-18 13:09:45 -07:00
|
|
|
|
2015-11-09 11:29:51 -08:00
|
|
|
.avatar {
|
2016-03-18 13:09:45 -07:00
|
|
|
margin-bottom: -30px;
|
|
|
|
border: solid 2px white;
|
|
|
|
z-index: 10;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
line-height: 44px;
|
|
|
|
position: relative;
|
2015-11-09 11:29:51 -08:00
|
|
|
}
|
2015-08-25 16:47:15 -07:00
|
|
|
}
|
2016-03-20 20:02:38 -07:00
|
|
|
.inactive .conversation-header {
|
2016-03-20 23:46:31 -07:00
|
|
|
background-color: $grey_l !important;
|
2016-03-20 20:02:38 -07:00
|
|
|
color: $grey_d;
|
2018-05-04 16:07:52 -04:00
|
|
|
border-color: rgba(0, 0, 0, 0.05);
|
2017-06-14 14:06:36 -07:00
|
|
|
.verified-icon {
|
2017-06-18 20:49:14 -07:00
|
|
|
@include color-svg('../images/verified-check.svg', $grey_d);
|
2017-06-14 14:06:36 -07:00
|
|
|
}
|
2016-03-20 20:02:38 -07:00
|
|
|
}
|
2015-08-25 16:47:15 -07:00
|
|
|
|
2016-04-12 18:00:33 -07:00
|
|
|
.tool-bar {
|
|
|
|
position: relative;
|
|
|
|
.search-icon {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
width: 24px;
|
|
|
|
height: 100%;
|
2017-03-07 16:54:46 -08:00
|
|
|
-webkit-mask: url('../images/search.svg') no-repeat left center;
|
2016-04-12 18:00:33 -07:00
|
|
|
-webkit-mask-size: 100%;
|
|
|
|
background-color: #ccc;
|
|
|
|
position: absolute;
|
|
|
|
left: 20px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-12 16:14:21 -07:00
|
|
|
input.search {
|
2015-02-05 20:42:16 -10:00
|
|
|
border: none;
|
2017-03-30 12:00:43 -07:00
|
|
|
padding: 0 $search-padding-right 0 $search-padding-left;
|
2015-02-05 20:42:16 -10:00
|
|
|
margin: 0;
|
|
|
|
outline: 0;
|
2016-04-06 17:33:25 -07:00
|
|
|
height: $search-height;
|
2016-04-12 18:00:33 -07:00
|
|
|
line-height: $search-height;
|
2016-03-27 15:30:10 -07:00
|
|
|
width: 100%;
|
|
|
|
border: solid 1px $grey_l;
|
|
|
|
outline-offset: -2px;
|
2016-04-01 10:37:45 -07:00
|
|
|
font-size: inherit;
|
2016-04-12 18:00:33 -07:00
|
|
|
position: relative;
|
2016-03-27 15:30:10 -07:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
outline: solid 1px $blue;
|
2017-03-07 16:54:46 -08:00
|
|
|
background-image: url('../images/x.svg');
|
2017-03-30 12:00:43 -07:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: $search-x-size;
|
|
|
|
|
|
|
|
&.ltr {
|
2018-05-04 16:07:52 -04:00
|
|
|
background-position: right $search-padding-right center;
|
2017-03-30 12:00:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
&.rtl {
|
2018-05-04 16:07:52 -04:00
|
|
|
background-position: left $search-padding-left center;
|
2017-03-30 12:00:43 -07:00
|
|
|
}
|
2016-03-27 15:30:10 -07:00
|
|
|
}
|
|
|
|
|
2015-12-06 20:40:29 -08:00
|
|
|
&::-webkit-search-cancel-button {
|
|
|
|
-webkit-appearance: none;
|
2016-03-24 12:33:41 -07:00
|
|
|
display: block;
|
2017-03-30 12:00:43 -07:00
|
|
|
width: $search-x-size;
|
|
|
|
height: $search-x-size;
|
2015-12-06 20:40:29 -08:00
|
|
|
}
|
2016-03-27 15:30:10 -07:00
|
|
|
|
2015-12-07 22:28:22 +01:00
|
|
|
&::-webkit-search-cancel-button:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2015-01-25 21:44:53 -10:00
|
|
|
}
|
|
|
|
|
2015-01-30 11:43:10 -10:00
|
|
|
.last-timestamp {
|
|
|
|
font-size: smaller;
|
2015-10-24 00:43:51 +03:00
|
|
|
float: right;
|
2015-10-23 15:47:32 -07:00
|
|
|
margin: 0 10px;
|
2016-03-18 13:09:45 -07:00
|
|
|
color: $grey;
|
2015-01-30 11:43:10 -10:00
|
|
|
}
|
|
|
|
|
2015-02-05 20:42:16 -10:00
|
|
|
.new-contact {
|
2015-03-12 11:40:55 -07:00
|
|
|
display: none;
|
2015-10-21 12:11:48 -07:00
|
|
|
cursor: pointer;
|
2015-12-05 19:21:15 -08:00
|
|
|
opacity: 0.7;
|
|
|
|
.contact-details .number {
|
2015-02-05 20:42:16 -10:00
|
|
|
display: block;
|
|
|
|
font-style: italic;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2015-12-05 19:21:15 -08:00
|
|
|
|
|
|
|
&.valid {
|
2018-05-04 16:07:52 -04:00
|
|
|
opacity: 1;
|
2015-12-05 19:21:15 -08:00
|
|
|
}
|
2015-01-25 08:38:35 -10:00
|
|
|
}
|
|
|
|
|
2015-01-25 08:36:41 -10:00
|
|
|
.index {
|
2015-08-25 16:47:15 -07:00
|
|
|
.gutter .new-group-update-form {
|
2015-03-12 11:40:55 -07:00
|
|
|
display: none;
|
|
|
|
padding: 0.5em;
|
2015-01-25 08:36:41 -10:00
|
|
|
}
|
|
|
|
|
|
|
|
.last-message {
|
2016-04-01 11:36:28 -07:00
|
|
|
margin: 6px 0 0;
|
2016-08-24 15:15:55 -07:00
|
|
|
font-size: $font-size-small;
|
2015-01-25 08:36:41 -10:00
|
|
|
}
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.gutter .timestamp {
|
2015-01-25 08:36:41 -10:00
|
|
|
position: absolute;
|
|
|
|
top: 14px;
|
|
|
|
right: 12px;
|
2016-03-18 13:09:45 -07:00
|
|
|
color: $grey;
|
2015-01-25 08:36:41 -10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-11 12:06:19 -07:00
|
|
|
.conversations .unread .contact-details {
|
2018-05-04 16:07:52 -04:00
|
|
|
.name,
|
|
|
|
.last-message,
|
|
|
|
.last-timestamp {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-03-11 12:06:19 -07:00
|
|
|
}
|
2015-11-20 16:58:52 -08:00
|
|
|
|
|
|
|
.hint {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 1em;
|
2016-04-01 14:24:13 -07:00
|
|
|
border-radius: $border-radius;
|
2015-11-20 16:58:52 -08:00
|
|
|
color: white;
|
|
|
|
border: 2px dashed white;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.firstRun {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 302px;
|
|
|
|
width: 225px;
|
|
|
|
|
2018-05-04 16:07:52 -04:00
|
|
|
&:before,
|
|
|
|
&:after {
|
2015-11-20 16:58:52 -08:00
|
|
|
content: ' ';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
left: -35px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border: solid 10px white;
|
|
|
|
border-color: transparent white transparent transparent;
|
|
|
|
transform: scaleX(2.5) scaleY(0.75);
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
border-color: transparent #2eace0 transparent transparent;
|
|
|
|
left: -30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-27 15:43:45 -08:00
|
|
|
|
|
|
|
.conversation.placeholder {
|
2015-11-28 14:41:58 -08:00
|
|
|
text-align: center;
|
2018-03-06 18:27:49 -08:00
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2016-08-30 18:27:54 -07:00
|
|
|
.content {
|
2018-03-06 18:27:49 -08:00
|
|
|
display: inline-block;
|
2016-08-30 18:27:54 -07:00
|
|
|
}
|
2016-07-04 19:29:06 -07:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: large;
|
|
|
|
}
|
2015-11-27 15:43:45 -08:00
|
|
|
}
|
2015-11-27 17:34:02 -08:00
|
|
|
.contact.placeholder {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
left: 0;
|
|
|
|
background: transparent;
|
|
|
|
color: white;
|
|
|
|
border: 2px dashed white;
|
|
|
|
overflow: visible;
|
2018-05-04 16:07:52 -04:00
|
|
|
p {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
&:before,
|
|
|
|
&:after {
|
2015-11-27 17:34:02 -08:00
|
|
|
content: ' ';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: -35px;
|
|
|
|
left: 15px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border: solid 10px white;
|
|
|
|
border-color: transparent transparent white transparent;
|
|
|
|
transform: scaleY(2.5) scaleX(0.75);
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
border-color: transparent transparent #2eace0 transparent;
|
|
|
|
top: -30px;
|
|
|
|
}
|
|
|
|
}
|