| |
| /* |
| * Copyright 2017-present Open Networking Foundation |
| |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| |
| // Mincer asset helper functions |
| // |
| // This must be imported into a .css.ejs.scss file. |
| // Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation. |
| |
| |
| @function twbs-font-path($path) { |
| // do something like following |
| // from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>" |
| // from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>" |
| // or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>" |
| @return "<%- asset_path("#{$path}".replace(/[#?].*$/, '')) + "#{$path}".replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>"; |
| } |
| |
| @function twbs-image-path($file) { |
| @return "<%- asset_path("#{$file}") %>"; |
| } |
| |
| $bootstrap-sass-asset-helper: true; |