Sha256: 8431491859316c86f8f36d57a76ce51948f48c3d5d6909d7d04b09a737c3d6f0

Contents?: true

Size: 762 Bytes

Versions: 25

Compression:

Stored size: 762 Bytes

Contents

////
/// @group tools/assets
////

/// Font URL
///
/// If a custom font-url handler is defined ($govuk-font-url-function) then
/// it will be called, otherwise a url will be returned with the filename
/// appended to the font path.
///
/// @param {String} $filename - Font filename
/// @return {String} URL for the filename, wrapped in `url()`
/// @access public

@function govuk-font-url($filename) {
  $use-custom-function: variable-exists("govuk-font-url-function")
    and $govuk-font-url-function
    and function-exists($govuk-font-url-function);

  @if $use-custom-function {
    @return call(get-function($govuk-font-url-function), $filename);
  } @else {
    @return url($govuk-fonts-path + $filename);
  }
}

/*# sourceMappingURL=_font-url.scss.map */

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
govuk_publishing_components-39.2.5 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.2.4 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.2.3 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.2.2 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.2.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.2.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.1.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-39.0.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-38.4.2 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-38.1.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-38.1.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-38.0.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-38.0.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.10.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.9.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.9.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.8.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.8.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.7.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-37.7.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss