2017-02-16 23:02:40 +00:00
|
|
|
/**
|
|
|
|
* Round badge.
|
|
|
|
*/
|
|
|
|
.badge-round {
|
|
|
|
background-color: $toolbarBadgeBackground;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: $toolbarBadgeColor;
|
|
|
|
// Do not inherit the font-family from the toolbar button, because it's an
|
|
|
|
// icon style.
|
|
|
|
font-family: $baseFontFamily;
|
|
|
|
font-size: 9px;
|
|
|
|
font-weight: 700;
|
|
|
|
line-height: 13px;
|
|
|
|
min-width: 13px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-03-07 00:28:19 +00:00
|
|
|
/**
|
|
|
|
* TODO: when the old filmstrip has been removed, remove the "new-" prefix.
|
|
|
|
*/
|
|
|
|
.new-toolbox {
|
|
|
|
bottom: calc((#{$newToolbarSize} * 2) * -1);
|
2018-06-12 17:14:21 +00:00
|
|
|
left: 0;
|
2018-03-07 00:28:19 +00:00
|
|
|
position: absolute;
|
2018-06-12 17:14:21 +00:00
|
|
|
right: 0;
|
2018-03-07 00:28:19 +00:00
|
|
|
transition: bottom .3s ease-in;
|
|
|
|
width: 100%;
|
2021-10-06 20:46:21 +00:00
|
|
|
pointer-events: none;
|
2022-01-14 12:13:13 +00:00
|
|
|
z-index: $toolbarZ + 2;
|
2018-03-07 00:28:19 +00:00
|
|
|
|
|
|
|
&.visible {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.no-buttons {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-02-23 11:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbox-content {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
position: relative;
|
|
|
|
z-index: $toolbarZ;
|
2021-06-10 12:48:44 +00:00
|
|
|
pointer-events: none;
|
2021-02-23 11:09:22 +00:00
|
|
|
|
|
|
|
.button-group-center,
|
|
|
|
.button-group-left,
|
|
|
|
.button-group-right {
|
|
|
|
display: flex;
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-group-center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-group-right {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbox-button-wth-dialog {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-button-with-badge {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.badge-round {
|
|
|
|
bottom: -5px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 20px;
|
|
|
|
min-width: 20px;
|
2019-04-17 13:15:08 +00:00
|
|
|
pointer-events: none;
|
2019-02-20 23:35:19 +00:00
|
|
|
position: absolute;
|
2021-02-23 11:09:22 +00:00
|
|
|
right: -5px;
|
2018-03-07 00:28:19 +00:00
|
|
|
}
|
2021-02-23 11:09:22 +00:00
|
|
|
}
|
2018-03-07 00:28:19 +00:00
|
|
|
|
2021-03-18 12:09:22 +00:00
|
|
|
.toolbox-content-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 100%;
|
2021-06-10 12:48:44 +00:00
|
|
|
pointer-events: all;
|
2021-07-13 06:50:08 +00:00
|
|
|
border-radius: 6px;
|
2022-03-29 09:01:48 +00:00
|
|
|
|
|
|
|
.toolbox-content-items {
|
|
|
|
@include ltr;
|
|
|
|
}
|
2021-03-18 12:09:22 +00:00
|
|
|
}
|
2018-03-07 00:28:19 +00:00
|
|
|
|
2021-07-20 08:37:52 +00:00
|
|
|
.toolbox-content-wrapper::after {
|
|
|
|
content: '';
|
|
|
|
background: $newToolbarBackgroundColor;
|
|
|
|
padding-bottom: env(safe-area-inset-bottom, 0);
|
|
|
|
}
|
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
.beta-tag {
|
|
|
|
background: #36383C;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
margin-left: 8px;
|
|
|
|
padding: 0 4px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overflow-menu-hr {
|
|
|
|
border-top: 1px solid #4C4D50;
|
|
|
|
border-bottom: 0;
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
2018-03-07 00:28:19 +00:00
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
.hangup-button {
|
|
|
|
background-color: $hangupColor;
|
|
|
|
|
|
|
|
@media (hover: hover) and (pointer: fine) {
|
|
|
|
&:hover {
|
|
|
|
background-color: $hangupHoverColor;
|
2019-02-20 23:35:19 +00:00
|
|
|
}
|
2018-03-07 00:28:19 +00:00
|
|
|
}
|
2021-02-23 11:09:22 +00:00
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
2018-03-07 00:28:19 +00:00
|
|
|
}
|
|
|
|
|
2022-08-26 18:25:04 +00:00
|
|
|
.hangup-menu-button {
|
|
|
|
background-color: $hangupMenuButtonColor;
|
|
|
|
|
|
|
|
@media (hover: hover) and (pointer: fine) {
|
|
|
|
&:hover {
|
|
|
|
background-color: $hangupMenuButtonHoverColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-08 13:42:07 +00:00
|
|
|
.profile-button-avatar {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2016-09-08 22:34:16 +00:00
|
|
|
/**
|
2016-10-25 11:55:43 +00:00
|
|
|
* START of fade in animation for main toolbar
|
2016-09-13 23:19:38 +00:00
|
|
|
*/
|
2016-10-25 11:55:43 +00:00
|
|
|
.fadeIn {
|
2017-02-16 23:02:40 +00:00
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
@include transition(all .3s ease-in);
|
2016-10-25 11:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOut {
|
2017-02-16 23:02:40 +00:00
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
@include transition(all .3s ease-out);
|
2016-10-28 17:39:25 +00:00
|
|
|
}
|
2021-02-23 11:09:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Audio and video buttons do not have toggled state.
|
|
|
|
*/
|
|
|
|
.audio-preview,
|
|
|
|
.video-preview {
|
|
|
|
.toolbox-icon.toggled {
|
|
|
|
background: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $newToolbarButtonHoverColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-03-12 12:19:04 +00:00
|
|
|
|
|
|
|
/**
|
2021-03-18 12:09:22 +00:00
|
|
|
* On small mobile devices make the toolbar full width and pad the invite prompt.
|
2021-03-12 12:19:04 +00:00
|
|
|
*/
|
|
|
|
.toolbox-content-mobile {
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
2021-03-18 12:09:22 +00:00
|
|
|
.toolbox-content-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:19:04 +00:00
|
|
|
.toolbox-content-items {
|
2022-03-29 09:01:48 +00:00
|
|
|
@include ltr;
|
2021-03-12 12:19:04 +00:00
|
|
|
border-radius: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
2021-08-20 08:53:11 +00:00
|
|
|
padding: 8px 0;
|
2021-03-12 12:19:04 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2021-03-18 12:09:22 +00:00
|
|
|
|
|
|
|
.invite-more-container {
|
|
|
|
margin: 0 16px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.invite-more-container.elevated {
|
|
|
|
margin-bottom: 52px;
|
|
|
|
}
|
2021-03-12 12:19:04 +00:00
|
|
|
}
|
|
|
|
}
|