svgdefs.svg 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <defs>
  2. <marker id="head" class="flow-link__head" orient="auto" markerWidth="4" markerHeight="8" refX="0.1" refY="4">
  3. <path d="M0,0 V8 L4,4 Z"/>
  4. </marker>
  5. <filter x="-.1" y="-.2" width="1.2" height="1.4" id="solid-white" class="flow-socket__detail-solid">
  6. <feFlood flood-color="rgba(230,230,230,0.7)"/>
  7. <feComposite in="SourceGraphic"/>
  8. </filter>
  9. <filter x="-.1" y="-.2" width="1.2" height="1.4" id="solid-dark" class="flow-socket__detail-solid">
  10. <feFlood flood-color="rgba(30,30,30,0.7)"/>
  11. <feComposite in="SourceGraphic"/>
  12. </filter>
  13. <filter id="highlight-border" x="-50%" y="-50%" width="200%" height="200%" filterUnits="userSpaceOnUse" >
  14. <feMorphology in="SourceGraphic" result="MORPH" operator="dilate" radius="1" />
  15. <feColorMatrix in="MORPH" result="BORDER" type="matrix" values=".2 0 0 0 0, 0 .2 0 0 0, 0 0 .2 0 0, 0 0 0 .7 0"/>
  16. <feColorMatrix result = "matrixOut" in = "SourceGraphic" type = "matrix" values = ".5 0 0 0 0, 0 .5 0 0 0, 0 0 .5 0 0, 0 0 0 1 0"/>
  17. <feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="2" />
  18. <feMerge>
  19. <feMergeNode in="blurOut"/>
  20. <feMergeNode in="BORDER"/>
  21. <feMergeNode in="SourceGraphic"/>
  22. </feMerge>
  23. </filter>
  24. <filter id="highlight" x="-50%" y="-50%" width="200%" height="200%" filterUnits="userSpaceOnUse" >
  25. <feColorMatrix result = "matrixOut" in = "SourceGraphic" type = "matrix" values = "2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 1 0"/>
  26. <feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="4" />
  27. <feMerge>
  28. <feMergeNode in="blurOut"/>
  29. <feMergeNode in="SourceGraphic"/>
  30. </feMerge>
  31. </filter>
  32. <filter id="drag-shadow" x="-100%" y="-100%" width="300%" height="300%">
  33. <feDropShadow dx="0" dy="2" stdDeviation="3"/>
  34. </filter>
  35. </defs>