You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.0 KiB

8 years ago
  1. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="{{ width }}" height="20">
  2. <linearGradient id="smooth" x2="0" y2="100%">
  3. <stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
  4. <stop offset="1" stop-opacity=".1"/>
  5. </linearGradient>
  6. <mask id="round">
  7. <rect width="{{ width }}" height="20" rx="3" fill="#fff"/>
  8. </mask>
  9. <g mask="url(#round)">
  10. <rect width="{{ tag_width }}" height="20" fill="#555"/>
  11. <rect x="{{ tag_width }}" width="{{ status_width }}" height="20" fill="{{ color }}"/>
  12. <rect width="{{ width }}" height="20" fill="url(#smooth)"/>
  13. </g>
  14. <g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11">
  15. <text x="{{ tag_center_x }}" y="15" fill="#010101" fill-opacity=".3">{{ tag }}</text>
  16. <text x="{{ tag_center_x }}" y="14">{{ tag }}</text>
  17. <text x="{{ status_center_x }}" y="15" fill="#010101" fill-opacity=".3">{{ status }}</text>
  18. <text x="{{ status_center_x }}" y="14">{{ status }}</text>
  19. </g>
  20. </svg>