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;
|
2021-03-16 14:25:30 +02:00
|
|
|
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
|
|
|
}
|