[mdn] WEB-72460 Change baseline icons to have 20px of width.

GitOrigin-RevId: 7f13793fd6307565269cc504e5734f8ec89e1236
This commit is contained in:
Piotr Tomiak
2025-05-14 12:15:22 +02:00
committed by intellij-monorepo-bot
parent c7f5fdd5f4
commit 25000ebf85
7 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
<svg width="30" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="20" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M420 30L390 60L480 150L390 240L330 180L300 210L390 300L540 150L420 30Z" fill="#C4EED0"/>
<path d="M150 0L30 120L60 150L150 60L210 120L240 90L150 0Z" fill="#C4EED0"/>
<path d="M390 0L420 30L150 300L0 150L30 120L150 240L390 0Z" fill="#1EA446"/>

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 363 B

View File

@@ -1,4 +1,4 @@
<svg width="30" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="20" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M420 30L390 60L480 150L390 240L330 180L300 210L390 300L540 150L420 30Z" fill="#125225"/>
<path d="M150 0L30 120L60 150L150 60L210 120L240 90L150 0Z" fill="#125225"/>
<path d="M390 0L420 30L150 300L0 150L30 120L150 240L390 0Z" fill="#1EA446"/>

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 363 B

View File

@@ -1,4 +1,4 @@
<svg width="30" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="20" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M150 0L180 30L150 60L120 30L150 0Z" fill="#A8C7FA"/>
<path d="M210 60L240 90L210 120L180 90L210 60Z" fill="#A8C7FA"/>
<path d="M450 60L480 90L450 120L420 90L450 60Z" fill="#A8C7FA"/>

Before

Width:  |  Height:  |  Size: 729 B

After

Width:  |  Height:  |  Size: 729 B

View File

@@ -1,4 +1,4 @@
<svg width="30" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="20" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M150 0L180 30L150 60L120 30L150 0Z" fill="#2D509E"/>
<path d="M210 60L240 90L210 120L180 90L210 60Z" fill="#2D509E"/>
<path d="M450 60L480 90L450 120L420 90L450 60Z" fill="#2D509E"/>

Before

Width:  |  Height:  |  Size: 729 B

After

Width:  |  Height:  |  Size: 729 B

View File

@@ -1,4 +1,4 @@
<svg width="30" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="20" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M150 0L240 90L210 120L120 30L150 0Z" fill="#F09409"/>
<path d="M420 30L540 150L420 270L390 240L480 150L390 60L420 30Z" fill="#C6C6C6"/>
<path d="M330 180L300 210L390 300L420 270L330 180Z" fill="#F09409"/>

Before

Width:  |  Height:  |  Size: 472 B

After

Width:  |  Height:  |  Size: 472 B

View File

@@ -1,4 +1,4 @@
<svg width="30" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="20" height="16" viewBox="0 0 540 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M150 0L240 90L210 120L120 30L150 0Z" fill="#F09409"/>
<path d="M420 30L540 150L420 270L390 240L480 150L390 60L420 30Z" fill="#565656"/>
<path d="M330 180L300 210L390 300L420 270L330 180Z" fill="#F09409"/>

Before

Width:  |  Height:  |  Size: 472 B

After

Width:  |  Height:  |  Size: 472 B

View File

@@ -15,7 +15,7 @@ public final class XmlFrontbackImplIcons {
private static @NotNull Icon load(@NotNull String path, int cacheKey, int flags) {
return IconManager.getInstance().loadRasterizedIcon(path, XmlFrontbackImplIcons.class.getClassLoader(), cacheKey, flags);
}
/** 30x16 */ public static final @NotNull Icon BaselineHigh = load("icons/baseline-high.svg", 177995492, 2);
/** 30x16 */ public static final @NotNull Icon BaselineLow = load("icons/baseline-low.svg", 1079046063, 2);
/** 30x16 */ public static final @NotNull Icon BaselineNone = load("icons/baseline-none.svg", 717041609, 2);
/** 20x16 */ public static final @NotNull Icon BaselineHigh = load("icons/baseline-high.svg", -1850171986, 2);
/** 20x16 */ public static final @NotNull Icon BaselineLow = load("icons/baseline-low.svg", -723775788, 2);
/** 20x16 */ public static final @NotNull Icon BaselineNone = load("icons/baseline-none.svg", 921481460, 2);
}