fipamo/public/assets/css/dash/icons.css
ro 981d182d1a
style, state and bounding tweaks for editor
new floating text formatter had some reveal state issues, some styling
wonkyness and didn't have any bounding rules, so all of that has been
addressed.

also removed css references to a component that has been removed.
2025-05-18 12:20:39 -06:00

37 lines
611 B
CSS

svg.icon {
transition: all 0.3s linear;
fill: var(--secondary);
width: 25px;
height: 25px;
color: var(--secondary);
}
svg.editor-icon {
transition: all 0.3s linear;
fill: var(--primary);
width: 25px;
height: 25px;
color: var(--primary);
}
svg#move-menu-item {
fill: var(--secondary-highlight);
top: 8px;
position: relative;
}
button[data-render="true"] {
background: var(--primary);
}
button[data-render="true"] svg {
fill: var(--primary-highlight);
}
button[data-render="false"] svg {
fill: var(--secondary);
}
button[data-enabled="false"] svg {
fill: var(--primary);
}