83508abab8
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.
26 lines
484 B
CSS
26 lines
484 B
CSS
input[type=text], textarea {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 0.5em;
|
|
border: 2px solid #7fd0ed;
|
|
border-radius: 4px;
|
|
background-color: #fafafa;
|
|
color: #333333;
|
|
}
|
|
|
|
|
|
input[type=submit]:focus,
|
|
input[type=text]:focus {
|
|
outline: 2px dashed #acdbf5;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
width: 100%;
|
|
min-height: 100px;
|
|
box-sizing: border-box;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|