svg key template to be in line with others

This commit is contained in:
galister
2025-06-19 07:17:44 +09:00
parent 775310c614
commit e0e30dedfb

View File

@@ -3,24 +3,15 @@
<!-- Key cap with a single label. --> <!-- Key cap with a single label. -->
<!-- Used for special keys. --> <!-- Used for special keys. -->
<template name="KeySpecial"> <template name="KeySpecial">
<rectangle <div width="${width}" height="${height}" min_width="${width}" min_height="${height}" max_width="${width}" max_height="${height}">
border_color="#0044CC" <rectangle
border="2" margin="4" width="100%" overflow="hidden" box_sizing="border_box"
round="8" border_color="#0044CC" border="2" round="8" color="#000A1C" color2="#000002" gradient="vertical"
color="#000A1C" align_items="center"
color2="#000002" justify_content="center">
gradient="vertical" <sprite color="#FFFFFF" width="32" height="32" src="keyboard/${text}.svg" />
width="${width}" </rectangle>
height="${height}" </div>
min_width="${width}"
min_height="${height}"
max_width="${width}"
max_height="${height}"
margin="4"
align_items="center"
justify_content="center">
<sprite color="#FFFFFF" width="32" height="32" src="keyboard/${text}.svg" />
</rectangle>
</template> </template>
<!-- Key cap with a single label. --> <!-- Key cap with a single label. -->