forked from projects/fipamo
ro
989a4c7b69
the notifications and page editor ui elements where the only remaining space that still contained font icons, so they've been removed and replaced with svg some styling tweaks are still needed so that will handlded as the css edits continue
25 lines
413 B
CSS
25 lines
413 B
CSS
svg[role="icon"] {
|
|
transition: all 0.3s linear;
|
|
fill: var(--secondary);
|
|
width: 25px;
|
|
height: 25px;
|
|
padding-top: 5px;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
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);
|
|
}
|