2017-11-02 00:01:55 +08:00
|
|
|
@import "/imports/ui/stylesheets/mixins/focus";
|
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
2016-06-02 00:33:19 +08:00
|
|
|
|
2017-12-05 03:43:08 +08:00
|
|
|
$icon-offset: -.4em;
|
|
|
|
|
2016-06-02 00:33:19 +08:00
|
|
|
.chat {
|
|
|
|
background-color: #fff;
|
2017-08-05 01:58:55 +08:00
|
|
|
padding: $md-padding-x;
|
2016-06-02 00:33:19 +08:00
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-direction: column;
|
2017-03-17 06:39:34 +08:00
|
|
|
justify-content: space-around;
|
2017-01-28 06:13:25 +08:00
|
|
|
overflow: hidden;
|
2016-06-02 00:33:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
2017-03-17 06:39:34 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-08-05 01:58:55 +08:00
|
|
|
align-items: left;
|
|
|
|
flex-shrink: 0;
|
2017-03-17 06:39:34 +08:00
|
|
|
|
|
|
|
a {
|
2017-11-08 00:06:31 +08:00
|
|
|
@include elementFocus($color-primary);
|
|
|
|
padding-bottom: $sm-padding-y;
|
|
|
|
padding-left: $sm-padding-y;
|
2017-03-17 06:39:34 +08:00
|
|
|
text-decoration: none;
|
2017-08-05 01:58:55 +08:00
|
|
|
display: block;
|
2017-03-17 06:39:34 +08:00
|
|
|
}
|
|
|
|
|
2017-08-05 01:58:55 +08:00
|
|
|
[class^="icon-bbb-"],
|
|
|
|
[class*=" icon-bbb-"] {
|
2016-12-07 01:07:22 +08:00
|
|
|
font-size: 85%;
|
|
|
|
}
|
2016-06-02 00:33:19 +08:00
|
|
|
}
|
2016-12-16 01:29:17 +08:00
|
|
|
|
2017-08-05 01:58:55 +08:00
|
|
|
.title {
|
|
|
|
@extend %text-elipsis;
|
|
|
|
flex: 1;
|
2017-03-17 06:39:34 +08:00
|
|
|
}
|
2017-03-02 05:27:05 +08:00
|
|
|
|
2017-12-05 03:43:08 +08:00
|
|
|
.closeBtn {
|
|
|
|
background-color: $color-white;
|
2017-08-05 01:58:55 +08:00
|
|
|
flex: 0 0;
|
2017-12-05 03:43:08 +08:00
|
|
|
padding: 0 0.25rem !important;
|
|
|
|
|
|
|
|
i {
|
|
|
|
font-size: 0.85em;
|
|
|
|
color: $color-gray-dark !important;
|
|
|
|
top: $icon-offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover{
|
|
|
|
background-color: $color-white !important;
|
|
|
|
i{
|
|
|
|
color: $color-gray;
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 01:29:17 +08:00
|
|
|
}
|