Gui: convert indentations to spaces

This commit is contained in:
luzpaz
2023-01-23 13:52:19 +00:00
committed by Uwe
parent 62974cd4d5
commit 50a0fd6777
11 changed files with 816 additions and 816 deletions

View File

@@ -256,39 +256,39 @@ Separator {
}
<?xml version="1.0"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="red" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="35" y2="80">
<stop offset="0" stop-color="rgb(255,0,0)" stop-opacity="1"/>
<stop offset="1" stop-color="rgb(255,0,0)" stop-opacity="0"/>
</linearGradient>
<linearGradient id="blue" gradientUnits="userSpaceOnUse" x1="100" y1="50" x2="0" y2="50">
<stop offset="0" stop-color="rgb(0,0,255)" stop-opacity="1"/>
<stop offset="1" stop-color="rgb(0,0,255)" stop-opacity="0"/>
</linearGradient>
<linearGradient id="yellow" gradientUnits="userSpaceOnUse" x1="0" y1="100" x2="40" y2="20">
<stop offset="0" stop-color="rgb(255,255,0)" stop-opacity="1"/>
<stop offset="1" stop-color="rgb(255,255,0)" stop-opacity="0"/>
</linearGradient>
<path id="triangle1" d="M0 0 L100 50 L0 100 z"/>
<defs>
<linearGradient id="red" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="35" y2="80">
<stop offset="0" stop-color="rgb(255,0,0)" stop-opacity="1"/>
<stop offset="1" stop-color="rgb(255,0,0)" stop-opacity="0"/>
</linearGradient>
<linearGradient id="blue" gradientUnits="userSpaceOnUse" x1="100" y1="50" x2="0" y2="50">
<stop offset="0" stop-color="rgb(0,0,255)" stop-opacity="1"/>
<stop offset="1" stop-color="rgb(0,0,255)" stop-opacity="0"/>
</linearGradient>
<linearGradient id="yellow" gradientUnits="userSpaceOnUse" x1="0" y1="100" x2="40" y2="20">
<stop offset="0" stop-color="rgb(255,255,0)" stop-opacity="1"/>
<stop offset="1" stop-color="rgb(255,255,0)" stop-opacity="0"/>
</linearGradient>
<path id="triangle1" d="M0 0 L100 50 L0 100 z"/>
<filter id="colorAdd">
<feComposite in="SourceGraphic" in2="BackgroundImage" operator="arithmetic" k2="1" k3="1"/>
<feComposite in="SourceGraphic" in2="BackgroundImage" operator="arithmetic" k2="1" k3="1"/>
</filter>
<filter id="Matrix1">
<feColorMatrix type="matrix" values="
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
1 1 1 1 0
0 0 0 0 1
"/>
<feColorMatrix type="matrix" values="
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
1 1 1 1 0
0 0 0 0 1
"/>
</filter>
</defs>
<g filter="url(#Matrix1)">
<use xlink:href="#triangle1" fill="url(#blue)"/>
<use xlink:href="#triangle1" fill="url(#yellow)" filter="url(#colorAdd)"/>
<use xlink:href="#triangle1" fill="url(#red)" filter="url(#colorAdd)"/>
<use xlink:href="#triangle1" fill="url(#blue)"/>
<use xlink:href="#triangle1" fill="url(#yellow)" filter="url(#colorAdd)"/>
<use xlink:href="#triangle1" fill="url(#red)" filter="url(#colorAdd)"/>
</g>
</svg>
*/