Add changes from prod to master (#837)
* redo 6346b5b * Fix incorrect caps * Fix reduced motion
This commit is contained in:
parent
212bb33142
commit
d5ffede5ea
@ -212,7 +212,7 @@
|
||||
class="tab iconified-button"
|
||||
@click.native="isBrowseMenuOpen = false"
|
||||
>
|
||||
<span>Data packs</span>
|
||||
<span>Data Packs</span>
|
||||
</NuxtLink>
|
||||
<NuxtLink
|
||||
:tabindex="isBrowseMenuOpen ? 0 : -1"
|
||||
@ -228,7 +228,7 @@
|
||||
class="tab iconified-button"
|
||||
@click.native="isBrowseMenuOpen = false"
|
||||
>
|
||||
<span>Resource packs</span>
|
||||
<span>Resource Packs</span>
|
||||
</NuxtLink>
|
||||
<NuxtLink
|
||||
:tabindex="isBrowseMenuOpen ? 0 : -1"
|
||||
|
||||
@ -178,12 +178,16 @@ export default {
|
||||
},
|
||||
licenseId() {
|
||||
let id = ''
|
||||
if (this.nonSpdxLicense || this.license.short === 'All-Rights-Reserved')
|
||||
if (
|
||||
(this.nonSpdxLicense && this.license.friendly === 'Custom') ||
|
||||
this.license.short === 'All-Rights-Reserved'
|
||||
)
|
||||
id += 'LicenseRef-'
|
||||
id += this.license.short
|
||||
if (this.license.requiresOnlyOrLater)
|
||||
id += this.allowOrLater ? 'or-later' : '-only'
|
||||
if (this.nonSpdxLicense) id.replaceAll(' ', '-')
|
||||
if (this.nonSpdxLicense && this.license.short === 'Custom')
|
||||
id.replaceAll(' ', '-')
|
||||
return id
|
||||
},
|
||||
defaultLicenses() {
|
||||
|
||||
@ -744,7 +744,7 @@ export default {
|
||||
animation: scroll 100s linear infinite;
|
||||
|
||||
@media (prefers-reduced-motion) {
|
||||
animation-play-state: paused;
|
||||
animation-play-state: paused !important;
|
||||
}
|
||||
|
||||
@keyframes scroll {
|
||||
@ -1250,7 +1250,7 @@ export default {
|
||||
animation: slide 10s infinite;
|
||||
|
||||
@media (prefers-reduced-motion) {
|
||||
animation-play-state: paused;
|
||||
animation-play-state: paused !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user