waveterm/frontend/app/element/iconbutton.scss
Mike Sawka 72f36a9639
wsh run (#1376)
implements `wsh run` command.  lots of fixes (and new options) for command blocks.  cleans up the UX/UI for command blocks.  lots of bug fixes for blockcontrollers.  other minor bug fixes.

also makes editor:* vars into settings override atoms.
2024-12-04 14:16:50 -08:00

30 lines
441 B
SCSS

.iconbutton {
cursor: pointer;
opacity: 0.7;
align-items: center;
&.bulb {
color: var(--bulb-color);
opacity: 1;
&:hover i::before {
content: "\f672";
position: relative;
left: -1px;
}
}
&:hover {
opacity: 1;
}
&.no-action {
cursor: default;
}
&.disabled {
cursor: default;
opacity: 0.45 !important;
}
}