bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/styles.scss

148 lines
2.5 KiB
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/mixins/focus";
@import "/imports/ui/stylesheets/variables/_all";
2016-06-02 00:33:19 +08:00
@mixin lineClamp($lineHeight: 1em, $lineCount: 1, $bgColor: inherit) {
display: block;
2018-06-14 04:18:16 +08:00
box-orient: vertical;
position: relative;
word-break: break-word;
2018-06-14 04:18:16 +08:00
overflow: hidden;
line-height: $lineHeight;
max-height: calc(#{"$lineHeight * $lineCount"});
&:before {
content: '...';
width: 10%;
height: lineHeight;
text-align: right;
position: absolute;
right: 0;
bottom: 0;
background: linear-gradient(to right, rgba(255, 255, 255, 0), $bgColor 75%);
}
&:after {
content: '';
position: absolute;
right: 0;
width: 1em;
height: $lineHeight;
margin-top: 0.2em;
background-color: $bgColor;
}
}
2016-06-02 00:33:19 +08:00
.chat {
background-color: #fff;
padding: var(--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;
overflow: hidden;
height: 100vh;
transform: translateZ(0);
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;
2018-12-20 02:35:18 +08:00
margin-bottom: 1rem;
2017-03-17 06:39:34 +08:00
a {
@include elementFocus(var(--color-primary));
padding-bottom: var(--sm-padding-y);
padding-left: var(--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
}
2017-08-05 01:58:55 +08:00
.title {
@extend %text-elipsis;
flex: 1;
2018-10-26 02:03:25 +08:00
& > button, button:hover {
margin-top: 0;
padding-top: 0;
border-top: 0;
2018-12-20 02:35:18 +08:00
padding-bottom: 0;
2018-10-26 02:03:25 +08:00
}
2017-03-17 06:39:34 +08:00
}
.closeBtn {
background-color: var(--color-white);
2017-08-05 01:58:55 +08:00
flex: 0 0;
padding: 0 0.25rem !important;
i {
font-size: 0.85em;
color: var(--color-gray-dark) !important;
top: -.4em;
}
&:focus,
&:hover {
background-color: var(--color-white) !important;
i {
color: var(--color-gray);
}
}
}
2018-10-16 22:33:42 +08:00
.hideBtn {
position: relative;
background-color: white;
display: block;
margin: 4px;
margin-bottom: 2px;
padding-left: 0px;
> i {
color: black;
}
&:hover {
background-color: #fff;
}
}
.link {
text-decoration: none;
2018-07-06 20:05:56 +08:00
background-color: inherit;
}
.pushMessageContent {
margin-left: 2rem;
margin-right: 2rem;
margin-top: 1.4rem;
margin-bottom: .4rem;
2018-07-06 20:05:56 +08:00
background-color: inherit;
}
.userNameMessage {
margin: 0;
font-size: 80%;
color: var(--color-gray-dark);
font-weight: bold;
2018-07-06 20:05:56 +08:00
background-color: inherit;
@include lineClamp(1em, 1);
}
.contentMessage {
margin-top: .2rem;
font-size: 80%;
2018-07-06 20:05:56 +08:00
background-color: inherit;
@include lineClamp(var(--font-size-small), 10);
}