Sha256: b49c6e0918fad8ee01b16a52e92135cd35bf40db3f0e858601724eb3dc94be56

Contents?: true

Size: 719 Bytes

Versions: 127

Compression:

Stored size: 719 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);
  }
}

Version data entries

127 entries across 127 versions & 4 rubygems

Version Path
govuk_publishing_components-35.13.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.13.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.12.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.11.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.10.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.9.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.8.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.7.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.6.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_tech_docs-3.4.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.5.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.4.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.3.5 node_modules/govuk-frontend/govuk/tools/_font-url.scss
katalyst-govuk-formbuilder-1.5.0 vendor/assets/stylesheets/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.3.4 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.3.3 node_modules/govuk-frontend/govuk/tools/_font-url.scss
dxw_govuk_frontend_rails-4.6.0 vendor/assets/stylesheets/tools/_font-url.scss
govuk_publishing_components-35.3.2 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.3.1 node_modules/govuk-frontend/govuk/tools/_font-url.scss
govuk_publishing_components-35.3.0 node_modules/govuk-frontend/govuk/tools/_font-url.scss