| 1234567891011121314151617181920212223242526272829303132333435363738 |
- body {
- margin: 0;
- padding: 0;
- }
- .slack-context {
- display: inline-block;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 250px;
- overflow-x: hidden;
- overflow-y: scroll;
- }
- .slack-chat-container {
- display: inline-block;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 250px;
- right: 0;
- }
- .slack-context-room.selected {
- background-color: lightgrey;
- }
- .slack-chat-title { font-size: 1.75em; font-style: italic; }
- .slackmsg-item { margin-top: 15px; }
- .slackmsg-author { display: inline-block; }
- .slackmsg-author-img { margin-right: 15px; }
- .slackmsg-author-name { position: absolute; max-height: 1em; overflow: hidden; font-style: italic; }
- .slackmsg-msg { display: inline-block; vertical-align: top; margin-top: 1em; }
- .slackmsg-ts {}
|