I hereby claim:
- I am wildcard on github.
- I am kobi (https://keybase.io/kobi) on keybase.
- I have a public key whose fingerprint is 9BA0 88AF B04E FE9C 0C49 5B9C 2FE8 A695 C396 660F
To claim this, I am signing this object:
| import { endsWith, has, forEach, isString, isNumber } from 'lodash' | |
| import cloneStyle from 'jss/lib/utils/cloneStyle' | |
| const IMPORTANT = '!important' | |
| function makeImportant(value) { | |
| return endsWith(value, IMPORTANT) ? value : value + ' ' + IMPORTANT | |
| } | |
| export default ({important: importantByDefault = true} = {}) => { | |
| return { |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", |
| /// <remarks>Part of Microsoft.AspNet.Web.Optimization.1.1.3, forked to ignore data-uri</remarks> | |
| /// <remarks>forked to ignore data-uri and put surrounded by url(data:image..)</remarks> | |
| /// <summary> | |
| /// Rewrites urls to be absolute so assets will still be found after bundling | |
| /// </summary> | |
| public class CssRewriteUrlTransformIgnoringDataUri : IItemTransform | |
| { | |
| internal static string RebaseUrlToAbsolute(string baseUrl, string url) | |
| { | |
| // Don't do anything to invalid urls or absolute urls or data:image urls |