2024-12-17 03:10:06 +01:00
|
|
|
.wave-iconbutton {
|
2024-12-12 03:25:36 +01:00
|
|
|
display: flex;
|
2024-12-04 22:49:14 +01:00
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.7;
|
|
|
|
align-items: center;
|
2024-12-12 03:25:36 +01:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
font: inherit;
|
|
|
|
outline: inherit;
|
2024-09-09 21:35:53 +02:00
|
|
|
|
2024-12-04 22:49:14 +01:00
|
|
|
&.bulb {
|
|
|
|
color: var(--bulb-color);
|
|
|
|
opacity: 1;
|
2024-09-13 19:24:16 +02:00
|
|
|
|
2024-12-04 22:49:14 +01:00
|
|
|
&:hover i::before {
|
|
|
|
content: "\f672";
|
|
|
|
position: relative;
|
|
|
|
left: -1px;
|
|
|
|
}
|
2024-09-13 19:24:16 +02:00
|
|
|
}
|
|
|
|
|
2024-12-04 22:49:14 +01:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2024-09-09 21:35:53 +02:00
|
|
|
|
2024-12-12 03:25:36 +01:00
|
|
|
&.no-action {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2024-12-04 23:16:50 +01:00
|
|
|
|
2024-12-04 22:49:14 +01:00
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.45 !important;
|
|
|
|
}
|
2025-01-01 19:43:02 +01:00
|
|
|
|
|
|
|
&.toggle {
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 1px;
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
border: 1px solid var(--accent-color);
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background: var(--highlight-bg-color);
|
|
|
|
}
|
|
|
|
}
|
2024-09-09 21:35:53 +02:00
|
|
|
}
|