2021-02-23 11:09:22 +00:00
|
|
|
.settings-button-container {
|
|
|
|
position: relative;
|
2020-03-30 14:17:18 +00:00
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
.toolbox-icon {
|
|
|
|
align-items: center;
|
|
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-03-30 14:17:18 +00:00
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
&.disabled, .disabled & {
|
|
|
|
cursor: initial;
|
|
|
|
color: #929292;
|
|
|
|
background-color: #36383c;
|
2020-03-30 14:17:18 +00:00
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: #36383c;
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
2021-02-23 11:09:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 14:17:18 +00:00
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
.settings-button-small-icon {
|
|
|
|
background: #36383C;
|
|
|
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
2022-11-08 10:24:32 +00:00
|
|
|
padding: 1px;
|
2021-02-23 11:09:22 +00:00
|
|
|
position: absolute;
|
2021-03-11 09:25:49 +00:00
|
|
|
right: -4px;
|
|
|
|
top: -3px;
|
2021-02-23 11:09:22 +00:00
|
|
|
|
2021-03-11 09:25:49 +00:00
|
|
|
&:hover {
|
2021-02-23 11:09:22 +00:00
|
|
|
background: #F2F3F4;
|
|
|
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
|
2020-03-30 14:17:18 +00:00
|
|
|
|
|
|
|
&> svg {
|
2021-02-23 11:09:22 +00:00
|
|
|
fill: #000;
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
&.settings-button-small-icon--disabled {
|
2021-03-15 07:49:17 +00:00
|
|
|
background: #36383C;
|
|
|
|
|
2020-03-30 14:44:45 +00:00
|
|
|
&> svg {
|
2021-02-23 11:09:22 +00:00
|
|
|
fill: #929292;
|
|
|
|
}
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-11 09:25:49 +00:00
|
|
|
|
|
|
|
&> svg {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--disabled {
|
|
|
|
background-color: #36383c;
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
&> svg {
|
|
|
|
fill: #929292;
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 14:17:18 +00:00
|
|
|
}
|
2022-04-13 13:18:54 +00:00
|
|
|
|
|
|
|
.settings-button-small-icon-container {
|
|
|
|
position: absolute;
|
|
|
|
right: -4px;
|
|
|
|
top: -3px;
|
|
|
|
|
|
|
|
& .settings-button-small-icon {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|