jiti-meet/css/_mini_toolbox.scss

36 lines
628 B
SCSS
Raw Normal View History

2019-10-18 09:09:14 +00:00
.filmstrip-toolbox,
2019-10-17 10:15:29 +00: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 13:48:17 +00:00
width: 22px;
height : 22px;
2019-10-17 10:15:29 +00:00
&.toggled {
2021-04-26 13:48:17 +00:00
background: none;
2019-10-17 10:15:29 +00:00
}
&.disabled {
cursor: initial;
}
}
2019-10-18 09:09:14 +00:00
}
.always-on-top-toolbox {
flex-direction: row;
left: 50%;
position: absolute;
bottom: 10px;
2019-10-18 09:09:14 +00:00
transform: translateX(-50%);
2021-04-26 13:48:17 +00:00
padding: 3px !important;
2019-10-18 09:09:14 +00:00
}
.filmstrip-toolbox {
flex-direction: column;
}