ae78068481
using a local SVG file and doing replace. One less network hop.
20 lines
882 B
XML
20 lines
882 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="102" height="20">
|
|
<linearGradient id="b" x2="0" y2="100%">
|
|
<stop offset="0" stop-color="#bbb" stop-opacity=".1" />
|
|
<stop offset="1" stop-opacity=".1" />
|
|
</linearGradient>
|
|
<mask id="a">
|
|
<rect width="102" height="20" rx="3" fill="#fff" />
|
|
</mask>
|
|
<g mask="url(#a)">
|
|
<path fill="#555" d="M0 0h52v20H0z" />
|
|
<path fill="#007ec6" d="M52 0h50v20H52z" />
|
|
<path fill="url(#b)" d="M0 0h102v20H0z" />
|
|
</g>
|
|
<g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11">
|
|
<text x="26" y="15" fill="#010101" fill-opacity=".3">version</text>
|
|
<text x="26" y="14">version</text>
|
|
<text x="76" y="15" fill="#010101" fill-opacity=".3">ver_number</text>
|
|
<text x="76" y="14">ver_number</text>
|
|
</g>
|
|
</svg>
|