mirror of
https://github.com/mue/mue.git
synced 2026-07-22 08:17:28 +02:00
feat: exclude modal, various fixes
Co-authored-by: Alex Sparkes <alexsparkes@gmail.com>
This commit is contained in:
@@ -273,6 +273,7 @@
|
||||
flex-flow: column;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
user-select: none;
|
||||
|
||||
img {
|
||||
width: 200px;
|
||||
|
||||
@@ -230,3 +230,7 @@ h4 {
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.customcss {
|
||||
color: orange !important;
|
||||
}
|
||||
@@ -102,7 +102,7 @@ export default class AdvancedSettings extends PureComponent {
|
||||
'modals.main.settings.sections.advanced.custom_css_subtitle',
|
||||
)}
|
||||
>
|
||||
<Text name="customcss" textarea={true} category="other" />
|
||||
<Text name="customcss" textarea={true} category="other" />
|
||||
</SettingsItem>
|
||||
<SettingsItem
|
||||
title={variables.getMessage('modals.main.settings.sections.experimental.title')}
|
||||
|
||||
@@ -231,7 +231,7 @@ export default class QuickLinks extends PureComponent {
|
||||
<Dropdown
|
||||
label={variables.getMessage('modals.main.settings.sections.quicklinks.style')}
|
||||
name="quickLinksStyle"
|
||||
category="other"
|
||||
category="quicklinks"
|
||||
>
|
||||
<option value="icon">
|
||||
{variables.getMessage('modals.main.settings.sections.quicklinks.options.icon')}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { memo } from 'react';
|
||||
import { FaDiscord, FaTwitter } from 'react-icons/fa';
|
||||
import { SiKofi, SiPatreon } from 'react-icons/si';
|
||||
import { SiGithubsponsors, SiOpencollective } from 'react-icons/si';
|
||||
|
||||
function QuicklinksSkeleton() {
|
||||
return (
|
||||
@@ -13,10 +13,10 @@ function QuicklinksSkeleton() {
|
||||
<FaTwitter />
|
||||
</div>
|
||||
<div>
|
||||
<SiKofi />
|
||||
<SiGithubsponsors />
|
||||
</div>
|
||||
<div>
|
||||
<SiPatreon />
|
||||
<SiOpencollective />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -137,6 +137,10 @@ function Tab({ label, currentTab, onClick, navbarTab }) {
|
||||
icon = <Collections />;
|
||||
break;
|
||||
|
||||
case variables.getMessage('modals.main.loading'):
|
||||
mue = true;
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user