parsley/app/javascript/styles/_iconic.scss
2018-08-29 16:58:07 -05:00

25 lines
470 B
SCSS

@mixin iconic-color($color) {
fill: $color;
stroke: $color;
}
/* Hide all icons that are waiting to be injected */
img.iconic {
display: none;
}
/* Make sure filled and text elements only get fills */
.iconic-property-fill, .iconic-property-text {
stroke: none !important;
}
/* Make sure stroked elements only get strokes */
.iconic-property-stroke {
fill: none !important;
}
/* Theme-specific rules */
.iconic * {
@include iconic-color(currentColor);
}