code.gitea.io/gitea@v1.22.3/templates/shared/actions/runner_badge.tmpl (about)

     1  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="{{.Badge.Width}}" height="18"
     2  	role="img" aria-label="{{.Badge.Label.Text}}: {{.Badge.Message.Text}}">
     3  	<title>{{.Badge.Label.Text}}: {{.Badge.Message.Text}}</title>
     4  	<linearGradient id="s" x2="0" y2="100%">
     5  		<stop offset="0" stop-color="#fff" stop-opacity=".7" />
     6  		<stop offset=".1" stop-color="#aaa" stop-opacity=".1" />
     7  		<stop offset=".9" stop-color="#000" stop-opacity=".3" />
     8  		<stop offset="1" stop-color="#000" stop-opacity=".5" />
     9  	</linearGradient>
    10  	<clipPath id="r">
    11  		<rect width="{{.Badge.Width}}" height="18" rx="4" fill="#fff" />
    12  	</clipPath>
    13  	<g clip-path="url(#r)">
    14  		<rect width="{{.Badge.Label.Width}}" height="18" fill="#555" />
    15  		<rect x="{{.Badge.Label.Width}}" width="{{.Badge.Message.Width}}" height="18" fill="{{.Badge.Color}}" />
    16  		<rect width="{{.Badge.Width}}" height="18" fill="url(#s)" />
    17  	</g>
    18  	<g fill="#fff" text-anchor="middle" font-family="Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision"
    19  		font-size="{{.Badge.FontSize}}"><text aria-hidden="true" x="{{.Badge.Label.X}}" y="140" fill="#010101" fill-opacity=".3"
    20  			transform="scale(.1)" textLength="{{.Badge.Label.TextLength}}">{{.Badge.Label.Text}}</text><text x="{{.Badge.Label.X}}" y="130"
    21  			transform="scale(.1)" fill="#fff" textLength="{{.Badge.Label.TextLength}}">{{.Badge.Label.Text}}</text><text aria-hidden="true"
    22  			x="{{.Badge.Message.X}}" y="140" fill="#010101" fill-opacity=".3" transform="scale(.1)"
    23  			textLength="{{.Badge.Message.TextLength}}">{{.Badge.Message.Text}}</text><text x="{{.Badge.Message.X}}" y="130" transform="scale(.1)"
    24  			fill="#fff" textLength="{{.Badge.Message.TextLength}}">{{.Badge.Message.Text}}</text></g>
    25  </svg>