forked from projects/fipamo
ro
a10dbcdeff
role was being used incorrectly for icon styling, so that has been corrected to use the class attribute instead
31 lines
499 B
CSS
31 lines
499 B
CSS
svg.icon {
|
|
transition: all 0.3s linear;
|
|
fill: var(--secondary);
|
|
width: 25px;
|
|
height: 25px;
|
|
padding-top: 5px;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
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);
|
|
}
|