Files
jitsi-meet/css/_mini_toolbox.scss

31 lines
556 B
SCSS
Raw Permalink Normal View History

2019-10-17 12:15:29 +02:00
.always-on-top-toolbox {
background-color: $newToolbarBackgroundColor;
border-radius: 3px;
display: flex;
z-index: $toolbarZ;
.toolbox-icon {
cursor: pointer;
padding: 7px;
2021-04-26 16:48:17 +03:00
width: 22px;
height : 22px;
2019-10-17 12:15:29 +02:00
&.toggled {
2021-04-26 16:48:17 +03:00
background: none;
2019-10-17 12:15:29 +02:00
}
&.disabled {
cursor: initial;
}
}
2019-10-18 11:09:14 +02:00
}
.always-on-top-toolbox {
flex-direction: row;
left: 50%;
position: absolute;
bottom: 10px;
2019-10-18 11:09:14 +02:00
transform: translateX(-50%);
2021-04-26 16:48:17 +03:00
padding: 3px !important;
2019-10-18 11:09:14 +02:00
}