jiti-meet/css/_settings-button.scss

64 lines
1.2 KiB
SCSS
Raw 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;
height: 18px;
position: absolute;
text-align: center;
top: 0;
right: -4;
width: 18px;
&> svg {
fill: #fff;
margin-top: 5px;
}
2021-02-23 11:09:22 +00:00
&--disabled {
background-color: #36383c;
cursor: default;
2021-02-23 11:09:22 +00:00
&> svg {
fill: #929292;
}
}
2021-02-23 11:09:22 +00:00
&--hovered {
background: #F2F3F4;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
&> svg {
2021-02-23 11:09:22 +00:00
fill: #000;
}
2021-02-23 11:09:22 +00:00
&.settings-button-small-icon--disabled {
&> svg {
2021-02-23 11:09:22 +00:00
fill: #929292;
}
}
}
}