psu-libraries / psulib_base

Drupal Base Theme
0 stars 0 forks source link

Icon paths are incorrect for some file types #191

Closed zipymonkey closed 1 month ago

zipymonkey commented 1 month ago

See https://github.com/psu-libraries/intranet/issues/100

There is a bug in the base theme library. The icon paths to several file types is incorrect. Icons starting with ../../images are incorrect.

.file--application-pdf {
    background-image: url(../../images/icons/file-pdf-fill.svg);
}

.file--application-x-executable {
    background-image: url(../../images/icons/filetype-exe.svg);
}

.file--audio {
    background-image: url(../../images/icons/filetype-mp3.svg);
}

.file--video {
    background-image: url(../../images/icons/camera-video-fill.svg);
}