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-19 10:46:22 +00:00
|
|
|
width: 25px;
|
|
|
|
height : 25px;
|
2019-10-17 10:15:29 +00:00
|
|
|
|
|
|
|
&.toggled {
|
|
|
|
background: $AOTToolbarButtonToggleColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: initial;
|
|
|
|
}
|
|
|
|
}
|
2019-10-18 09:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.always-on-top-toolbox {
|
|
|
|
flex-direction: row;
|
|
|
|
left: 50%;
|
|
|
|
position: absolute;
|
2021-03-16 12:25:30 +00:00
|
|
|
bottom: 10px;
|
2019-10-18 09:09:14 +00:00
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.filmstrip-toolbox {
|
|
|
|
flex-direction: column;
|
2021-03-16 12:25:30 +00:00
|
|
|
}
|