You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That will download a CSS that in turn includes other 8 fonts using url() from fonts.gstatic.com.
As a local workaround I've:
modified the @import url() in semantic.min.css with an absolute path pointing to /static/css/fonts-lato.css
downloaded the external CSS, modified the url() calls in it with absolute paths relative to /static/fonts/ and copied it into the puppetboard's static/css directory
downloaded all the 8 referenced fonts and put them in the puppetboard's static/fonts directory
But it would be nice if the offline mode would work out of the box.
[EDIT: this was with puppetboard 0.3.0 from PyPi]
The text was updated successfully, but these errors were encountered:
When in offline mode (
OFFLINE_MODE
se toTrue
), Puppetboard should not load external resources.But at the start of Semantic-UI-2.1.8/semantic.min.css there is an import:
That will download a CSS that in turn includes other 8 fonts using
url()
fromfonts.gstatic.com
.As a local workaround I've:
@import url()
insemantic.min.css
with an absolute path pointing to/static/css/fonts-lato.css
url()
calls in it with absolute paths relative to/static/fonts/
and copied it into the puppetboard'sstatic/css
directorystatic/fonts
directoryBut it would be nice if the offline mode would work out of the box.
[EDIT: this was with puppetboard 0.3.0 from PyPi]
The text was updated successfully, but these errors were encountered: