Sha256: 5d45e2ee6268a425abca495d50f3f743cb8a11fcd982a69203c3101d1f4c736e

Contents?: true

Size: 1.99 KB

Versions: 24

Compression:

Stored size: 1.99 KB

Contents

// replace str with val

replace(expr, str, val)
  expr = clone(expr)
  for e, i in expr
    if str == e
      expr[i] = val
  expr

// normalize gradient point (webkit)

grad-point(pos)
  if length(pos) == 1
    return left pos if pos in (top bottom)
    return pos top if pos in (left right)
  else if pos[0] in (top bottom)
    pos[1] pos[0]
  else
    pos

// implicit color stop position

pos-in-stops(i, stops)
  len = length(stops)
  if len - 1 == i
    100%
  else if i
    unit(i / len * 100, '%')
  else
    0%

// normalize color stops
//   - (color pos) -> (pos color)
//   - (color) -> (implied-pos color)

normalize-stops(stops)
  stops = clone(stops)
  for stop, i in stops
    if length(stop) == 1
      color = stop[0]
      stop[0] = pos-in-stops(i, stops)
      stop[1] = color
    else if typeof(stop[1]) == 'unit'
      pos = stop[1]
      stop[1] = stop[0]
      stop[0] = pos
  stops

// join color stops with the given translation function

join-stops(stops, translate)
  str = ''
  len = length(stops)
  for stop, i in stops
    str += ', ' if i
    pos = stop[0]
    color = stop[1]
    str += translate(color, pos)
  unquote(str)

// webkit translation function

webkit-stop(color, pos)
  s('color-stop(%d, %s)', pos / 100, color)

// mozilla translation function

moz-stop(color, pos)
  s('%s %s', color, pos)

// create a linear gradient with the given start
// position, followed by color stops

linear-gradient(start, stops...)
  error('color stops required') unless length(stops)
  prop = current-property[0]
  val = current-property[1]
  stops = normalize-stops(stops)

  // webkit
  end = grad-point(opposite-position(start))
  webkit = s('-webkit-gradient(linear, %s, %s, %s)', grad-point(start), end, join-stops(stops, webkit-stop))
  add-property(prop, replace(val, '__CALL__', webkit))

  // moz
  stops = join-stops(stops, moz-stop)
  moz = s('-moz-linear-gradient(%s, %s)', start, stops)
  add-property(prop, replace(val, '__CALL__', moz))

  // literal
  s('linear-gradient(%s, %s)', start, stops)

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
stylus-source-0.23.0 vendor/examples/mixins/gradients.styl
stylus-source-0.22.6 vendor/examples/mixins/gradients.styl
stylus-source-0.22.5 vendor/examples/mixins/gradients.styl
stylus-source-0.22.4 vendor/examples/mixins/gradients.styl
stylus-source-0.22.3 vendor/examples/mixins/gradients.styl
stylus-source-0.22.2 vendor/examples/mixins/gradients.styl
stylus-source-0.22.1 vendor/examples/mixins/gradients.styl
stylus-source-0.22.0 vendor/examples/mixins/gradients.styl
stylus-source-0.21.2 vendor/examples/mixins/gradients.styl
stylus-source-0.21.1 vendor/examples/mixins/gradients.styl
stylus-source-0.21.0 vendor/examples/mixins/gradients.styl
stylus-source-0.20.1 vendor/examples/mixins/gradients.styl
stylus-source-0.20.0 vendor/examples/mixins/gradients.styl
stylus-source-0.19.8 vendor/examples/mixins/gradients.styl
stylus-source-0.19.7 vendor/examples/mixins/gradients.styl
stylus-source-0.19.6 vendor/examples/mixins/gradients.styl
stylus-source-0.19.5 vendor/examples/mixins/gradients.styl
stylus-source-0.19.4 vendor/examples/mixins/gradients.styl
stylus-source-0.19.3 vendor/examples/mixins/gradients.styl
stylus-source-0.19.2 vendor/examples/mixins/gradients.styl