2020-03-30 14:17:18 +00:00
|
|
|
.settings-button {
|
|
|
|
&-container {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.toolbox-icon {
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid #d1dbe8;
|
|
|
|
justify-content: center;
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #daebfa;
|
|
|
|
border: 1px solid #daebfa;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.toggled {
|
|
|
|
background: #2a3a4b;
|
|
|
|
border: 1px solid #5e6d7a;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #5e6d7a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled, .disabled & {
|
|
|
|
cursor: initial;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #a4b8d1;
|
2020-06-19 07:03:26 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #a4b8d1;
|
|
|
|
}
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: #5e6d7a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-small-icon {
|
|
|
|
background: #FFF;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-radius: 50%;
|
|
|
|
bottom: 0;
|
|
|
|
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
|
|
|
|
cursor: pointer;
|
2020-03-30 14:44:45 +00:00
|
|
|
height: 16px;
|
2020-03-30 14:17:18 +00:00
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
2020-03-30 14:44:45 +00:00
|
|
|
right: 4px;
|
|
|
|
width: 16px;
|
2020-03-30 14:17:18 +00:00
|
|
|
|
|
|
|
&> svg {
|
2020-04-16 10:47:10 +00:00
|
|
|
fill: #5e6d7a;
|
2020-03-30 14:17:18 +00:00
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--disabled {
|
|
|
|
background-color: #a4b8d1;
|
|
|
|
cursor: default;
|
2020-03-30 14:44:45 +00:00
|
|
|
}
|
2020-03-30 14:17:18 +00:00
|
|
|
|
2020-03-30 14:44:45 +00:00
|
|
|
&--hovered {
|
|
|
|
bottom: -1px;
|
|
|
|
height: 20px;
|
|
|
|
right: 2px;
|
|
|
|
width: 20px;
|
|
|
|
|
|
|
|
&> svg {
|
|
|
|
margin-top: 6px;
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|