| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 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-content { height: 85vh; overflow: auto; }
- .slack-chat-title { font-size: 1.75em; font-style: italic; }
- .slackmsg-item { position: relative; background: #eee; 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 {}
|