Compare commits
1 commit
develop
...
enhancemen
Author | SHA1 | Date | |
---|---|---|---|
|
93b1526192 |
9 changed files with 50 additions and 20 deletions
|
@ -88,8 +88,8 @@ $woot-snackbar-bg: #323232;
|
||||||
$woot-snackbar-button: #ffeb3b;
|
$woot-snackbar-button: #ffeb3b;
|
||||||
|
|
||||||
$swift-ease-out-duration: .4s !default;
|
$swift-ease-out-duration: .4s !default;
|
||||||
$swift-ease-out-timing-function: cubic-bezier(.25, .8, .25, 1) !default;
|
$swift-ease-out-function: cubic-bezier(.25, .8, .25, 1) !default;
|
||||||
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;
|
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-function !default;
|
||||||
|
|
||||||
// Ionicons
|
// Ionicons
|
||||||
$ionicons-font-path: '~ionicons/fonts';
|
$ionicons-font-path: '~ionicons/fonts';
|
||||||
|
|
|
@ -88,8 +88,8 @@ $woot-snackbar-bg: #323232;
|
||||||
$woot-snackbar-button: #ffeb3b;
|
$woot-snackbar-button: #ffeb3b;
|
||||||
|
|
||||||
$swift-ease-out-duration: .4s !default;
|
$swift-ease-out-duration: .4s !default;
|
||||||
$swift-ease-out-timing-function: cubic-bezier(.25, .8, .25, 1) !default;
|
$swift-ease-out-function: cubic-bezier(0.37, 0, 0.63, 1) !default;
|
||||||
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;
|
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-function !default;
|
||||||
|
|
||||||
// Ionicons
|
// Ionicons
|
||||||
$ionicons-font-path: '~ionicons/fonts';
|
$ionicons-font-path: '~ionicons/fonts';
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
|
@keyframes left-shift-animation {
|
||||||
|
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
transform: translateX(1px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.conversation {
|
.conversation {
|
||||||
@include flex;
|
@include flex;
|
||||||
@include flex-shrink;
|
@include flex-shrink;
|
||||||
|
@ -10,6 +22,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
|
animation: left-shift-animation .5s $swift-ease-out-function;
|
||||||
background: $color-background;
|
background: $color-background;
|
||||||
border-bottom-color: $color-border-light;
|
border-bottom-color: $color-border-light;
|
||||||
border-left-color: $color-woot;
|
border-left-color: $color-woot;
|
||||||
|
@ -30,7 +43,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-last-child(2) {
|
&:last-child {
|
||||||
.conversation--details {
|
.conversation--details {
|
||||||
border-bottom-color: $color-border-light;
|
border-bottom-color: $color-border-light;
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,6 +120,21 @@
|
||||||
@include scroll-on-hover;
|
@include scroll-on-hover;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.conversation-transition-list-move {
|
||||||
|
transition: transform .3s $swift-ease-out-function;
|
||||||
|
}
|
||||||
|
|
||||||
|
.conversation-transition-list-enter-active,
|
||||||
|
.conversation-transition-list-leave-active {
|
||||||
|
transition: all .3s $swift-ease-out-function;
|
||||||
|
}
|
||||||
|
|
||||||
|
.conversation-transition-list-enter,
|
||||||
|
.conversation-transition-list-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateX(10px);
|
||||||
|
}
|
||||||
|
|
||||||
.chat-list__top {
|
.chat-list__top {
|
||||||
@include flex;
|
@include flex;
|
||||||
@include padding($space-normal $zero $space-small $zero);
|
@include padding($space-normal $zero $space-small $zero);
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
margin: $space-normal;
|
margin: $space-normal;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
max-height: $space-mega * 3;
|
max-height: $space-mega * 3;
|
||||||
transition: box-shadow .35s $ease-in-out-cubic, height 2s $ease-in-out-cubic;
|
transition: box-shadow .35s $swift-ease-out-function, height 2s $swift-ease-out-function;
|
||||||
|
|
||||||
&.is-focused {
|
&.is-focused {
|
||||||
@include normal-shadow;
|
@include normal-shadow;
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
&.is-private {
|
&.is-private {
|
||||||
background: lighten($warning-color, 38%);
|
background: lighten($warning-color, 38%);
|
||||||
|
|
||||||
> input {
|
>input {
|
||||||
background: lighten($warning-color, 38%);
|
background: lighten($warning-color, 38%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-uploads > label {
|
.file-uploads>label {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
padding: 0 $space-small;
|
padding: 0 $space-small;
|
||||||
}
|
}
|
||||||
|
|
||||||
> textarea {
|
>textarea {
|
||||||
@include ghost-input();
|
@include ghost-input();
|
||||||
@include margin(0);
|
@include margin(0);
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
|
|
||||||
.tabs-title {
|
.tabs-title {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
transition: all .2s $ease-in-out-cubic;
|
transition: all .2s $swift-ease-out-function;
|
||||||
transition-property: color, background;
|
transition-property: color, background;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
font-size: $font-size-small;
|
font-size: $font-size-small;
|
||||||
transition: all .15s $ease-in-out-cubic;
|
transition: all .15s $swift-ease-out-function;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.is-active {
|
&.is-active {
|
||||||
|
|
|
@ -24,7 +24,7 @@ table {
|
||||||
tr {
|
tr {
|
||||||
.show-if-hover {
|
.show-if-hover {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: all 0.2s $ease-in-out-cubic;
|
transition: all 0.2s $swift-ease-out-function;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -20,12 +20,14 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="conversations-list">
|
<div class="conversations-list">
|
||||||
<conversation-card
|
<transition-group name="conversation-transition-list" tag="div">
|
||||||
v-for="chat in conversationList"
|
<conversation-card
|
||||||
:key="chat.id"
|
v-for="chat in conversationList"
|
||||||
:active-label="label"
|
:key="chat.id"
|
||||||
:chat="chat"
|
:active-label="label"
|
||||||
/>
|
:chat="chat"
|
||||||
|
/>
|
||||||
|
</transition-group>
|
||||||
|
|
||||||
<div v-if="chatListLoading" class="text-center">
|
<div v-if="chatListLoading" class="text-center">
|
||||||
<span class="spinner"></span>
|
<span class="spinner"></span>
|
||||||
|
|
|
@ -84,8 +84,8 @@ $woot-snackbar-bg: #323232;
|
||||||
$woot-snackbar-button: #ffeb3b;
|
$woot-snackbar-button: #ffeb3b;
|
||||||
|
|
||||||
$swift-ease-out-duration: .4s !default;
|
$swift-ease-out-duration: .4s !default;
|
||||||
$swift-ease-out-timing-function: cubic-bezier(.25, .8, .25, 1) !default;
|
$swift-ease-out-function: cubic-bezier(.25, .8, .25, 1) !default;
|
||||||
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;
|
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-function !default;
|
||||||
|
|
||||||
$border-radius: 3px;
|
$border-radius: 3px;
|
||||||
$line-height: 1;
|
$line-height: 1;
|
||||||
|
|
Loading…
Reference in a new issue