Update v1.8.36
This commit is contained in:
parent
70257e8f60
commit
6c607154ae
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mdi",
|
"name": "mdi",
|
||||||
"version": "1.7.22",
|
"version": "1.8.36",
|
||||||
"main": [
|
"main": [
|
||||||
"scss/materialdesignicons.scss"
|
"scss/materialdesignicons.scss"
|
||||||
],
|
],
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
2
css/materialdesignicons.min.css
vendored
2
css/materialdesignicons.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.9 MiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mdi",
|
"name": "mdi",
|
||||||
"version": "1.7.22",
|
"version": "1.8.36",
|
||||||
"description": "Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection.",
|
"description": "Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection.",
|
||||||
"main": "preview.html",
|
"main": "preview.html",
|
||||||
"style": "css/materialdesignicons.css",
|
"style": "css/materialdesignicons.css",
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,10 +1,11 @@
|
|||||||
.#{$mdi-css-prefix}:before,
|
.#{$mdi-css-prefix}:before,
|
||||||
.#{$mdi-css-prefix}-set {
|
.#{$mdi-css-prefix}-set {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font: normal normal normal #{$mdi-font-size-base}/1 '#{$mdi-font-name}';
|
font: normal normal normal #{$mdi-font-size-base}/1 '#{$mdi-font-name}'; // shortening font declaration
|
||||||
font-size: inherit;
|
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||||
text-rendering: auto;
|
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||||
|
line-height: inherit;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
transform: translate(0, 0);
|
transform: translate(0, 0); // ensures no half-pixel rendering in firefox
|
||||||
}
|
}
|
@ -1,4 +1,3 @@
|
|||||||
// material design recommended icon sizes
|
|
||||||
$sizes: 18 24 36 48;
|
$sizes: 18 24 36 48;
|
||||||
@each $size in $sizes {
|
@each $size in $sizes {
|
||||||
.#{$mdi-css-prefix}-#{$size}px {
|
.#{$mdi-css-prefix}-#{$size}px {
|
||||||
@ -9,7 +8,6 @@ $sizes: 18 24 36 48;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// material design recommended icon opacity
|
|
||||||
.#{$mdi-css-prefix}-dark {
|
.#{$mdi-css-prefix}-dark {
|
||||||
color: rgba(0, 0, 0, 0.54);
|
color: rgba(0, 0, 0, 0.54);
|
||||||
&.mdi-inactive {
|
&.mdi-inactive {
|
||||||
@ -23,7 +21,6 @@ $sizes: 18 24 36 48;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// rotation
|
|
||||||
$degrees: 45 90 135 180 225 270 315;
|
$degrees: 45 90 135 180 225 270 315;
|
||||||
@each $degree in $degrees {
|
@each $degree in $degrees {
|
||||||
.#{$mdi-css-prefix}-rotate-#{$degree} {
|
.#{$mdi-css-prefix}-rotate-#{$degree} {
|
||||||
|
@ -3,7 +3,3 @@
|
|||||||
content: char($value);
|
content: char($value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.#{$mdi-css-prefix}-blank:before {
|
|
||||||
content: "\F68C";
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
@ -5,7 +5,7 @@ $mdi-font-weight: "regular";
|
|||||||
$mdi-font-path: "../fonts" !default;
|
$mdi-font-path: "../fonts" !default;
|
||||||
$mdi-font-size-base: 24px !default;
|
$mdi-font-size-base: 24px !default;
|
||||||
$mdi-css-prefix: mdi !default;
|
$mdi-css-prefix: mdi !default;
|
||||||
$mdi-version: "1.7.22" !default;
|
$mdi-version: "1.8.36" !default;
|
||||||
|
|
||||||
$mdi-icons: (
|
$mdi-icons: (
|
||||||
"access-point": F002,
|
"access-point": F002,
|
||||||
@ -18,6 +18,7 @@ $mdi-icons: (
|
|||||||
"account-check": F008,
|
"account-check": F008,
|
||||||
"account-circle": F009,
|
"account-circle": F009,
|
||||||
"account-convert": F00A,
|
"account-convert": F00A,
|
||||||
|
"account-edit": F6BB,
|
||||||
"account-key": F00B,
|
"account-key": F00B,
|
||||||
"account-location": F00C,
|
"account-location": F00C,
|
||||||
"account-minus": F00D,
|
"account-minus": F00D,
|
||||||
@ -56,7 +57,9 @@ $mdi-icons: (
|
|||||||
"alert-circle": F028,
|
"alert-circle": F028,
|
||||||
"alert-circle-outline": F5D6,
|
"alert-circle-outline": F5D6,
|
||||||
"alert-octagon": F029,
|
"alert-octagon": F029,
|
||||||
|
"alert-octagram": F6BC,
|
||||||
"alert-outline": F02A,
|
"alert-outline": F02A,
|
||||||
|
"all-inclusive": F6BD,
|
||||||
"alpha": F02B,
|
"alpha": F02B,
|
||||||
"alphabetical": F02C,
|
"alphabetical": F02C,
|
||||||
"altimeter": F5D7,
|
"altimeter": F5D7,
|
||||||
@ -69,6 +72,7 @@ $mdi-icons: (
|
|||||||
"android-debug-bridge": F033,
|
"android-debug-bridge": F033,
|
||||||
"android-studio": F034,
|
"android-studio": F034,
|
||||||
"angular": F6B1,
|
"angular": F6B1,
|
||||||
|
"angularjs": F6BE,
|
||||||
"animation": F5D8,
|
"animation": F5D8,
|
||||||
"apple": F035,
|
"apple": F035,
|
||||||
"apple-finder": F036,
|
"apple-finder": F036,
|
||||||
@ -81,7 +85,6 @@ $mdi-icons: (
|
|||||||
"apple-mobileme": F038,
|
"apple-mobileme": F038,
|
||||||
"apple-safari": F039,
|
"apple-safari": F039,
|
||||||
"application": F614,
|
"application": F614,
|
||||||
"appnet": F03A,
|
|
||||||
"apps": F03B,
|
"apps": F03B,
|
||||||
"archive": F03C,
|
"archive": F03C,
|
||||||
"arrange-bring-forward": F03D,
|
"arrange-bring-forward": F03D,
|
||||||
@ -98,6 +101,7 @@ $mdi-icons: (
|
|||||||
"arrow-down-bold-circle": F047,
|
"arrow-down-bold-circle": F047,
|
||||||
"arrow-down-bold-circle-outline": F048,
|
"arrow-down-bold-circle-outline": F048,
|
||||||
"arrow-down-bold-hexagon-outline": F049,
|
"arrow-down-bold-hexagon-outline": F049,
|
||||||
|
"arrow-down-box": F6BF,
|
||||||
"arrow-down-drop-circle": F04A,
|
"arrow-down-drop-circle": F04A,
|
||||||
"arrow-down-drop-circle-outline": F04B,
|
"arrow-down-drop-circle-outline": F04B,
|
||||||
"arrow-expand": F616,
|
"arrow-expand": F616,
|
||||||
@ -107,6 +111,7 @@ $mdi-icons: (
|
|||||||
"arrow-left-bold-circle": F04F,
|
"arrow-left-bold-circle": F04F,
|
||||||
"arrow-left-bold-circle-outline": F050,
|
"arrow-left-bold-circle-outline": F050,
|
||||||
"arrow-left-bold-hexagon-outline": F051,
|
"arrow-left-bold-hexagon-outline": F051,
|
||||||
|
"arrow-left-box": F6C0,
|
||||||
"arrow-left-drop-circle": F052,
|
"arrow-left-drop-circle": F052,
|
||||||
"arrow-left-drop-circle-outline": F053,
|
"arrow-left-drop-circle-outline": F053,
|
||||||
"arrow-right": F054,
|
"arrow-right": F054,
|
||||||
@ -114,6 +119,7 @@ $mdi-icons: (
|
|||||||
"arrow-right-bold-circle": F056,
|
"arrow-right-bold-circle": F056,
|
||||||
"arrow-right-bold-circle-outline": F057,
|
"arrow-right-bold-circle-outline": F057,
|
||||||
"arrow-right-bold-hexagon-outline": F058,
|
"arrow-right-bold-hexagon-outline": F058,
|
||||||
|
"arrow-right-box": F6C1,
|
||||||
"arrow-right-drop-circle": F059,
|
"arrow-right-drop-circle": F059,
|
||||||
"arrow-right-drop-circle-outline": F05A,
|
"arrow-right-drop-circle-outline": F05A,
|
||||||
"arrow-top-left": F05B,
|
"arrow-top-left": F05B,
|
||||||
@ -123,9 +129,11 @@ $mdi-icons: (
|
|||||||
"arrow-up-bold-circle": F05F,
|
"arrow-up-bold-circle": F05F,
|
||||||
"arrow-up-bold-circle-outline": F060,
|
"arrow-up-bold-circle-outline": F060,
|
||||||
"arrow-up-bold-hexagon-outline": F061,
|
"arrow-up-bold-hexagon-outline": F061,
|
||||||
|
"arrow-up-box": F6C2,
|
||||||
"arrow-up-drop-circle": F062,
|
"arrow-up-drop-circle": F062,
|
||||||
"arrow-up-drop-circle-outline": F063,
|
"arrow-up-drop-circle-outline": F063,
|
||||||
"assistant": F064,
|
"assistant": F064,
|
||||||
|
"asterisk": F6C3,
|
||||||
"at": F065,
|
"at": F065,
|
||||||
"attachment": F066,
|
"attachment": F066,
|
||||||
"audiobook": F067,
|
"audiobook": F067,
|
||||||
@ -210,6 +218,7 @@ $mdi-icons: (
|
|||||||
"blur-off": F0B7,
|
"blur-off": F0B7,
|
||||||
"blur-radial": F0B8,
|
"blur-radial": F0B8,
|
||||||
"bomb": F690,
|
"bomb": F690,
|
||||||
|
"bomb-off": F6C4,
|
||||||
"bone": F0B9,
|
"bone": F0B9,
|
||||||
"book": F0BA,
|
"book": F0BA,
|
||||||
"book-minus": F5D9,
|
"book-minus": F5D9,
|
||||||
@ -228,6 +237,7 @@ $mdi-icons: (
|
|||||||
"bookmark-plus-outline": F0C4,
|
"bookmark-plus-outline": F0C4,
|
||||||
"bookmark-remove": F0C6,
|
"bookmark-remove": F0C6,
|
||||||
"boombox": F5DC,
|
"boombox": F5DC,
|
||||||
|
"bootstrap": F6C5,
|
||||||
"border-all": F0C7,
|
"border-all": F0C7,
|
||||||
"border-bottom": F0C8,
|
"border-bottom": F0C8,
|
||||||
"border-color": F0C9,
|
"border-color": F0C9,
|
||||||
@ -315,6 +325,7 @@ $mdi-icons: (
|
|||||||
"cards": F638,
|
"cards": F638,
|
||||||
"cards-outline": F639,
|
"cards-outline": F639,
|
||||||
"cards-playing-outline": F63A,
|
"cards-playing-outline": F63A,
|
||||||
|
"cards-variant": F6C6,
|
||||||
"carrot": F10F,
|
"carrot": F10F,
|
||||||
"cart": F110,
|
"cart": F110,
|
||||||
"cart-off": F66B,
|
"cart-off": F66B,
|
||||||
@ -389,6 +400,7 @@ $mdi-icons: (
|
|||||||
"clipboard-arrow-down": F14A,
|
"clipboard-arrow-down": F14A,
|
||||||
"clipboard-arrow-left": F14B,
|
"clipboard-arrow-left": F14B,
|
||||||
"clipboard-check": F14C,
|
"clipboard-check": F14C,
|
||||||
|
"clipboard-flow": F6C7,
|
||||||
"clipboard-outline": F14D,
|
"clipboard-outline": F14D,
|
||||||
"clipboard-text": F14E,
|
"clipboard-text": F14E,
|
||||||
"clippy": F14F,
|
"clippy": F14F,
|
||||||
@ -407,6 +419,7 @@ $mdi-icons: (
|
|||||||
"close-network": F15B,
|
"close-network": F15B,
|
||||||
"close-octagon": F15C,
|
"close-octagon": F15C,
|
||||||
"close-octagon-outline": F15D,
|
"close-octagon-outline": F15D,
|
||||||
|
"close-outline": F6C8,
|
||||||
"closed-caption": F15E,
|
"closed-caption": F15E,
|
||||||
"cloud": F15F,
|
"cloud": F15F,
|
||||||
"cloud-check": F160,
|
"cloud-check": F160,
|
||||||
@ -434,6 +447,7 @@ $mdi-icons: (
|
|||||||
"code-tags-check": F693,
|
"code-tags-check": F693,
|
||||||
"codepen": F175,
|
"codepen": F175,
|
||||||
"coffee": F176,
|
"coffee": F176,
|
||||||
|
"coffee-outline": F6C9,
|
||||||
"coffee-to-go": F177,
|
"coffee-to-go": F177,
|
||||||
"coin": F178,
|
"coin": F178,
|
||||||
"coins": F694,
|
"coins": F694,
|
||||||
@ -460,6 +474,7 @@ $mdi-icons: (
|
|||||||
"compass-outline": F18C,
|
"compass-outline": F18C,
|
||||||
"console": F18D,
|
"console": F18D,
|
||||||
"contact-mail": F18E,
|
"contact-mail": F18E,
|
||||||
|
"contacts": F6CA,
|
||||||
"content-copy": F18F,
|
"content-copy": F18F,
|
||||||
"content-cut": F190,
|
"content-cut": F190,
|
||||||
"content-duplicate": F191,
|
"content-duplicate": F191,
|
||||||
@ -520,6 +535,7 @@ $mdi-icons: (
|
|||||||
"decimal-increase": F1BF,
|
"decimal-increase": F1BF,
|
||||||
"delete": F1C0,
|
"delete": F1C0,
|
||||||
"delete-circle": F682,
|
"delete-circle": F682,
|
||||||
|
"delete-empty": F6CB,
|
||||||
"delete-forever": F5E8,
|
"delete-forever": F5E8,
|
||||||
"delete-sweep": F5E9,
|
"delete-sweep": F5E9,
|
||||||
"delete-variant": F1C1,
|
"delete-variant": F1C1,
|
||||||
@ -575,6 +591,8 @@ $mdi-icons: (
|
|||||||
"duck": F1E5,
|
"duck": F1E5,
|
||||||
"dumbbell": F1E6,
|
"dumbbell": F1E6,
|
||||||
"earth": F1E7,
|
"earth": F1E7,
|
||||||
|
"earth-box": F6CC,
|
||||||
|
"earth-box-off": F6CD,
|
||||||
"earth-off": F1E8,
|
"earth-off": F1E8,
|
||||||
"edge": F1E9,
|
"edge": F1E9,
|
||||||
"eject": F1EA,
|
"eject": F1EA,
|
||||||
@ -582,6 +600,7 @@ $mdi-icons: (
|
|||||||
"elevation-rise": F1EC,
|
"elevation-rise": F1EC,
|
||||||
"elevator": F1ED,
|
"elevator": F1ED,
|
||||||
"email": F1EE,
|
"email": F1EE,
|
||||||
|
"email-alert": F6CE,
|
||||||
"email-open": F1EF,
|
"email-open": F1EF,
|
||||||
"email-open-outline": F5EF,
|
"email-open-outline": F5EF,
|
||||||
"email-outline": F1F0,
|
"email-outline": F1F0,
|
||||||
@ -616,6 +635,8 @@ $mdi-icons: (
|
|||||||
"export": F207,
|
"export": F207,
|
||||||
"eye": F208,
|
"eye": F208,
|
||||||
"eye-off": F209,
|
"eye-off": F209,
|
||||||
|
"eye-outline": F6CF,
|
||||||
|
"eye-outline-off": F6D0,
|
||||||
"eyedropper": F20A,
|
"eyedropper": F20A,
|
||||||
"eyedropper-variant": F20B,
|
"eyedropper-variant": F20B,
|
||||||
"face": F643,
|
"face": F643,
|
||||||
@ -626,7 +647,9 @@ $mdi-icons: (
|
|||||||
"factory": F20F,
|
"factory": F20F,
|
||||||
"fan": F210,
|
"fan": F210,
|
||||||
"fast-forward": F211,
|
"fast-forward": F211,
|
||||||
|
"fast-forward-outline": F6D1,
|
||||||
"fax": F212,
|
"fax": F212,
|
||||||
|
"feather": F6D2,
|
||||||
"ferry": F213,
|
"ferry": F213,
|
||||||
"file": F214,
|
"file": F214,
|
||||||
"file-chart": F215,
|
"file-chart": F215,
|
||||||
@ -666,6 +689,7 @@ $mdi-icons: (
|
|||||||
"filter-remove": F234,
|
"filter-remove": F234,
|
||||||
"filter-remove-outline": F235,
|
"filter-remove-outline": F235,
|
||||||
"filter-variant": F236,
|
"filter-variant": F236,
|
||||||
|
"find-replace": F6D3,
|
||||||
"fingerprint": F237,
|
"fingerprint": F237,
|
||||||
"fire": F238,
|
"fire": F238,
|
||||||
"firefox": F239,
|
"firefox": F239,
|
||||||
@ -679,6 +703,7 @@ $mdi-icons: (
|
|||||||
"flash": F241,
|
"flash": F241,
|
||||||
"flash-auto": F242,
|
"flash-auto": F242,
|
||||||
"flash-off": F243,
|
"flash-off": F243,
|
||||||
|
"flash-outline": F6D4,
|
||||||
"flash-red-eye": F67A,
|
"flash-red-eye": F67A,
|
||||||
"flashlight": F244,
|
"flashlight": F244,
|
||||||
"flashlight-off": F245,
|
"flashlight-off": F245,
|
||||||
@ -707,6 +732,7 @@ $mdi-icons: (
|
|||||||
"folder-remove": F258,
|
"folder-remove": F258,
|
||||||
"folder-star": F69C,
|
"folder-star": F69C,
|
||||||
"folder-upload": F259,
|
"folder-upload": F259,
|
||||||
|
"font-awesome": F03A,
|
||||||
"food": F25A,
|
"food": F25A,
|
||||||
"food-apple": F25B,
|
"food-apple": F25B,
|
||||||
"food-fork-drink": F5F2,
|
"food-fork-drink": F5F2,
|
||||||
@ -728,6 +754,7 @@ $mdi-icons: (
|
|||||||
"format-float-left": F268,
|
"format-float-left": F268,
|
||||||
"format-float-none": F269,
|
"format-float-none": F269,
|
||||||
"format-float-right": F26A,
|
"format-float-right": F26A,
|
||||||
|
"format-font": F6D5,
|
||||||
"format-header-1": F26B,
|
"format-header-1": F26B,
|
||||||
"format-header-2": F26C,
|
"format-header-2": F26C,
|
||||||
"format-header-3": F26D,
|
"format-header-3": F26D,
|
||||||
@ -750,9 +777,12 @@ $mdi-icons: (
|
|||||||
"format-list-bulleted": F279,
|
"format-list-bulleted": F279,
|
||||||
"format-list-bulleted-type": F27A,
|
"format-list-bulleted-type": F27A,
|
||||||
"format-list-numbers": F27B,
|
"format-list-numbers": F27B,
|
||||||
|
"format-page-break": F6D6,
|
||||||
"format-paint": F27C,
|
"format-paint": F27C,
|
||||||
"format-paragraph": F27D,
|
"format-paragraph": F27D,
|
||||||
|
"format-pilcrow": F6D7,
|
||||||
"format-quote": F27E,
|
"format-quote": F27E,
|
||||||
|
"format-rotate-90": F6A9,
|
||||||
"format-section": F69E,
|
"format-section": F69E,
|
||||||
"format-size": F27F,
|
"format-size": F27F,
|
||||||
"format-strikethrough": F280,
|
"format-strikethrough": F280,
|
||||||
@ -783,6 +813,8 @@ $mdi-icons: (
|
|||||||
"function": F295,
|
"function": F295,
|
||||||
"gamepad": F296,
|
"gamepad": F296,
|
||||||
"gamepad-variant": F297,
|
"gamepad-variant": F297,
|
||||||
|
"garage": F6D8,
|
||||||
|
"garage-open": F6D9,
|
||||||
"gas-cylinder": F647,
|
"gas-cylinder": F647,
|
||||||
"gas-station": F298,
|
"gas-station": F298,
|
||||||
"gate": F299,
|
"gate": F299,
|
||||||
@ -797,6 +829,7 @@ $mdi-icons: (
|
|||||||
"git": F2A2,
|
"git": F2A2,
|
||||||
"github-box": F2A3,
|
"github-box": F2A3,
|
||||||
"github-circle": F2A4,
|
"github-circle": F2A4,
|
||||||
|
"github-face": F6DA,
|
||||||
"glass-flute": F2A5,
|
"glass-flute": F2A5,
|
||||||
"glass-mug": F2A6,
|
"glass-mug": F2A6,
|
||||||
"glass-stange": F2A7,
|
"glass-stange": F2A7,
|
||||||
@ -818,9 +851,11 @@ $mdi-icons: (
|
|||||||
"google-drive": F2B6,
|
"google-drive": F2B6,
|
||||||
"google-earth": F2B7,
|
"google-earth": F2B7,
|
||||||
"google-glass": F2B8,
|
"google-glass": F2B8,
|
||||||
|
"google-keep": F6DB,
|
||||||
"google-maps": F5F5,
|
"google-maps": F5F5,
|
||||||
"google-nearby": F2B9,
|
"google-nearby": F2B9,
|
||||||
"google-pages": F2BA,
|
"google-pages": F2BA,
|
||||||
|
"google-photos": F6DC,
|
||||||
"google-physical-web": F2BB,
|
"google-physical-web": F2BB,
|
||||||
"google-play": F2BC,
|
"google-play": F2BC,
|
||||||
"google-plus": F2BD,
|
"google-plus": F2BD,
|
||||||
@ -851,12 +886,16 @@ $mdi-icons: (
|
|||||||
"heart-box": F2D2,
|
"heart-box": F2D2,
|
||||||
"heart-box-outline": F2D3,
|
"heart-box-outline": F2D3,
|
||||||
"heart-broken": F2D4,
|
"heart-broken": F2D4,
|
||||||
|
"heart-half-outline": F6DD,
|
||||||
|
"heart-half-part": F6DE,
|
||||||
|
"heart-half-part-outline": F6DF,
|
||||||
"heart-outline": F2D5,
|
"heart-outline": F2D5,
|
||||||
"heart-pulse": F5F6,
|
"heart-pulse": F5F6,
|
||||||
"help": F2D6,
|
"help": F2D6,
|
||||||
"help-circle": F2D7,
|
"help-circle": F2D7,
|
||||||
"help-circle-outline": F625,
|
"help-circle-outline": F625,
|
||||||
"hexagon": F2D8,
|
"hexagon": F2D8,
|
||||||
|
"hexagon-multiple": F6E0,
|
||||||
"hexagon-outline": F2D9,
|
"hexagon-outline": F2D9,
|
||||||
"highway": F5F7,
|
"highway": F5F7,
|
||||||
"history": F2DA,
|
"history": F2DA,
|
||||||
@ -866,6 +905,8 @@ $mdi-icons: (
|
|||||||
"home-modern": F2DD,
|
"home-modern": F2DD,
|
||||||
"home-outline": F6A0,
|
"home-outline": F6A0,
|
||||||
"home-variant": F2DE,
|
"home-variant": F2DE,
|
||||||
|
"hook": F6E1,
|
||||||
|
"hook-off": F6E2,
|
||||||
"hops": F2DF,
|
"hops": F2DF,
|
||||||
"hospital": F2E0,
|
"hospital": F2E0,
|
||||||
"hospital-building": F2E1,
|
"hospital-building": F2E1,
|
||||||
@ -904,6 +945,7 @@ $mdi-icons: (
|
|||||||
"inbox-arrow-down": F2FB,
|
"inbox-arrow-down": F2FB,
|
||||||
"inbox-arrow-up": F3D1,
|
"inbox-arrow-up": F3D1,
|
||||||
"incognito": F5F9,
|
"incognito": F5F9,
|
||||||
|
"infinity": F6E3,
|
||||||
"information": F2FC,
|
"information": F2FC,
|
||||||
"information-outline": F2FD,
|
"information-outline": F2FD,
|
||||||
"information-variant": F64E,
|
"information-variant": F64E,
|
||||||
@ -950,9 +992,12 @@ $mdi-icons: (
|
|||||||
"language-php": F31F,
|
"language-php": F31F,
|
||||||
"language-python": F320,
|
"language-python": F320,
|
||||||
"language-python-text": F321,
|
"language-python-text": F321,
|
||||||
|
"language-swift": F6E4,
|
||||||
|
"language-typescript": F6E5,
|
||||||
"laptop": F322,
|
"laptop": F322,
|
||||||
"laptop-chromebook": F323,
|
"laptop-chromebook": F323,
|
||||||
"laptop-mac": F324,
|
"laptop-mac": F324,
|
||||||
|
"laptop-off": F6E6,
|
||||||
"laptop-windows": F325,
|
"laptop-windows": F325,
|
||||||
"lastfm": F326,
|
"lastfm": F326,
|
||||||
"launch": F327,
|
"launch": F327,
|
||||||
@ -971,6 +1016,8 @@ $mdi-icons: (
|
|||||||
"library-music": F333,
|
"library-music": F333,
|
||||||
"library-plus": F334,
|
"library-plus": F334,
|
||||||
"lightbulb": F335,
|
"lightbulb": F335,
|
||||||
|
"lightbulb-on": F6E7,
|
||||||
|
"lightbulb-on-outline": F6E8,
|
||||||
"lightbulb-outline": F336,
|
"lightbulb-outline": F336,
|
||||||
"link": F337,
|
"link": F337,
|
||||||
"link-off": F338,
|
"link-off": F338,
|
||||||
@ -983,20 +1030,25 @@ $mdi-icons: (
|
|||||||
"lock-open": F33F,
|
"lock-open": F33F,
|
||||||
"lock-open-outline": F340,
|
"lock-open-outline": F340,
|
||||||
"lock-outline": F341,
|
"lock-outline": F341,
|
||||||
|
"lock-pattern": F6E9,
|
||||||
"lock-plus": F5FB,
|
"lock-plus": F5FB,
|
||||||
"login": F342,
|
"login": F342,
|
||||||
"login-variant": F5FC,
|
"login-variant": F5FC,
|
||||||
"logout": F343,
|
"logout": F343,
|
||||||
"logout-variant": F5FD,
|
"logout-variant": F5FD,
|
||||||
"looks": F344,
|
"looks": F344,
|
||||||
|
"loop": F6EA,
|
||||||
"loupe": F345,
|
"loupe": F345,
|
||||||
"lumx": F346,
|
"lumx": F346,
|
||||||
"magnet": F347,
|
"magnet": F347,
|
||||||
"magnet-on": F348,
|
"magnet-on": F348,
|
||||||
"magnify": F349,
|
"magnify": F349,
|
||||||
"magnify-minus": F34A,
|
"magnify-minus": F34A,
|
||||||
|
"magnify-minus-outline": F6EB,
|
||||||
"magnify-plus": F34B,
|
"magnify-plus": F34B,
|
||||||
|
"magnify-plus-outline": F6EC,
|
||||||
"mail-ru": F34C,
|
"mail-ru": F34C,
|
||||||
|
"mailbox": F6ED,
|
||||||
"map": F34D,
|
"map": F34D,
|
||||||
"map-marker": F34E,
|
"map-marker": F34E,
|
||||||
"map-marker-circle": F34F,
|
"map-marker-circle": F34F,
|
||||||
@ -1014,6 +1066,7 @@ $mdi-icons: (
|
|||||||
"math-compass": F358,
|
"math-compass": F358,
|
||||||
"matrix": F628,
|
"matrix": F628,
|
||||||
"maxcdn": F359,
|
"maxcdn": F359,
|
||||||
|
"medical-bag": F6EE,
|
||||||
"medium": F35A,
|
"medium": F35A,
|
||||||
"memory": F35B,
|
"memory": F35B,
|
||||||
"menu": F35C,
|
"menu": F35C,
|
||||||
@ -1034,6 +1087,8 @@ $mdi-icons: (
|
|||||||
"message-processing": F366,
|
"message-processing": F366,
|
||||||
"message-reply": F367,
|
"message-reply": F367,
|
||||||
"message-reply-text": F368,
|
"message-reply-text": F368,
|
||||||
|
"message-settings": F6EF,
|
||||||
|
"message-settings-variant": F6F0,
|
||||||
"message-text": F369,
|
"message-text": F369,
|
||||||
"message-text-outline": F36A,
|
"message-text-outline": F36A,
|
||||||
"message-video": F36B,
|
"message-video": F36B,
|
||||||
@ -1049,6 +1104,7 @@ $mdi-icons: (
|
|||||||
"minecraft": F373,
|
"minecraft": F373,
|
||||||
"minus": F374,
|
"minus": F374,
|
||||||
"minus-box": F375,
|
"minus-box": F375,
|
||||||
|
"minus-box-outline": F6F1,
|
||||||
"minus-circle": F376,
|
"minus-circle": F376,
|
||||||
"minus-circle-outline": F377,
|
"minus-circle-outline": F377,
|
||||||
"minus-network": F378,
|
"minus-network": F378,
|
||||||
@ -1085,6 +1141,10 @@ $mdi-icons: (
|
|||||||
"needle": F391,
|
"needle": F391,
|
||||||
"nest-protect": F392,
|
"nest-protect": F392,
|
||||||
"nest-thermostat": F393,
|
"nest-thermostat": F393,
|
||||||
|
"network": F6F2,
|
||||||
|
"network-download": F6F3,
|
||||||
|
"network-question": F6F4,
|
||||||
|
"network-upload": F6F5,
|
||||||
"new-box": F394,
|
"new-box": F394,
|
||||||
"newspaper": F395,
|
"newspaper": F395,
|
||||||
"nfc": F396,
|
"nfc": F396,
|
||||||
@ -1099,6 +1159,7 @@ $mdi-icons: (
|
|||||||
"note-plus-outline": F39D,
|
"note-plus-outline": F39D,
|
||||||
"note-text": F39E,
|
"note-text": F39E,
|
||||||
"notification-clear-all": F39F,
|
"notification-clear-all": F39F,
|
||||||
|
"npm": F6F6,
|
||||||
"nuke": F6A3,
|
"nuke": F6A3,
|
||||||
"numeric": F3A0,
|
"numeric": F3A0,
|
||||||
"numeric-0-box": F3A1,
|
"numeric-0-box": F3A1,
|
||||||
@ -1134,10 +1195,12 @@ $mdi-icons: (
|
|||||||
"numeric-9-plus-box": F3BF,
|
"numeric-9-plus-box": F3BF,
|
||||||
"numeric-9-plus-box-multiple-outline": F3C0,
|
"numeric-9-plus-box-multiple-outline": F3C0,
|
||||||
"numeric-9-plus-box-outline": F3C1,
|
"numeric-9-plus-box-outline": F3C1,
|
||||||
|
"nut": F6F7,
|
||||||
"nutrition": F3C2,
|
"nutrition": F3C2,
|
||||||
"oar": F67B,
|
"oar": F67B,
|
||||||
"octagon": F3C3,
|
"octagon": F3C3,
|
||||||
"octagon-outline": F3C4,
|
"octagon-outline": F3C4,
|
||||||
|
"octagram": F6F8,
|
||||||
"odnoklassniki": F3C5,
|
"odnoklassniki": F3C5,
|
||||||
"office": F3C6,
|
"office": F3C6,
|
||||||
"oil": F3C7,
|
"oil": F3C7,
|
||||||
@ -1159,6 +1222,11 @@ $mdi-icons: (
|
|||||||
"package-variant-closed": F3D7,
|
"package-variant-closed": F3D7,
|
||||||
"page-first": F600,
|
"page-first": F600,
|
||||||
"page-last": F601,
|
"page-last": F601,
|
||||||
|
"page-layout-body": F6F9,
|
||||||
|
"page-layout-footer": F6FA,
|
||||||
|
"page-layout-header": F6FB,
|
||||||
|
"page-layout-sidebar-left": F6FC,
|
||||||
|
"page-layout-sidebar-right": F6FD,
|
||||||
"palette": F3D8,
|
"palette": F3D8,
|
||||||
"palette-advanced": F3D9,
|
"palette-advanced": F3D9,
|
||||||
"panda": F3DA,
|
"panda": F3DA,
|
||||||
@ -1182,8 +1250,11 @@ $mdi-icons: (
|
|||||||
"pencil": F3EB,
|
"pencil": F3EB,
|
||||||
"pencil-box": F3EC,
|
"pencil-box": F3EC,
|
||||||
"pencil-box-outline": F3ED,
|
"pencil-box-outline": F3ED,
|
||||||
|
"pencil-circle": F6FE,
|
||||||
"pencil-lock": F3EE,
|
"pencil-lock": F3EE,
|
||||||
"pencil-off": F3EF,
|
"pencil-off": F3EF,
|
||||||
|
"pentagon": F6FF,
|
||||||
|
"pentagon-outline": F700,
|
||||||
"percent": F3F0,
|
"percent": F3F0,
|
||||||
"pharmacy": F3F1,
|
"pharmacy": F3F1,
|
||||||
"phone": F3F2,
|
"phone": F3F2,
|
||||||
@ -1207,12 +1278,14 @@ $mdi-icons: (
|
|||||||
"piano": F67C,
|
"piano": F67C,
|
||||||
"pig": F401,
|
"pig": F401,
|
||||||
"pill": F402,
|
"pill": F402,
|
||||||
|
"pillar": F701,
|
||||||
"pin": F403,
|
"pin": F403,
|
||||||
"pin-off": F404,
|
"pin-off": F404,
|
||||||
"pine-tree": F405,
|
"pine-tree": F405,
|
||||||
"pine-tree-box": F406,
|
"pine-tree-box": F406,
|
||||||
"pinterest": F407,
|
"pinterest": F407,
|
||||||
"pinterest-box": F408,
|
"pinterest-box": F408,
|
||||||
|
"pistol": F702,
|
||||||
"pizza": F409,
|
"pizza": F409,
|
||||||
"plane-shield": F6BA,
|
"plane-shield": F6BA,
|
||||||
"play": F40A,
|
"play": F40A,
|
||||||
@ -1230,11 +1303,13 @@ $mdi-icons: (
|
|||||||
"plex": F6B9,
|
"plex": F6B9,
|
||||||
"plus": F415,
|
"plus": F415,
|
||||||
"plus-box": F416,
|
"plus-box": F416,
|
||||||
|
"plus-box-outline": F703,
|
||||||
"plus-circle": F417,
|
"plus-circle": F417,
|
||||||
"plus-circle-multiple-outline": F418,
|
"plus-circle-multiple-outline": F418,
|
||||||
"plus-circle-outline": F419,
|
"plus-circle-outline": F419,
|
||||||
"plus-network": F41A,
|
"plus-network": F41A,
|
||||||
"plus-one": F41B,
|
"plus-one": F41B,
|
||||||
|
"plus-outline": F704,
|
||||||
"pocket": F41C,
|
"pocket": F41C,
|
||||||
"pokeball": F41D,
|
"pokeball": F41D,
|
||||||
"polaroid": F41E,
|
"polaroid": F41E,
|
||||||
@ -1252,11 +1327,13 @@ $mdi-icons: (
|
|||||||
"power-plug-off": F6A5,
|
"power-plug-off": F6A5,
|
||||||
"power-settings": F426,
|
"power-settings": F426,
|
||||||
"power-socket": F427,
|
"power-socket": F427,
|
||||||
|
"prescription": F705,
|
||||||
"presentation": F428,
|
"presentation": F428,
|
||||||
"presentation-play": F429,
|
"presentation-play": F429,
|
||||||
"printer": F42A,
|
"printer": F42A,
|
||||||
"printer-3d": F42B,
|
"printer-3d": F42B,
|
||||||
"printer-alert": F42C,
|
"printer-alert": F42C,
|
||||||
|
"printer-settings": F706,
|
||||||
"priority-high": F603,
|
"priority-high": F603,
|
||||||
"priority-low": F604,
|
"priority-low": F604,
|
||||||
"professional-hexagon": F42D,
|
"professional-hexagon": F42D,
|
||||||
@ -1287,6 +1364,7 @@ $mdi-icons: (
|
|||||||
"ray-start-end": F444,
|
"ray-start-end": F444,
|
||||||
"ray-vertex": F445,
|
"ray-vertex": F445,
|
||||||
"rdio": F446,
|
"rdio": F446,
|
||||||
|
"react": F707,
|
||||||
"read": F447,
|
"read": F447,
|
||||||
"readability": F448,
|
"readability": F448,
|
||||||
"receipt": F449,
|
"receipt": F449,
|
||||||
@ -1313,15 +1391,19 @@ $mdi-icons: (
|
|||||||
"reproduction": F45C,
|
"reproduction": F45C,
|
||||||
"resize-bottom-right": F45D,
|
"resize-bottom-right": F45D,
|
||||||
"responsive": F45E,
|
"responsive": F45E,
|
||||||
|
"restart": F708,
|
||||||
"restore": F6A7,
|
"restore": F6A7,
|
||||||
"rewind": F45F,
|
"rewind": F45F,
|
||||||
|
"rewind-outline": F709,
|
||||||
|
"rhombus": F70A,
|
||||||
|
"rhombus-outline": F70B,
|
||||||
"ribbon": F460,
|
"ribbon": F460,
|
||||||
"road": F461,
|
"road": F461,
|
||||||
"road-variant": F462,
|
"road-variant": F462,
|
||||||
"robot": F6A8,
|
"robot": F6A8,
|
||||||
"rocket": F463,
|
"rocket": F463,
|
||||||
|
"roomba": F70C,
|
||||||
"rotate-3d": F464,
|
"rotate-3d": F464,
|
||||||
"rotate-90": F6A9,
|
|
||||||
"rotate-left": F465,
|
"rotate-left": F465,
|
||||||
"rotate-left-variant": F466,
|
"rotate-left-variant": F466,
|
||||||
"rotate-right": F467,
|
"rotate-right": F467,
|
||||||
@ -1333,7 +1415,8 @@ $mdi-icons: (
|
|||||||
"rss": F46B,
|
"rss": F46B,
|
||||||
"rss-box": F46C,
|
"rss-box": F46C,
|
||||||
"ruler": F46D,
|
"ruler": F46D,
|
||||||
"run": F46E,
|
"run": F70D,
|
||||||
|
"run-fast": F46E,
|
||||||
"sale": F46F,
|
"sale": F46F,
|
||||||
"satellite": F470,
|
"satellite": F470,
|
||||||
"satellite-variant": F471,
|
"satellite-variant": F471,
|
||||||
@ -1349,6 +1432,7 @@ $mdi-icons: (
|
|||||||
"script": F478,
|
"script": F478,
|
||||||
"sd": F479,
|
"sd": F479,
|
||||||
"seal": F47A,
|
"seal": F47A,
|
||||||
|
"search-web": F70E,
|
||||||
"seat-flat": F47B,
|
"seat-flat": F47B,
|
||||||
"seat-flat-angled": F47C,
|
"seat-flat-angled": F47C,
|
||||||
"seat-individual-suite": F47D,
|
"seat-individual-suite": F47D,
|
||||||
@ -1388,6 +1472,8 @@ $mdi-icons: (
|
|||||||
"shield-outline": F499,
|
"shield-outline": F499,
|
||||||
"shopping": F49A,
|
"shopping": F49A,
|
||||||
"shopping-music": F49B,
|
"shopping-music": F49B,
|
||||||
|
"shovel": F70F,
|
||||||
|
"shovel-off": F710,
|
||||||
"shredder": F49C,
|
"shredder": F49C,
|
||||||
"shuffle": F49D,
|
"shuffle": F49D,
|
||||||
"shuffle-disabled": F49E,
|
"shuffle-disabled": F49E,
|
||||||
@ -1396,6 +1482,11 @@ $mdi-icons: (
|
|||||||
"sigma-lower": F62B,
|
"sigma-lower": F62B,
|
||||||
"sign-caution": F4A1,
|
"sign-caution": F4A1,
|
||||||
"signal": F4A2,
|
"signal": F4A2,
|
||||||
|
"signal-2g": F711,
|
||||||
|
"signal-3g": F712,
|
||||||
|
"signal-4g": F713,
|
||||||
|
"signal-hspa": F714,
|
||||||
|
"signal-hspa-plus": F715,
|
||||||
"signal-variant": F60A,
|
"signal-variant": F60A,
|
||||||
"silverware": F4A3,
|
"silverware": F4A3,
|
||||||
"silverware-fork": F4A4,
|
"silverware-fork": F4A4,
|
||||||
@ -1422,6 +1513,7 @@ $mdi-icons: (
|
|||||||
"smoking": F4B4,
|
"smoking": F4B4,
|
||||||
"smoking-off": F4B5,
|
"smoking-off": F4B5,
|
||||||
"snapchat": F4B6,
|
"snapchat": F4B6,
|
||||||
|
"snowflake": F716,
|
||||||
"snowman": F4B7,
|
"snowman": F4B7,
|
||||||
"soccer": F4B8,
|
"soccer": F4B8,
|
||||||
"sofa": F4B9,
|
"sofa": F4B9,
|
||||||
@ -1434,11 +1526,19 @@ $mdi-icons: (
|
|||||||
"sort-variant": F4BF,
|
"sort-variant": F4BF,
|
||||||
"soundcloud": F4C0,
|
"soundcloud": F4C0,
|
||||||
"source-branch": F62C,
|
"source-branch": F62C,
|
||||||
|
"source-commit": F717,
|
||||||
|
"source-commit-end": F718,
|
||||||
|
"source-commit-end-local": F719,
|
||||||
|
"source-commit-local": F71A,
|
||||||
|
"source-commit-next-local": F71B,
|
||||||
|
"source-commit-start": F71C,
|
||||||
|
"source-commit-start-next-local": F71D,
|
||||||
"source-fork": F4C1,
|
"source-fork": F4C1,
|
||||||
"source-merge": F62D,
|
"source-merge": F62D,
|
||||||
"source-pull": F4C2,
|
"source-pull": F4C2,
|
||||||
"speaker": F4C3,
|
"speaker": F4C3,
|
||||||
"speaker-off": F4C4,
|
"speaker-off": F4C4,
|
||||||
|
"speaker-wireless": F71E,
|
||||||
"speedometer": F4C5,
|
"speedometer": F4C5,
|
||||||
"spellcheck": F4C6,
|
"spellcheck": F4C6,
|
||||||
"spotify": F4C7,
|
"spotify": F4C7,
|
||||||
@ -1449,6 +1549,7 @@ $mdi-icons: (
|
|||||||
"square-inc-cash": F4CB,
|
"square-inc-cash": F4CB,
|
||||||
"stackexchange": F60B,
|
"stackexchange": F60B,
|
||||||
"stackoverflow": F4CC,
|
"stackoverflow": F4CC,
|
||||||
|
"stadium": F71F,
|
||||||
"stairs": F4CD,
|
"stairs": F4CD,
|
||||||
"star": F4CE,
|
"star": F4CE,
|
||||||
"star-circle": F4CF,
|
"star-circle": F4CF,
|
||||||
@ -1476,6 +1577,7 @@ $mdi-icons: (
|
|||||||
"subway-variant": F4DF,
|
"subway-variant": F4DF,
|
||||||
"sunglasses": F4E0,
|
"sunglasses": F4E0,
|
||||||
"surround-sound": F5C5,
|
"surround-sound": F5C5,
|
||||||
|
"svg": F720,
|
||||||
"swap-horizontal": F4E1,
|
"swap-horizontal": F4E1,
|
||||||
"swap-vertical": F4E2,
|
"swap-vertical": F4E2,
|
||||||
"swim": F4E3,
|
"swim": F4E3,
|
||||||
@ -1505,6 +1607,8 @@ $mdi-icons: (
|
|||||||
"tag-heart": F68A,
|
"tag-heart": F68A,
|
||||||
"tag-multiple": F4FB,
|
"tag-multiple": F4FB,
|
||||||
"tag-outline": F4FC,
|
"tag-outline": F4FC,
|
||||||
|
"tag-plus": F721,
|
||||||
|
"tag-remove": F722,
|
||||||
"tag-text-outline": F4FD,
|
"tag-text-outline": F4FD,
|
||||||
"target": F4FE,
|
"target": F4FE,
|
||||||
"taxi": F4FF,
|
"taxi": F4FF,
|
||||||
@ -1536,7 +1640,9 @@ $mdi-icons: (
|
|||||||
"ticket": F516,
|
"ticket": F516,
|
||||||
"ticket-account": F517,
|
"ticket-account": F517,
|
||||||
"ticket-confirmation": F518,
|
"ticket-confirmation": F518,
|
||||||
|
"ticket-percent": F723,
|
||||||
"tie": F519,
|
"tie": F519,
|
||||||
|
"tilde": F724,
|
||||||
"timelapse": F51A,
|
"timelapse": F51A,
|
||||||
"timer": F51B,
|
"timer": F51B,
|
||||||
"timer-10": F51C,
|
"timer-10": F51C,
|
||||||
@ -1565,6 +1671,7 @@ $mdi-icons: (
|
|||||||
"transfer": F530,
|
"transfer": F530,
|
||||||
"transit-transfer": F6AD,
|
"transit-transfer": F6AD,
|
||||||
"translate": F5CA,
|
"translate": F5CA,
|
||||||
|
"treasure-chest": F725,
|
||||||
"tree": F531,
|
"tree": F531,
|
||||||
"trello": F532,
|
"trello": F532,
|
||||||
"trending-down": F533,
|
"trending-down": F533,
|
||||||
@ -1579,6 +1686,7 @@ $mdi-icons: (
|
|||||||
"trophy-variant-outline": F53C,
|
"trophy-variant-outline": F53C,
|
||||||
"truck": F53D,
|
"truck": F53D,
|
||||||
"truck-delivery": F53E,
|
"truck-delivery": F53E,
|
||||||
|
"truck-trailer": F726,
|
||||||
"tshirt-crew": F53F,
|
"tshirt-crew": F53F,
|
||||||
"tshirt-v": F540,
|
"tshirt-v": F540,
|
||||||
"tumblr": F541,
|
"tumblr": F541,
|
||||||
@ -1638,7 +1746,9 @@ $mdi-icons: (
|
|||||||
"view-headline": F571,
|
"view-headline": F571,
|
||||||
"view-list": F572,
|
"view-list": F572,
|
||||||
"view-module": F573,
|
"view-module": F573,
|
||||||
|
"view-parallel": F727,
|
||||||
"view-quilt": F574,
|
"view-quilt": F574,
|
||||||
|
"view-sequential": F728,
|
||||||
"view-stream": F575,
|
"view-stream": F575,
|
||||||
"view-week": F576,
|
"view-week": F576,
|
||||||
"vimeo": F577,
|
"vimeo": F577,
|
||||||
@ -1662,6 +1772,7 @@ $mdi-icons: (
|
|||||||
"wallet-membership": F586,
|
"wallet-membership": F586,
|
||||||
"wallet-travel": F587,
|
"wallet-travel": F587,
|
||||||
"wan": F588,
|
"wan": F588,
|
||||||
|
"washing-machine": F729,
|
||||||
"watch": F589,
|
"watch": F589,
|
||||||
"watch-export": F58A,
|
"watch-export": F58A,
|
||||||
"watch-import": F58B,
|
"watch-import": F58B,
|
||||||
@ -1691,6 +1802,7 @@ $mdi-icons: (
|
|||||||
"web": F59F,
|
"web": F59F,
|
||||||
"webcam": F5A0,
|
"webcam": F5A0,
|
||||||
"webhook": F62F,
|
"webhook": F62F,
|
||||||
|
"webpack": F72A,
|
||||||
"wechat": F611,
|
"wechat": F611,
|
||||||
"weight": F5A1,
|
"weight": F5A1,
|
||||||
"weight-kilogram": F5A2,
|
"weight-kilogram": F5A2,
|
||||||
@ -1700,9 +1812,11 @@ $mdi-icons: (
|
|||||||
"white-balance-incandescent": F5A6,
|
"white-balance-incandescent": F5A6,
|
||||||
"white-balance-iridescent": F5A7,
|
"white-balance-iridescent": F5A7,
|
||||||
"white-balance-sunny": F5A8,
|
"white-balance-sunny": F5A8,
|
||||||
|
"widgets": F72B,
|
||||||
"wifi": F5A9,
|
"wifi": F5A9,
|
||||||
"wifi-off": F5AA,
|
"wifi-off": F5AA,
|
||||||
"wii": F5AB,
|
"wii": F5AB,
|
||||||
|
"wiiu": F72C,
|
||||||
"wikipedia": F5AC,
|
"wikipedia": F5AC,
|
||||||
"window-close": F5AD,
|
"window-close": F5AD,
|
||||||
"window-closed": F5AE,
|
"window-closed": F5AE,
|
||||||
|
Loading…
Reference in New Issue
Block a user