John Cowen a61e5cc08b
ui: Icon related fixups (#13183)
* ui: Use new icon-size and icon-color for popover-menus

* Remove the default currentColor plus add some more defaults

* Undo transparency overwrites now we don't need them

* Fixup discochain icons

* Undo a default icon rule for vert align

* Fixup expanded icon for meatball popovers

* Fixup intention permission labels/badges/icons

* Remove different res icon

* Remove icon resolutions
2022-05-25 14:28:42 +01:00

18 lines
361 B
SCSS

:root {
--csv-list-separator: ',';
}
%csv-list {
// mainly used for block elements, you may need to overwrite this with an
// inline-flex to keep any inline-ness
display: flex;
}
%csv-list > * {
@extend %csv;
}
%csv:not(:last-child)::after {
display: inline;
content: var(--csv-list-separator);
vertical-align: initial;
margin-right: 0.3em;
}