![lilia](/assets/img/avatar_default.png)
Adds thread model/collection for managing conversation-level state, such as unreadCounts, group membership, thread order, etc... plus various UI improvements enabled by thread model, including an improved compose flow, and thread-destroy button. Adds Whisper.notify for presenting messages to the user in an orderly fashion. Currently using a growl-style fade in/out effect. Also some housekeeping: Cut up views into separate files. Partial fix for formatTimestamp. Tweaked buttons and other styles.
44 lines
700 B
CSS
44 lines
700 B
CSS
.btn {
|
|
display: inline-block;
|
|
padding: 0.5em;
|
|
border: 2px solid #acdbf5;
|
|
border-radius: 4px;
|
|
background-color: #fff;
|
|
color: #7fd0ed;
|
|
font-weight: bold;
|
|
}
|
|
.btn:hover, .btn:focus {
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
.btn:hover {
|
|
background-color: #7fd0ed;
|
|
border-color: #acdbf5;
|
|
color: #fff;
|
|
}
|
|
.btn:active {
|
|
outline: 2px dashed #acdbf5;
|
|
outline-offset: 2px;
|
|
}
|
|
.btn.selected ,
|
|
.btn:active {
|
|
background-color: #7fd0ed;
|
|
border: 2px solid #acdbf5;
|
|
color: #fff;
|
|
}
|
|
.btn:active {
|
|
background-color: #f1fafd;
|
|
color: #7fd0ed;
|
|
}
|
|
|
|
.btn-square {
|
|
display: inline-block;
|
|
width: 32px;
|
|
line-height: 15px;
|
|
}
|
|
|
|
.btn-sm.btn-square {
|
|
padding: 0;
|
|
width: 25px;
|
|
height: 25px;
|
|
}
|