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

2
static/css/main.min.css vendored

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