2015-08-25 23:47:15 +00:00
|
|
|
.conversation-stack,
|
2018-05-04 20:07:52 +00:00
|
|
|
.new-conversation,
|
|
|
|
.inbox,
|
|
|
|
.gutter {
|
2015-02-19 07:09:34 +00:00
|
|
|
height: 100%;
|
2018-07-09 21:29:13 +00:00
|
|
|
overflow: hidden;
|
2015-02-19 07:09:34 +00:00
|
|
|
}
|
2015-08-27 00:11:01 +00:00
|
|
|
|
2016-04-04 03:06:27 +00:00
|
|
|
.expired {
|
2018-05-04 20:07:52 +00:00
|
|
|
.conversation-stack,
|
|
|
|
.gutter {
|
2018-07-09 21:29:13 +00:00
|
|
|
height: calc(100% - 48px);
|
2016-04-04 03:06:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 20:40:21 +00:00
|
|
|
.scrollable {
|
2015-03-09 21:50:50 +00:00
|
|
|
height: 100%;
|
2015-02-19 07:09:34 +00:00
|
|
|
overflow: auto;
|
2015-01-30 06:59:08 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
.gutter {
|
2018-09-26 00:26:06 +00:00
|
|
|
background-color: $color-gray-02;
|
2018-08-08 18:27:40 +00:00
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2018-09-26 00:26:06 +00:00
|
|
|
background: $color-gray-02;
|
2018-08-08 18:27:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2018-09-26 00:26:06 +00:00
|
|
|
border: 2px solid $color-gray-02;
|
2018-08-08 18:27:40 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
float: left;
|
2015-08-27 00:48:18 +00:00
|
|
|
width: 300px;
|
2019-01-22 22:08:00 +00:00
|
|
|
user-select: none;
|
2019-01-10 20:26:28 +00:00
|
|
|
|
2016-02-22 18:47:48 +00:00
|
|
|
.content {
|
2018-07-09 21:29:13 +00:00
|
|
|
overflow-y: scroll;
|
|
|
|
max-height: calc(100% - 88px);
|
2015-08-27 00:48:18 +00:00
|
|
|
}
|
2017-04-11 23:24:06 +00:00
|
|
|
}
|
2019-01-10 20:26:28 +00:00
|
|
|
|
2017-04-11 23:24:06 +00:00
|
|
|
.network-status-container {
|
|
|
|
.network-status {
|
2017-03-08 00:54:46 +00:00
|
|
|
background: url('../images/error_red.svg') no-repeat left 10px center;
|
2017-04-11 23:24:06 +00:00
|
|
|
background-size: 25px 25px;
|
|
|
|
background-color: #fcd156;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 2 * $button-height;
|
|
|
|
display: none;
|
2015-08-25 23:47:15 +00:00
|
|
|
|
2018-05-04 20:07:52 +00:00
|
|
|
.network-status-message {
|
2017-04-11 23:24:06 +00: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-04 03:37:56 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-12 23:46:51 +00:00
|
|
|
.action {
|
|
|
|
button {
|
|
|
|
border-radius: $border-radius;
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
cursor: pointer;
|
|
|
|
font-family: inherit;
|
|
|
|
color: white;
|
|
|
|
background: $blue;
|
|
|
|
}
|
|
|
|
}
|
2015-03-09 20:20:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
.conversation-stack {
|
|
|
|
.conversation {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.conversation:first-child {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-13 01:00:33 +00:00
|
|
|
.tool-bar {
|
2018-07-09 21:29:13 +00:00
|
|
|
color: $color-light-90;
|
|
|
|
|
|
|
|
padding: 8px;
|
|
|
|
padding-top: 0px;
|
|
|
|
margin-top: -1px;
|
|
|
|
|
2016-04-13 01:00:33 +00:00
|
|
|
position: relative;
|
|
|
|
.search-icon {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
width: 24px;
|
2018-07-09 21:29:13 +00:00
|
|
|
height: 33px;
|
2017-03-08 00:54:46 +00:00
|
|
|
-webkit-mask: url('../images/search.svg') no-repeat left center;
|
2016-04-13 01:00:33 +00:00
|
|
|
-webkit-mask-size: 100%;
|
2018-07-09 21:29:13 +00:00
|
|
|
background-color: $color-light-35;
|
2016-04-13 01:00:33 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 20px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-09 21:29:13 +00:00
|
|
|
$search-x-size: 16px;
|
|
|
|
$search-padding-right: 12px;
|
|
|
|
$search-padding-left: 30px;
|
|
|
|
|
2015-03-12 23:14:21 +00:00
|
|
|
input.search {
|
2018-07-09 21:29:13 +00:00
|
|
|
border: 1px solid $color-black-02;
|
2017-03-30 19:00:43 +00:00
|
|
|
padding: 0 $search-padding-right 0 $search-padding-left;
|
2018-07-09 21:29:13 +00:00
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
2015-02-06 06:42:16 +00:00
|
|
|
outline: 0;
|
2018-07-09 21:29:13 +00:00
|
|
|
height: 32px;
|
|
|
|
width: calc(100% - 16px);
|
2016-03-27 22:30:10 +00:00
|
|
|
outline-offset: -2px;
|
2018-07-09 21:29:13 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
font-weight: normal;
|
|
|
|
|
2016-04-13 01:00:33 +00:00
|
|
|
position: relative;
|
2018-07-09 21:29:13 +00:00
|
|
|
border-radius: 4px;
|
2016-03-27 22:30:10 +00:00
|
|
|
|
2018-07-18 18:40:10 +00:00
|
|
|
&:focus {
|
2016-03-27 22:30:10 +00:00
|
|
|
outline: solid 1px $blue;
|
2018-07-18 18:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2017-03-08 00:54:46 +00:00
|
|
|
background-image: url('../images/x.svg');
|
2017-03-30 19:00:43 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: $search-x-size;
|
|
|
|
|
|
|
|
&.ltr {
|
2018-05-04 20:07:52 +00:00
|
|
|
background-position: right $search-padding-right center;
|
2017-03-30 19:00:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.rtl {
|
2018-05-04 20:07:52 +00:00
|
|
|
background-position: left $search-padding-left center;
|
2017-03-30 19:00:43 +00:00
|
|
|
}
|
2016-03-27 22:30:10 +00:00
|
|
|
}
|
|
|
|
|
2015-12-07 04:40:29 +00:00
|
|
|
&::-webkit-search-cancel-button {
|
|
|
|
-webkit-appearance: none;
|
2016-03-24 19:33:41 +00:00
|
|
|
display: block;
|
2017-03-30 19:00:43 +00:00
|
|
|
width: $search-x-size;
|
|
|
|
height: $search-x-size;
|
2015-12-07 04:40:29 +00:00
|
|
|
}
|
2016-03-27 22:30:10 +00:00
|
|
|
|
2015-12-07 21:28:22 +00:00
|
|
|
&::-webkit-search-cancel-button:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2015-01-26 07:44:53 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 21:43:10 +00:00
|
|
|
.last-timestamp {
|
|
|
|
font-size: smaller;
|
2015-10-23 21:43:51 +00:00
|
|
|
float: right;
|
2015-10-23 22:47:32 +00:00
|
|
|
margin: 0 10px;
|
2016-03-18 20:09:45 +00:00
|
|
|
color: $grey;
|
2015-01-30 21:43:10 +00:00
|
|
|
}
|
|
|
|
|
2015-02-06 06:42:16 +00:00
|
|
|
.new-contact {
|
2015-03-12 18:40:55 +00:00
|
|
|
display: none;
|
2015-10-21 19:11:48 +00:00
|
|
|
cursor: pointer;
|
2015-12-06 03:21:15 +00:00
|
|
|
opacity: 0.7;
|
|
|
|
.contact-details .number {
|
2015-02-06 06:42:16 +00:00
|
|
|
display: block;
|
|
|
|
font-style: italic;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2015-12-06 03:21:15 +00:00
|
|
|
|
|
|
|
&.valid {
|
2018-05-04 20:07:52 +00:00
|
|
|
opacity: 1;
|
2015-12-06 03:21:15 +00:00
|
|
|
}
|
2015-01-25 18:38:35 +00:00
|
|
|
}
|
|
|
|
|
2015-01-25 18:36:41 +00:00
|
|
|
.index {
|
2015-08-25 23:47:15 +00:00
|
|
|
.gutter .new-group-update-form {
|
2015-03-12 18:40:55 +00:00
|
|
|
display: none;
|
|
|
|
padding: 0.5em;
|
2015-01-25 18:36:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.last-message {
|
2016-04-01 18:36:28 +00:00
|
|
|
margin: 6px 0 0;
|
2016-08-24 22:15:55 +00:00
|
|
|
font-size: $font-size-small;
|
2015-01-25 18:36:41 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 23:47:15 +00:00
|
|
|
.gutter .timestamp {
|
2015-01-25 18:36:41 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 14px;
|
|
|
|
right: 12px;
|
2016-03-18 20:09:45 +00:00
|
|
|
color: $grey;
|
2015-01-25 18:36:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-11 19:06:19 +00:00
|
|
|
.conversations .unread .contact-details {
|
2018-05-04 20:07:52 +00:00
|
|
|
.name,
|
|
|
|
.last-message,
|
|
|
|
.last-timestamp {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-03-11 19:06:19 +00:00
|
|
|
}
|
2015-11-21 00:58:52 +00:00
|
|
|
|
|
|
|
.hint {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 1em;
|
2016-04-01 21:24:13 +00:00
|
|
|
border-radius: $border-radius;
|
2015-11-21 00:58:52 +00:00
|
|
|
color: white;
|
|
|
|
border: 2px dashed white;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.firstRun {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 302px;
|
|
|
|
width: 225px;
|
|
|
|
|
2018-05-04 20:07:52 +00:00
|
|
|
&:before,
|
|
|
|
&:after {
|
2015-11-21 00:58:52 +00: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 23:43:45 +00:00
|
|
|
|
|
|
|
.conversation.placeholder {
|
2015-11-28 22:41:58 +00:00
|
|
|
text-align: center;
|
2019-01-22 22:08:00 +00:00
|
|
|
user-select: none;
|
|
|
|
|
2018-03-07 02:27:49 +00:00
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2016-08-31 01:27:54 +00:00
|
|
|
.content {
|
2018-03-07 02:27:49 +00:00
|
|
|
display: inline-block;
|
2016-08-31 01:27:54 +00:00
|
|
|
}
|
2016-07-05 02:29:06 +00:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: large;
|
|
|
|
}
|
2015-11-27 23:43:45 +00:00
|
|
|
}
|
2015-11-28 01:34:02 +00:00
|
|
|
.contact.placeholder {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
left: 0;
|
|
|
|
background: transparent;
|
|
|
|
color: white;
|
|
|
|
border: 2px dashed white;
|
|
|
|
overflow: visible;
|
2018-05-04 20:07:52 +00:00
|
|
|
p {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
&:before,
|
|
|
|
&:after {
|
2015-11-28 01:34:02 +00: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;
|
|
|
|
}
|
|
|
|
}
|