jiti-meet/css/_settings-button.scss

75 lines
1.4 KiB
SCSS
Raw Permalink Normal View History

2021-02-23 11:09:22 +00:00
.settings-button-container {
position: relative;
2021-02-23 11:09:22 +00:00
.toolbox-icon {
align-items: center;
border-radius: 3px;
cursor: pointer;
display: flex;
justify-content: center;
2021-02-23 11:09:22 +00:00
&.disabled, .disabled & {
cursor: initial;
color: #929292;
background-color: #36383c;
2021-02-23 11:09:22 +00:00
&:hover {
background-color: #36383c;
}
2021-02-23 11:09:22 +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;
padding: 1px;
2021-02-23 11:09:22 +00:00
position: absolute;
right: -4px;
top: -3px;
2021-02-23 11:09:22 +00:00
2023-02-03 11:30:38 +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);
2023-02-03 11:30:38 +00:00
& > svg {
fill: #040404;
}
2021-02-23 11:09:22 +00:00
&.settings-button-small-icon--disabled {
background: #36383C;
&> svg {
2023-02-03 11:30:38 +00:00
fill: #929292;
}
}
}
2023-02-03 11:30:38 +00:00
& > svg {
fill: #fff;
}
&--disabled {
background-color: #36383c;
cursor: default;
&> svg {
fill: #929292;
}
}
}
.settings-button-small-icon-container {
position: absolute;
right: -4px;
top: -3px;
& .settings-button-small-icon {
position: relative;
top: 0;
right: 0;
}
}