mirror of
https://github.com/encounter/decomp.dev.git
synced 2026-07-10 03:18:48 -07:00
@@ -0,0 +1,3 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
||||||
|
<path d="M2.79 12.395v5.14H2v-5.93h19.21v-4.35H2v-.79h20v5.93z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 158 B |
@@ -208,6 +208,7 @@ pub enum Platform {
|
|||||||
GC, // 2001
|
GC, // 2001
|
||||||
Xbox, // 2001
|
Xbox, // 2001
|
||||||
DS, // 2004
|
DS, // 2004
|
||||||
|
PSP, // 2004
|
||||||
Xbox360, // 2005
|
Xbox360, // 2005
|
||||||
Wii, // 2006
|
Wii, // 2006
|
||||||
_3DS, // 2011
|
_3DS, // 2011
|
||||||
@@ -223,6 +224,7 @@ pub const ALL_PLATFORMS: &[Platform] = &[
|
|||||||
Platform::GC,
|
Platform::GC,
|
||||||
Platform::Xbox,
|
Platform::Xbox,
|
||||||
Platform::DS,
|
Platform::DS,
|
||||||
|
Platform::PSP,
|
||||||
Platform::Xbox360,
|
Platform::Xbox360,
|
||||||
Platform::Wii,
|
Platform::Wii,
|
||||||
Platform::_3DS,
|
Platform::_3DS,
|
||||||
@@ -240,6 +242,7 @@ impl Platform {
|
|||||||
Self::GC => "gc",
|
Self::GC => "gc",
|
||||||
Self::Xbox => "xbox",
|
Self::Xbox => "xbox",
|
||||||
Self::DS => "nds",
|
Self::DS => "nds",
|
||||||
|
Self::PSP => "psp",
|
||||||
Self::Xbox360 => "xbox360",
|
Self::Xbox360 => "xbox360",
|
||||||
Self::Wii => "wii",
|
Self::Wii => "wii",
|
||||||
Self::_3DS => "3ds",
|
Self::_3DS => "3ds",
|
||||||
@@ -257,6 +260,7 @@ impl Platform {
|
|||||||
Platform::GC => "GameCube",
|
Platform::GC => "GameCube",
|
||||||
Platform::Xbox => "Xbox",
|
Platform::Xbox => "Xbox",
|
||||||
Platform::DS => "Nintendo DS",
|
Platform::DS => "Nintendo DS",
|
||||||
|
Platform::PSP => "PlayStation Portable",
|
||||||
Platform::Xbox360 => "Xbox 360",
|
Platform::Xbox360 => "Xbox 360",
|
||||||
Platform::Wii => "Wii",
|
Platform::Wii => "Wii",
|
||||||
Platform::_3DS => "Nintendo 3DS",
|
Platform::_3DS => "Nintendo 3DS",
|
||||||
@@ -278,6 +282,7 @@ impl FromStr for Platform {
|
|||||||
"gc" => Ok(Self::GC),
|
"gc" => Ok(Self::GC),
|
||||||
"xbox" => Ok(Self::Xbox),
|
"xbox" => Ok(Self::Xbox),
|
||||||
"nds" => Ok(Self::DS),
|
"nds" => Ok(Self::DS),
|
||||||
|
"psp" => Ok(Self::PSP),
|
||||||
"xbox360" => Ok(Self::Xbox360),
|
"xbox360" => Ok(Self::Xbox360),
|
||||||
"wii" => Ok(Self::Wii),
|
"wii" => Ok(Self::Wii),
|
||||||
"3ds" => Ok(Self::_3DS),
|
"3ds" => Ok(Self::_3DS),
|
||||||
|
|||||||
@@ -181,6 +181,7 @@ $breakpoints: (
|
|||||||
.icon-3ds:before { content: '\ea09'; }
|
.icon-3ds:before { content: '\ea09'; }
|
||||||
.icon-xbox:before { content: '\ea0a'; }
|
.icon-xbox:before { content: '\ea0a'; }
|
||||||
.icon-win32:before { content: '\ea0b'; }
|
.icon-win32:before { content: '\ea0b'; }
|
||||||
|
.icon-psp:before { content: '\ea0c'; }
|
||||||
|
|
||||||
// Override the tooltip component
|
// Override the tooltip component
|
||||||
[data-tooltip]:not(a, button, input) {
|
[data-tooltip]:not(a, button, input) {
|
||||||
|
|||||||
Reference in New Issue
Block a user