Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support local assets in stylesheets and inline styles #1573

Open
mbostock opened this issue Aug 11, 2024 · 7 comments
Open

Support local assets in stylesheets and inline styles #1573

mbostock opened this issue Aug 11, 2024 · 7 comments
Labels
enhancement New feature or request

Comments

@mbostock
Copy link
Member

mbostock commented Aug 11, 2024

Framework does static analysis of HTML and JavaScript to find references to local assets, such as linked images and imported JavaScript modules; however, it doesn’t currently perform static analysis of stylesheets and inline styles, so attempting to reference local images and import other local stylesheets currently breaks. Here are a few examples (that can serve as test cases for this feature).

An inline stylesheet that references a local image:

<style type="text/css">

body {
  background-image: url("image.png");
}

</style>

A linked local stylesheet that references a local image:

<link rel="stylesheet" href="test.css" type="text/css">

Alternatively, via @import (which is currently also unsupported for local stylesheets, and should be considered part of this issue):

<style type="text/css">

@import url("./test.css");

</style>

And the following stylesheet:

body {
  background-image: url("image.png");
}

An inline style that references a local image:

<div class="card" style="background-image: url('image.png');">
  I have a background image.
</div>

Related #415 #416 #423 #467 #474 #786 #788 #1372.

@mbostock mbostock added the enhancement New feature or request label Aug 11, 2024
@mbostock mbostock changed the title Support remote and local assets in custom CSS Support local assets in stylesheets and inline styles Aug 11, 2024
@Arijitdesignsit
Copy link

I have been trying to go around this issue for a long time now. I am able to solve it via D3js today.
So, I just simply took the served absolute URL of the image by

const imgURL = await FileAttachment("./exampleImage.jpg").href;

Then by doing the following I am able to put a background image in a div with id divId:

d3.select("#divId").style("background-image", "url("+imgURL+")");

@Fil
Copy link
Contributor

Fil commented Oct 8, 2024

It's possible to work around the issue and host these fonts within your data app, but it requires a little bit of juggling. Here's my current approach:
https://observablehq.observablehq.cloud/framework-example-font-face/?secret=w7WHOz2YV5uW-V0Bml5Cmwvc7hEsVOAfm2RRwuh-vu4

(I'm sharing in case it can unblock someone, but it would be better to fix the issue.)

@drom
Copy link

drom commented Feb 19, 2025

Thank you for the great framework!

I am trying to load local font in my custom style.css

@font-face {
  font-family: 'Iosevka Drom Web';
  font-display: swap;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  src: url("./IosevkaDrom-Regular.woff2") format('woff2');
}

And getting this error:

Image

Is there other way I should try?

Self hosting custom fonts is a critical requirement for my projects. It would be nice if there was a way to implement it.

@Fil
Copy link
Contributor

Fil commented Feb 20, 2025

Did you try the technique I described just above your comment?

@drom
Copy link

drom commented Feb 20, 2025

@Fil I did. Does it suppose to work in dev mode, or only in release?

@Fil
Copy link
Contributor

Fil commented Feb 20, 2025

it should work in preview after you have deployed a first time (since the URL for the font is absolute)

@drom
Copy link

drom commented Feb 20, 2025

yes, when fonts are all on the web, I can reference them with https://... url. That works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants