2015-02-01 18:39:07 -10:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto-Light';
|
|
|
|
src: url("/fonts/Roboto-Light.ttf") format("truetype"); }
|
2015-01-29 18:53:49 -10:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
src: url("/fonts/Roboto-Regular.ttf") format("truetype"); }
|
2015-02-18 16:20:28 -08:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
src: url("/fonts/Roboto-Italic.ttf") format("truetype");
|
|
|
|
font-style: italic; }
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
src: url("/fonts/Roboto-Bold.ttf") format("truetype");
|
|
|
|
font-weight: bold; }
|
2015-01-29 18:53:49 -10:00
|
|
|
* {
|
2015-01-29 20:59:08 -10:00
|
|
|
box-sizing: border-box; }
|
2015-01-29 18:53:49 -10:00
|
|
|
|
2015-02-18 23:09:34 -08:00
|
|
|
html {
|
2015-05-21 17:07:11 -07:00
|
|
|
height: 100%;
|
|
|
|
border: solid 1px #ccc; }
|
2015-02-18 23:09:34 -08:00
|
|
|
|
2015-01-29 18:53:49 -10:00
|
|
|
body {
|
2015-02-17 18:03:05 -08:00
|
|
|
position: relative;
|
2015-01-29 18:53:49 -10:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2015-02-18 23:09:34 -08:00
|
|
|
margin: 0;
|
2015-01-29 18:53:49 -10:00
|
|
|
font-family: Roboto, "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px; }
|
|
|
|
|
2015-02-05 20:42:16 -10:00
|
|
|
.clearfix:before,
|
|
|
|
.clearfix:after {
|
|
|
|
display: table;
|
|
|
|
content: " "; }
|
|
|
|
|
|
|
|
.clearfix:after {
|
|
|
|
clear: both; }
|
|
|
|
|
2015-02-23 12:50:07 -08:00
|
|
|
.hide {
|
|
|
|
display: none; }
|
|
|
|
|
2015-01-29 18:53:49 -10:00
|
|
|
#header {
|
|
|
|
position: fixed;
|
2015-06-08 15:02:08 -07:00
|
|
|
top: 1px;
|
|
|
|
width: calc(100% - 2px);
|
2015-01-29 18:53:49 -10:00
|
|
|
z-index: 1;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 24px;
|
2015-05-21 17:07:11 -07:00
|
|
|
color: #f2f2f2;
|
|
|
|
box-shadow: 0 -4px 3px 4px rgba(10, 62, 103, 0.8);
|
|
|
|
background-color: #2090ea;
|
2015-05-21 13:05:52 -07:00
|
|
|
-webkit-app-region: drag; }
|
2015-05-21 14:35:44 -07:00
|
|
|
#header button {
|
2015-05-21 17:07:11 -07:00
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
color: inherit;
|
|
|
|
background-color: #2090ea; }
|
|
|
|
#header button:hover {
|
|
|
|
background-color: rgba(19, 117, 196, 0.8); }
|
2015-01-30 11:20:32 -10:00
|
|
|
|
2015-05-22 15:41:30 -07:00
|
|
|
.window-controls {
|
|
|
|
float: right; }
|
|
|
|
|
2015-02-23 12:07:06 -08:00
|
|
|
.title-text {
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
font-family: Roboto-Light, "Helvetica Neue", Arial, Helvetica, sans-serif; }
|
|
|
|
|
2015-08-26 15:13:14 -07:00
|
|
|
.conversation-header button,
|
2015-02-23 12:50:07 -08:00
|
|
|
.title-bar button {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
outline: 0; }
|
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer; }
|
|
|
|
|
|
|
|
button.back {
|
|
|
|
float: left;
|
2015-08-31 15:11:00 -07:00
|
|
|
background: url("/images/back.png") no-repeat center center; }
|
2015-02-23 12:50:07 -08:00
|
|
|
button.back + .title-text {
|
|
|
|
text-indent: -36px; }
|
|
|
|
|
2015-01-30 11:20:32 -10:00
|
|
|
.menu {
|
|
|
|
position: relative;
|
2015-05-21 14:35:44 -07:00
|
|
|
float: left;
|
2015-01-30 11:20:32 -10:00
|
|
|
height: 36px;
|
2015-05-21 17:07:11 -07:00
|
|
|
padding-right: 8px; }
|
2015-01-30 11:20:32 -10:00
|
|
|
.menu .hamburger {
|
|
|
|
width: 36px;
|
2015-08-25 16:47:15 -07:00
|
|
|
height: 36px;
|
2015-01-30 11:20:32 -10:00
|
|
|
background: url("/images/menu.png") no-repeat center; }
|
|
|
|
.menu .menu-list {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2015-05-21 17:07:11 -07:00
|
|
|
color: #454545;
|
2015-06-19 22:43:24 +02:00
|
|
|
z-index: 1;
|
2015-01-30 11:20:32 -10:00
|
|
|
top: 100%;
|
2015-05-21 17:07:11 -07:00
|
|
|
left: 0;
|
2015-01-30 11:20:32 -10:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2015-03-26 15:19:46 -07:00
|
|
|
border: solid 1px #2090ea;
|
2015-01-30 11:20:32 -10:00
|
|
|
background-color: white;
|
2015-03-26 15:19:46 -07:00
|
|
|
box-shadow: 0 4px 3px 0px rgba(10, 62, 103, 0.8); }
|
2015-01-30 11:20:32 -10:00
|
|
|
.menu .menu-list li {
|
|
|
|
display: block;
|
2015-03-12 17:39:56 -07:00
|
|
|
white-space: nowrap; }
|
|
|
|
.menu .menu-list li a {
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 15px 5px 10px; }
|
|
|
|
.menu .menu-list li a:hover {
|
|
|
|
background-color: #f3f3f3; }
|
2015-01-29 18:53:49 -10:00
|
|
|
|
2015-02-05 20:42:16 -10:00
|
|
|
.file-input {
|
|
|
|
position: relative;
|
2015-03-12 11:40:55 -07:00
|
|
|
margin-right: 10px;
|
|
|
|
cursor: pointer; }
|
2015-02-05 20:42:16 -10:00
|
|
|
.file-input .paperclip {
|
2015-03-12 11:40:55 -07:00
|
|
|
width: 36px;
|
2015-06-16 22:43:40 +02:00
|
|
|
height: 100%;
|
|
|
|
background: url("/images/paperclip.png") no-repeat center center;
|
2015-02-05 20:42:16 -10:00
|
|
|
background-size: 90%;
|
2015-06-16 22:43:40 +02:00
|
|
|
margin-top: 4px; }
|
2015-02-05 20:42:16 -10:00
|
|
|
.file-input input[type=file] {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 1; }
|
|
|
|
.file-input .close {
|
|
|
|
font-family: sans-serif;
|
|
|
|
color: white;
|
|
|
|
position: absolute;
|
2015-03-12 11:40:55 -07:00
|
|
|
top: 0;
|
|
|
|
right: -8px;
|
2015-02-05 20:42:16 -10:00
|
|
|
cursor: default;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
padding: 0px;
|
|
|
|
background: #666;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center; }
|
|
|
|
|
2015-03-10 12:11:32 -07:00
|
|
|
img.emoji {
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
margin: 0 .05em 0 .1em;
|
|
|
|
vertical-align: -0.1em; }
|
|
|
|
|
2015-03-23 14:01:18 -07:00
|
|
|
.avatar {
|
|
|
|
display: inline-block;
|
|
|
|
height: 44px;
|
|
|
|
width: 44px;
|
|
|
|
background: #f3f3f3 url("/images/default.png") no-repeat center;
|
2015-03-23 15:44:47 -07:00
|
|
|
border-radius: 50%;
|
2015-03-23 14:01:18 -07:00
|
|
|
background-size: cover;
|
2015-06-18 17:05:00 -07:00
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 44px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: white; }
|
2015-03-23 14:01:18 -07:00
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-info-input {
|
2015-03-12 11:40:55 -07:00
|
|
|
background: white; }
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-info-input .group-avatar {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 2px 0px 0px 2px; }
|
|
|
|
.group-info-input .file-input .thumbnail, .group-info-input .thumbnail .avatar,
|
|
|
|
.group-info-input img {
|
2015-03-12 11:40:55 -07:00
|
|
|
height: 54px;
|
|
|
|
width: 54px;
|
|
|
|
border-radius: 27px; }
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-info-input .thumbnail:after {
|
2015-03-12 11:40:55 -07:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
border-bottom: 10px solid #616161;
|
|
|
|
border-left: 10px solid transparent; }
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-info-input input.name {
|
2015-03-12 11:40:55 -07:00
|
|
|
padding: 0.5em;
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
border-width: 0 0 1px 0;
|
2015-09-04 13:11:21 -07:00
|
|
|
width: calc(100% - 84px); }
|
2015-08-04 12:15:37 -07:00
|
|
|
|
|
|
|
.group-member-list .members .contact,
|
2015-09-04 13:11:21 -07:00
|
|
|
.new-group-update .members .contact {
|
2015-08-04 12:15:37 -07:00
|
|
|
box-shadow: none;
|
|
|
|
border-bottom: 1px solid #eee; }
|
|
|
|
.group-member-list .members .contact .last-message, .group-member-list .members .contact .last-timestamp,
|
2015-09-04 13:11:21 -07:00
|
|
|
.new-group-update .members .contact .last-message,
|
|
|
|
.new-group-update .members .contact .last-timestamp {
|
|
|
|
display: none; }
|
|
|
|
.group-member-list .members .contact .number,
|
|
|
|
.new-group-update .members .contact .number {
|
2015-08-04 12:15:37 -07:00
|
|
|
display: none; }
|
2015-03-12 16:14:21 -07:00
|
|
|
|
2015-08-26 15:13:14 -07:00
|
|
|
.conversation-header .check {
|
2015-03-12 16:14:21 -07:00
|
|
|
float: right;
|
2015-05-21 17:07:11 -07:00
|
|
|
background: url("/images/check.png") no-repeat center center; }
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2015-09-03 13:33:17 -07:00
|
|
|
.conversation-list-item {
|
|
|
|
cursor: pointer; }
|
|
|
|
.conversation-list-item:hover {
|
|
|
|
background: #f8f8f8; }
|
2015-09-04 13:11:21 -07:00
|
|
|
.conversation-list-item .number {
|
|
|
|
display: none; }
|
2015-09-03 13:33:17 -07:00
|
|
|
|
2015-03-12 11:40:55 -07:00
|
|
|
.contact {
|
|
|
|
position: relative;
|
|
|
|
padding: 12px;
|
|
|
|
white-space: nowrap;
|
2015-06-09 16:10:39 -07:00
|
|
|
overflow: hidden;
|
2015-08-31 15:11:00 -07:00
|
|
|
box-shadow: 0 0px 1px rgba(170, 170, 170, 0.8);
|
|
|
|
background: #f3f3f3; }
|
2015-08-27 17:01:34 -07:00
|
|
|
.contact.selected {
|
|
|
|
background: #2090ea;
|
|
|
|
color: #ffffff; }
|
2015-06-09 16:10:39 -07:00
|
|
|
.contact:last-child::after {
|
|
|
|
display: none; }
|
2015-03-12 11:40:55 -07:00
|
|
|
.contact .contact-details {
|
|
|
|
vertical-align: top;
|
|
|
|
display: inline-block;
|
2015-06-18 22:35:40 +02:00
|
|
|
margin: 4px 0 0 8px;
|
|
|
|
width: calc(100% - 44px - 8px); }
|
|
|
|
.contact .contact-details p {
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis; }
|
2015-09-03 13:33:17 -07:00
|
|
|
.contact .name {
|
2015-03-12 11:40:55 -07:00
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
2015-08-26 15:13:14 -07:00
|
|
|
font-weight: 400;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow-x: hidden; }
|
2015-09-04 13:11:21 -07:00
|
|
|
.contact .number {
|
|
|
|
color: #616161;
|
|
|
|
font-size: small; }
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.recipients-input {
|
|
|
|
position: relative; }
|
|
|
|
.recipients-input .recipients-container {
|
|
|
|
background-color: white;
|
|
|
|
padding: 2px;
|
|
|
|
border-bottom: 1px solid #f2f2f2;
|
|
|
|
line-height: 24px; }
|
|
|
|
.recipients-input .recipient {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 2px 2px 0;
|
|
|
|
padding: 0 5px;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #2090ea;
|
|
|
|
color: white; }
|
|
|
|
.recipients-input .recipient.error {
|
|
|
|
background-color: #f00; }
|
|
|
|
.recipients-input .recipient .remove {
|
|
|
|
margin-left: 5px;
|
|
|
|
padding: 0 2px; }
|
|
|
|
.recipients-input .results {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
margin: 0 0 0 20px;
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
max-width: 300px;
|
|
|
|
max-height: 165px;
|
|
|
|
overflow-y: auto;
|
|
|
|
box-shadow: 0px 0px 1px rgba(170, 170, 170, 0.8); }
|
|
|
|
.recipients-input .results .contact {
|
|
|
|
cursor: pointer; }
|
2015-03-12 11:40:55 -07:00
|
|
|
|
|
|
|
.attachment-preview {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: white; }
|
|
|
|
.attachment-preview img {
|
|
|
|
width: 100%; }
|
2015-03-12 16:14:21 -07:00
|
|
|
|
2015-08-31 15:11:00 -07:00
|
|
|
.new-conversation .recipients-input .recipients::before {
|
|
|
|
content: 'To: '; }
|
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.new-group-update .recipients-input .recipients::before {
|
2015-08-31 15:11:00 -07:00
|
|
|
content: 'Add: '; }
|
|
|
|
|
2015-06-25 13:32:05 -07:00
|
|
|
.avatar.colorgray {
|
|
|
|
background-color: #999999; }
|
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color1 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #EF5350; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color2 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #EC407A; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color3 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #AB47BC; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color4 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #7E57C2; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color5 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #5C6BC0; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color6 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #2196F3; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color7 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #03A9F4; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color8 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #00BCD4; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color9 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #009688; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color10 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #4CAF50; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color11 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #7CB342; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color12 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #FF9800; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color13 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #FF5722; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color14 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #FFB300; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-07-31 16:38:55 -07:00
|
|
|
.avatar.color15 {
|
2015-07-31 10:27:48 -07:00
|
|
|
background-color: #607D8B; }
|
2015-06-18 17:05:00 -07:00
|
|
|
|
2015-08-26 17:30:20 -07:00
|
|
|
.loading {
|
|
|
|
position: relative; }
|
|
|
|
.loading::after {
|
|
|
|
display: block;
|
|
|
|
margin: 36px auto;
|
|
|
|
content: " ";
|
|
|
|
height: 36px;
|
|
|
|
width: 36px;
|
|
|
|
border-radius: 72px;
|
|
|
|
border: solid 3px;
|
|
|
|
border-color: #a2d2f4 #a2d2f4 #f3f3f3 #f3f3f3;
|
|
|
|
animation: rotate 1s linear infinite; }
|
|
|
|
@keyframes rotate {
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg); } }
|
2015-09-15 23:28:00 -07:00
|
|
|
.debug-log {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 1 * 36px);
|
|
|
|
top: 36px;
|
|
|
|
left: 0;
|
|
|
|
padding: 1em;
|
|
|
|
background: #f3f3f3;
|
|
|
|
z-index: 1;
|
|
|
|
overflow-y: auto; }
|
|
|
|
.debug-log textarea {
|
|
|
|
width: 100%;
|
|
|
|
resize: vertical; }
|
|
|
|
.debug-log button, .debug-log input[type=submit] {
|
|
|
|
border-radius: 4px;
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 1em auto;
|
|
|
|
padding: 1em;
|
|
|
|
font-family: inherit;
|
|
|
|
color: #616161;
|
|
|
|
background: #f3f3f3;
|
|
|
|
box-shadow: 0 0 10px -5px rgba(97, 97, 97, 0.5); }
|
|
|
|
.debug-log button:hover, .debug-log input[type=submit]:hover {
|
|
|
|
color: black;
|
|
|
|
box-shadow: 0 0 10px -3px rgba(97, 97, 97, 0.7); }
|
|
|
|
.debug-log .result {
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
-webkit-user-select: text; }
|
|
|
|
|
2015-01-24 12:17:44 -10:00
|
|
|
.gutter {
|
2015-08-27 17:01:34 -07:00
|
|
|
background: #f3f3f3;
|
2015-02-18 23:09:34 -08:00
|
|
|
padding: 36px 0 0; }
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.conversation-stack,
|
2015-03-09 14:50:50 -07:00
|
|
|
.new-conversation, .inbox, .gutter {
|
2015-02-18 23:09:34 -08:00
|
|
|
height: 100%; }
|
2015-01-24 12:17:44 -10:00
|
|
|
|
2015-08-26 17:11:01 -07:00
|
|
|
.container, .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 {
|
|
|
|
float: left;
|
2015-08-31 15:11:00 -07:00
|
|
|
width: 300px;
|
|
|
|
border-right: solid 1px #ddd; }
|
2015-08-26 17:48:18 -07:00
|
|
|
.gutter .conversations {
|
2015-09-18 13:07:19 -07:00
|
|
|
height: calc(100% - 36px);
|
2015-08-26 17:48:18 -07:00
|
|
|
width: 100%; }
|
2015-08-25 16:47:15 -07:00
|
|
|
|
2015-03-09 13:20:01 -07:00
|
|
|
.socket-status {
|
2015-05-21 13:05:52 -07:00
|
|
|
padding: 6px;
|
|
|
|
-webkit-app-region: no-drag; }
|
2015-03-09 13:20:01 -07:00
|
|
|
.socket-status * {
|
2015-08-26 10:31:16 -07:00
|
|
|
display: inline;
|
2015-03-09 13:20:01 -07:00
|
|
|
cursor: pointer;
|
|
|
|
padding-left: 20px;
|
2015-08-26 10:31:16 -07:00
|
|
|
border-radius: 36px; }
|
2015-03-09 13:20:01 -07:00
|
|
|
.socket-status *:hover {
|
2015-03-26 15:19:46 -07:00
|
|
|
background: #2090ea url("/images/refresh.png") center; }
|
2015-03-09 13:20:01 -07:00
|
|
|
.socket-status .connecting .icon {
|
2015-03-26 15:19:46 -07:00
|
|
|
background-color: #2090ea; }
|
2015-03-09 13:20:01 -07:00
|
|
|
.socket-status .closing {
|
|
|
|
background-color: #a2d2f4; }
|
|
|
|
.socket-status .closed {
|
|
|
|
background: url("/images/error_red.png") no-repeat left center; }
|
|
|
|
|
2015-08-25 16:47:15 -07:00
|
|
|
.conversation-stack {
|
2015-08-27 17:01:34 -07:00
|
|
|
background: url("/images/icon_tile.png");
|
2015-08-25 16:47:15 -07:00
|
|
|
padding-left: 300px;
|
|
|
|
padding-top: 36px; }
|
|
|
|
.conversation-stack .conversation {
|
|
|
|
display: none; }
|
|
|
|
.conversation-stack .conversation:first-child {
|
|
|
|
display: block; }
|
|
|
|
|
2015-09-18 13:07:19 -07:00
|
|
|
.tool-bar,
|
2015-08-25 16:47:15 -07:00
|
|
|
.conversation-header {
|
2015-09-02 18:26:44 -07:00
|
|
|
background: #f3f3f3;
|
|
|
|
border-bottom: solid 1px #d9d9d9; }
|
2015-08-25 16:47:15 -07:00
|
|
|
|
|
|
|
.menu.conversation-menu {
|
|
|
|
float: right;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 0; }
|
|
|
|
.menu.conversation-menu .menu-list {
|
|
|
|
right: 0;
|
|
|
|
left: initial; }
|
2015-08-31 13:58:17 -07:00
|
|
|
.menu.conversation-menu button.drop-down {
|
|
|
|
background: url("/images/arrow_drop_down.png") no-repeat center; }
|
2015-08-25 16:47:15 -07:00
|
|
|
|
2015-03-12 16:14:21 -07:00
|
|
|
input.search {
|
2015-02-05 20:42:16 -10:00
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
outline: 0; }
|
2015-01-25 21:44:53 -10:00
|
|
|
|
2015-09-18 13:07:19 -07:00
|
|
|
.tool-bar button.show-new-conversation {
|
|
|
|
float: right;
|
|
|
|
height: 36px;
|
|
|
|
width: 36px;
|
2015-01-25 21:44:53 -10:00
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
font: 300 36px Roboto, "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
|
|
color: white;
|
2015-09-18 13:07:19 -07:00
|
|
|
background: url("/images/pencil.png") no-repeat center center; }
|
|
|
|
.tool-bar button.show-new-conversation:hover {
|
|
|
|
background-color: #ebebeb; }
|
2015-01-25 21:44:53 -10:00
|
|
|
|
2015-01-30 11:43:10 -10:00
|
|
|
.last-timestamp {
|
|
|
|
font-size: smaller; }
|
|
|
|
|
2015-03-12 11:40:55 -07:00
|
|
|
.new-contact {
|
2015-09-04 13:11:21 -07:00
|
|
|
display: none;
|
|
|
|
background: #f3f3f3; }
|
2015-09-14 15:32:44 -07:00
|
|
|
.new-contact .name, .new-contact .last-timestamp, .new-contact .avatar {
|
2015-03-12 11:40:55 -07:00
|
|
|
display: none; }
|
|
|
|
.new-contact .contact-details::before {
|
|
|
|
content: 'Create new contact';
|
|
|
|
display: block;
|
|
|
|
font-style: italic;
|
|
|
|
opacity: 0.7;
|
|
|
|
padding-right: 8px; }
|
2015-01-25 08:38:35 -10:00
|
|
|
|
2015-01-25 08:36:41 -10:00
|
|
|
.index {
|
|
|
|
color: #454545;
|
|
|
|
background: #eee; }
|
2015-08-25 16:47:15 -07:00
|
|
|
.index .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
|
|
|
.index .last-message {
|
|
|
|
margin: 6px 0;
|
2015-01-30 11:43:10 -10:00
|
|
|
font-size: small;
|
2015-01-25 08:36:41 -10:00
|
|
|
font-weight: 300; }
|
2015-08-25 16:47:15 -07:00
|
|
|
.index .gutter .timestamp {
|
2015-01-25 08:36:41 -10:00
|
|
|
position: absolute;
|
|
|
|
top: 14px;
|
|
|
|
right: 12px;
|
|
|
|
color: #888; }
|
|
|
|
|
|
|
|
.settings {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background: red;
|
|
|
|
display: none; }
|
|
|
|
.settings-open .settings {
|
|
|
|
display: block; }
|
2015-01-25 02:53:07 -10:00
|
|
|
|
2015-09-03 13:33:17 -07:00
|
|
|
.conversations .unread .contact-details .name,
|
2015-03-11 12:06:19 -07:00
|
|
|
.conversations .unread .contact-details .last-message,
|
|
|
|
.conversations .unread .contact-details .last-timestamp {
|
|
|
|
font-weight: bold; }
|
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.conversation {
|
|
|
|
background-color: #ffffff; }
|
|
|
|
|
2015-08-26 15:13:14 -07:00
|
|
|
.conversation-title {
|
2015-07-08 14:28:04 -07:00
|
|
|
display: block;
|
|
|
|
line-height: 36px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2015-08-26 15:13:14 -07:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
padding-left: 10px; }
|
|
|
|
|
|
|
|
.conversation .file-input .close {
|
|
|
|
top: -10px; }
|
2015-06-16 22:43:40 +02:00
|
|
|
.conversation .discussion-container {
|
|
|
|
height: calc(100% - 2 * 36px); }
|
2015-02-18 23:09:34 -08:00
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-member-list,
|
|
|
|
.new-group-update,
|
2015-06-16 22:43:40 +02:00
|
|
|
.conversation, .message-list, .message-detail, .key-verification {
|
2015-02-18 23:09:34 -08:00
|
|
|
height: 100%; }
|
|
|
|
|
2015-09-15 11:01:48 -07:00
|
|
|
.key-verification {
|
|
|
|
background: white; }
|
|
|
|
.key-verification p {
|
|
|
|
padding: 1em; }
|
|
|
|
.key-verification .key {
|
|
|
|
font-family: monospace;
|
|
|
|
padding: 0 1em; }
|
2015-02-26 18:10:04 -08:00
|
|
|
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail {
|
|
|
|
background: #f3f3f3; }
|
|
|
|
.message-detail .message-container {
|
|
|
|
background: white;
|
|
|
|
padding: 1em 0; }
|
|
|
|
.message-detail .message-container .sender {
|
|
|
|
display: none; }
|
|
|
|
.message-detail .info {
|
|
|
|
padding: 1em; }
|
|
|
|
.message-detail .info .label {
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-right: 1em; }
|
2015-02-17 18:03:05 -08:00
|
|
|
.message-detail .conflict {
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: white;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
background: #d00; }
|
|
|
|
.message-detail .conflict:before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
background: url("/images/error.png") no-repeat center center;
|
|
|
|
background-size: 100%; }
|
|
|
|
.message-detail .conflict span {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-left: 5px; }
|
2015-02-23 13:17:50 -08:00
|
|
|
|
2015-01-29 02:34:31 -10:00
|
|
|
.group-update {
|
|
|
|
font-size: smaller; }
|
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-member-list .container {
|
|
|
|
height: calc(100% - 36px); }
|
2015-08-04 12:15:37 -07:00
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.new-group-update .container {
|
|
|
|
height: calc(100% - 36px - 85px); }
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2015-02-12 21:17:48 -08:00
|
|
|
.private .sender,
|
2015-02-12 18:16:33 -08:00
|
|
|
.outgoing .sender {
|
|
|
|
display: none; }
|
|
|
|
|
2015-01-29 02:34:31 -10:00
|
|
|
.sender {
|
|
|
|
font-size: smaller;
|
|
|
|
opacity: 0.8; }
|
|
|
|
|
2015-01-19 16:44:34 -10:00
|
|
|
.timestamp {
|
2015-01-30 11:43:10 -10:00
|
|
|
font-size: smaller; }
|
2014-11-07 00:32:32 -08:00
|
|
|
|
2015-03-25 11:40:33 -07:00
|
|
|
.entry.delivered .checkmark {
|
2015-03-05 16:29:12 -08:00
|
|
|
display: inline; }
|
2015-01-25 10:49:28 -10:00
|
|
|
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list {
|
2015-01-29 20:59:08 -10:00
|
|
|
margin: 0;
|
|
|
|
padding: 1em 0;
|
2015-09-04 13:11:21 -07:00
|
|
|
overflow-y: auto; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-list .timestamp {
|
|
|
|
cursor: pointer; }
|
|
|
|
.message-list .timestamp:hover {
|
|
|
|
text-decoration: underline; }
|
|
|
|
|
|
|
|
.message-detail,
|
|
|
|
.message-list {
|
|
|
|
list-style: none; }
|
|
|
|
.message-detail li,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list li {
|
|
|
|
margin: 0 8px 16px; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail li::after,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list li::after {
|
|
|
|
visibility: hidden;
|
|
|
|
display: block;
|
|
|
|
font-size: 0;
|
|
|
|
content: " ";
|
2015-01-15 18:41:44 -10:00
|
|
|
clear: both;
|
2015-01-19 16:44:34 -10:00
|
|
|
height: 0; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .bubble,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .bubble {
|
2015-01-15 18:41:44 -10:00
|
|
|
position: relative;
|
2015-01-19 16:44:34 -10:00
|
|
|
left: -2px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2015-03-04 13:59:40 -08:00
|
|
|
max-width: calc(100% - 20px - 2 * 12px);
|
2015-01-19 16:44:34 -10:00
|
|
|
padding: 9px 12px;
|
|
|
|
border-radius: 4px;
|
2015-06-18 22:35:40 +02:00
|
|
|
box-shadow: 0 3px 3px -4px black;
|
|
|
|
word-wrap: break-word; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .bubble::before, .message-detail .bubble::after,
|
|
|
|
.message-list .bubble::before,
|
|
|
|
.message-list .bubble::after {
|
2015-01-19 16:44:34 -10:00
|
|
|
content: '';
|
2015-01-15 18:41:44 -10:00
|
|
|
position: absolute;
|
2015-01-19 16:44:34 -10:00
|
|
|
height: 0;
|
|
|
|
width: 0; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .bubble::before,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .bubble::before {
|
2015-03-05 17:47:30 -08:00
|
|
|
top: 9px;
|
2015-01-19 16:44:34 -10:00
|
|
|
border-top: 8px solid transparent;
|
|
|
|
border-bottom: 8px solid transparent; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .bubble::after,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .bubble::after {
|
2015-03-05 17:47:30 -08:00
|
|
|
top: 11px;
|
2015-01-19 16:44:34 -10:00
|
|
|
border-top: 6px solid transparent;
|
|
|
|
border-bottom: 6px solid transparent; }
|
2015-06-26 16:16:13 -07:00
|
|
|
.message-detail .bubble .content,
|
|
|
|
.message-list .bubble .content {
|
2015-09-07 22:32:15 +02:00
|
|
|
-webkit-user-select: text;
|
|
|
|
white-space: pre-wrap; }
|
2015-06-26 16:16:13 -07:00
|
|
|
.message-detail .bubble .content a,
|
|
|
|
.message-list .bubble .content a {
|
|
|
|
word-break: break-all; }
|
2015-02-17 18:03:05 -08:00
|
|
|
.message-detail .bubble p,
|
|
|
|
.message-list .bubble p {
|
|
|
|
margin: 0; }
|
2015-07-07 19:21:10 -07:00
|
|
|
.message-detail .outgoing .bubble,
|
|
|
|
.message-list .outgoing .bubble {
|
2015-05-26 13:30:51 -07:00
|
|
|
opacity: 0.7; }
|
2015-07-07 19:21:10 -07:00
|
|
|
.message-detail .outgoing.sent .bubble,
|
|
|
|
.message-list .outgoing.sent .bubble {
|
|
|
|
opacity: 1.0; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .incoming .bubble,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .incoming .bubble {
|
|
|
|
color: #454545;
|
|
|
|
background: #f3f3f3; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .incoming .bubble::before,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .incoming .bubble::before {
|
|
|
|
left: -10px;
|
|
|
|
border-right: 10px solid white; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .incoming .bubble::after,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .incoming .bubble::after {
|
|
|
|
left: -8px;
|
|
|
|
border-right: 8px solid #f3f3f3; }
|
2015-03-10 12:11:32 -07:00
|
|
|
.message-detail .outgoing .avatar, .message-detail .outgoing .bubble,
|
|
|
|
.message-list .outgoing .avatar,
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-list .outgoing .bubble {
|
2015-01-19 16:44:34 -10:00
|
|
|
float: right; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .outgoing .bubble,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .outgoing .bubble {
|
|
|
|
clear: left;
|
|
|
|
color: white;
|
2015-03-26 15:19:46 -07:00
|
|
|
background: #2090ea; }
|
2015-03-05 16:29:12 -08:00
|
|
|
.message-detail .outgoing .bubble .meta,
|
|
|
|
.message-list .outgoing .bubble .meta {
|
2015-01-19 16:44:34 -10:00
|
|
|
color: #a2d2f4; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .outgoing .bubble::before,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .outgoing .bubble::before {
|
|
|
|
right: -10px;
|
|
|
|
border-left: 10px solid white; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .outgoing .bubble::after,
|
2015-01-19 16:44:34 -10:00
|
|
|
.message-list .outgoing .bubble::after {
|
|
|
|
right: -8px;
|
2015-03-26 15:19:46 -07:00
|
|
|
border-left: 8px solid #2090ea; }
|
2015-09-02 20:47:32 +02:00
|
|
|
.message-detail .outgoing .bubble .content a,
|
|
|
|
.message-list .outgoing .bubble .content a {
|
|
|
|
color: #f3f3f3; }
|
|
|
|
.message-detail .outgoing .bubble .content::selection, .message-detail .outgoing .bubble .content a::selection,
|
|
|
|
.message-list .outgoing .bubble .content::selection,
|
|
|
|
.message-list .outgoing .bubble .content a::selection {
|
2015-09-02 18:26:01 +02:00
|
|
|
color: #454545;
|
|
|
|
background: white; }
|
2015-09-02 20:47:32 +02:00
|
|
|
.message-detail .outgoing .bubble .content::-moz-selection, .message-detail .outgoing .bubble .content a::-moz-selection,
|
|
|
|
.message-list .outgoing .bubble .content::-moz-selection,
|
|
|
|
.message-list .outgoing .bubble .content a::-moz-selection {
|
2015-09-02 18:26:01 +02:00
|
|
|
color: #454545;
|
|
|
|
background: white; }
|
2015-03-23 15:44:47 -07:00
|
|
|
.message-detail .control .bubble .content,
|
|
|
|
.message-list .control .bubble .content {
|
|
|
|
font-style: italic; }
|
|
|
|
.message-detail .control .bubble::before, .message-detail .control .bubble::after,
|
|
|
|
.message-list .control .bubble::before,
|
|
|
|
.message-list .control .bubble::after {
|
|
|
|
display: none; }
|
2015-03-02 11:49:23 -08:00
|
|
|
.message-detail .attachments img, .message-detail .attachments audio, .message-detail .attachments video,
|
|
|
|
.message-list .attachments img,
|
|
|
|
.message-list .attachments audio,
|
|
|
|
.message-list .attachments video {
|
2015-01-21 23:39:07 -10:00
|
|
|
max-width: 100%; }
|
2015-03-02 17:53:44 -08:00
|
|
|
.message-detail .attachments video,
|
|
|
|
.message-list .attachments video {
|
|
|
|
background: black; }
|
2015-03-11 17:49:01 -07:00
|
|
|
.message-detail .outgoing .avatar,
|
|
|
|
.message-list .outgoing .avatar {
|
2015-02-01 18:37:50 -10:00
|
|
|
display: none; }
|
2015-03-23 14:01:18 -07:00
|
|
|
.message-detail .avatar,
|
|
|
|
.message-list .avatar {
|
2015-03-04 13:59:40 -08:00
|
|
|
height: 36px;
|
2015-06-19 16:20:27 -07:00
|
|
|
width: 36px;
|
|
|
|
line-height: 36px; }
|
2015-03-05 16:29:12 -08:00
|
|
|
.message-detail .meta,
|
|
|
|
.message-list .meta {
|
2015-01-19 16:44:34 -10:00
|
|
|
margin-top: 3px;
|
|
|
|
float: right; }
|
2015-02-23 13:17:50 -08:00
|
|
|
.message-detail .end-session,
|
2015-02-19 11:51:32 -08:00
|
|
|
.message-list .end-session {
|
|
|
|
font: small;
|
|
|
|
font-style: italic;
|
|
|
|
opacity: 0.8; }
|
2015-02-17 18:03:05 -08:00
|
|
|
.message-detail .error,
|
|
|
|
.message-list .error {
|
|
|
|
font-style: italic; }
|
|
|
|
.message-detail .key-conflict,
|
|
|
|
.message-list .key-conflict {
|
|
|
|
padding: 15px 10px; }
|
|
|
|
.message-detail .key-conflict button,
|
|
|
|
.message-list .key-conflict button {
|
|
|
|
margin-top: 5px; }
|
|
|
|
|
|
|
|
.key-conflict-dialogue {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
padding: 36px; }
|
|
|
|
.key-conflict-dialogue .content {
|
|
|
|
padding: 1em;
|
|
|
|
background: white;
|
|
|
|
color: black;
|
|
|
|
box-shadow: 0 0 5px 0 black; }
|
|
|
|
.key-conflict-dialogue .verify {
|
2015-03-26 15:19:46 -07:00
|
|
|
color: #2090ea;
|
2015-02-17 18:03:05 -08:00
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer; }
|
2014-11-07 00:32:32 -08:00
|
|
|
|
2015-01-19 16:44:34 -10:00
|
|
|
.bottom-bar {
|
|
|
|
height: 36px;
|
|
|
|
border-top: 1px solid #f3f3f3;
|
|
|
|
background: white; }
|
2015-06-16 22:43:40 +02:00
|
|
|
.bottom-bar button, .bottom-bar input, .bottom-bar textarea {
|
2015-01-19 16:44:34 -10:00
|
|
|
color: #454545; }
|
|
|
|
.bottom-bar button {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 36px;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
font-size: 24px;
|
|
|
|
background: transparent; }
|
2015-01-21 23:39:07 -10:00
|
|
|
.bottom-bar .attachments {
|
2015-01-24 23:18:10 -10:00
|
|
|
float: left;
|
2015-02-05 20:42:16 -10:00
|
|
|
height: 100%; }
|
2015-01-19 16:44:34 -10:00
|
|
|
.bottom-bar .send-btn {
|
2015-01-21 23:39:07 -10:00
|
|
|
float: right;
|
2015-01-19 16:44:34 -10:00
|
|
|
height: 100%;
|
2015-01-21 23:39:07 -10:00
|
|
|
width: 36px;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
background: url("/images/send.png") no-repeat;
|
2015-03-05 15:48:28 -08:00
|
|
|
background-size: 75%;
|
|
|
|
background-position: center center;
|
2015-01-21 23:39:07 -10:00
|
|
|
cursor: pointer; }
|
|
|
|
.bottom-bar .send-btn::before {
|
|
|
|
content: '+'; }
|
2015-06-16 22:43:40 +02:00
|
|
|
.bottom-bar form, .bottom-bar input, .bottom-bar textarea {
|
2015-01-21 23:39:07 -10:00
|
|
|
height: 100%; }
|
2015-06-16 22:43:40 +02:00
|
|
|
.bottom-bar .send-message {
|
2015-01-21 23:39:07 -10:00
|
|
|
display: block;
|
2015-06-16 22:43:40 +02:00
|
|
|
width: calc(100% - 2 * 36px - 20px);
|
|
|
|
min-height: 35px;
|
|
|
|
max-height: 100px;
|
|
|
|
padding: 10px;
|
2015-01-19 16:44:34 -10:00
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
2015-06-17 23:06:19 +02:00
|
|
|
z-index: 5;
|
|
|
|
resize: none; }
|
2015-03-02 16:31:04 -08: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-03-23 14:11:48 -07:00
|
|
|
|
2015-05-26 16:54:21 -07:00
|
|
|
.confirmation-dialog {
|
|
|
|
position: absolute;
|
|
|
|
top: 36px;
|
|
|
|
padding: 1em;
|
|
|
|
background: white;
|
|
|
|
border: solid 2px #2090ea; }
|
|
|
|
.confirmation-dialog .message {
|
|
|
|
text-align: center; }
|
|
|
|
.confirmation-dialog button {
|
|
|
|
float: right;
|
|
|
|
margin-left: 10px; }
|
|
|
|
|
2015-03-23 14:11:48 -07:00
|
|
|
/*# sourceMappingURL=manifest.css.map */
|