Popout inbox

Rather than opening the inbox in its own window, let it appear as a
browser action popup by default, but allow promotion to its own window
if requested.
This commit is contained in:
lilia
2015-03-12 11:53:23 -07:00
parent cecb438a52
commit 31e7d285e3
9 changed files with 52 additions and 4 deletions

View File

@@ -95,6 +95,11 @@ input.search {
}
.index {
&.pop-in {
min-height: 330px;
min-width: 260px;
}
color: $grey_d;
background: #eee;
@@ -136,3 +141,12 @@ input.search {
font-weight: bold;
}
}
.popout {
float: right;
background: url('/images/popout.png') no-repeat center center;
display: none;
}
.title-bar:hover .popout {
display: inline-block;
}

View File

@@ -319,6 +319,9 @@ input.search {
.index {
color: #454545;
background: #eee; }
.index.pop-in {
min-height: 330px;
min-width: 260px; }
.index .new-group-update-form {
display: none;
padding: 0.5em; }
@@ -345,6 +348,14 @@ input.search {
.conversations .unread .contact-details .last-timestamp {
font-weight: bold; }
.popout {
float: right;
background: url("/images/popout.png") no-repeat center center;
display: none; }
.title-bar:hover .popout {
display: inline-block; }
.conversation {
padding: 36px 0; }
.conversation .file-input .close {