mirror of https://github.com/ColorlibHQ/AdminLTE
18 lines
306 B
SCSS
18 lines
306 B
SCSS
|
//
|
||
|
// Mixins: Direct Chat
|
||
|
//
|
||
|
|
||
|
// Direct Chat Variant
|
||
|
@mixin direct-chat-variant($bg-color, $color: #fff) {
|
||
|
.right > .direct-chat-text {
|
||
|
background: $bg-color;
|
||
|
border-color: $bg-color;
|
||
|
color: color-yiq($bg-color);
|
||
|
|
||
|
&::after,
|
||
|
&::before {
|
||
|
border-left-color: $bg-color;
|
||
|
}
|
||
|
}
|
||
|
}
|