mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-16 20:18:00 +00:00
ed529488f8
Reduce and optimize SVG markup by - removing unnecessary `id` attributes, - lowercasing hex colors following code standard - merging repeating `fill` attributes in `<g>` elements and - following `<svg>` root element attribute sequence as anywhere else Change-Id: I71df1df5fee0c363df41a996b5ec32d587b76f56
8 lines
354 B
XML
8 lines
354 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="2 2 20 20">
|
|
<g fill="#c8ccd1">
|
|
<path d="M13 12H9V7h4v5zm5 2H9v-1h9v1zm0 2H9v-1h9v1zm0 2H9v-1h9v1zm-4-9h4v1h-4V9zm0 2h4v1h-4v-1zm0-4h4v1h-4V7zm6-2H7v16h10c1.7 0 3-1.3 3-3V5z"/>
|
|
<path fill-rule="evenodd" d="M6 4v14H4V2h13v2"/>
|
|
</g>
|
|
</svg>
|