Browse Source

Added new transition to chat.

pull/75/head
Simon Eisenmann 11 years ago
parent
commit
ea028242dc
  1. 9
      src/styles/components/_chat.scss
  2. 2
      static/css/main.min.css

9
src/styles/components/_chat.scss

@ -28,17 +28,21 @@
width: $chat-width; width: $chat-width;
min-width: $chat-width; min-width: $chat-width;
z-index: 45; z-index: 45;
display: none; opacity: 0;
transition: opacity 0.3s ease-in-out;
} }
.withChat { .withChat {
#chat { #chat {
display: block; opacity: 1;
} }
&.withChatMaximized #chat { &.withChatMaximized #chat {
left: 0; left: 0;
width: auto; width: auto;
} }
.chat {
pointer-events: auto;
}
} }
.chatcontainer { .chatcontainer {
@ -126,7 +130,6 @@
bottom: 0; bottom: 0;
left: 0; left: 0;
overflow: hidden; overflow: hidden;
pointer-events: auto;
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;

2
static/css/main.min.css vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save