add tangerineui, update readme
This commit is contained in:
parent
91a04ddcf8
commit
e45fb9867e
15 changed files with 8058 additions and 1 deletions
|
|
@ -2,7 +2,12 @@
|
|||
|
||||
Fork of a [fork](https://iceshrimp.dev/blueb/Chuckya-fe-standalone) of a [fork](https://iceshrimp.dev/kopper/Chuckya-fe-standalone), mainly just for Synth branding and customizations. This is a standalone [Chuckya](https://github.com/TheEssem/mastodon) <small>([Mastodon](https://joinmastodon.org))</small> Frontend that works for either [Iceshrimp](https://iceshrimp.dev) or [Sharkey](https://joinsharkey.org) (Or any other software/instance that supports the Mastodon API - but mainly focused on Synth Download's fediverse instances.). Compatibility best achieved with Iceshrimp.
|
||||
|
||||
The Chuckya frontend itself is slightly modified (the mascot is replaced, titles/names changed to help differentiate itself), main edits and customizations are around the login pages and such.
|
||||
We modify and add a few things here:
|
||||
|
||||
- Synth mascot
|
||||
- Login page edits and improvements
|
||||
- Theme switcher (from [GoToSocial's Masto-FE fork](https://codeberg.org/superseriousbusiness/masto-fe-standalone))
|
||||
- [TangerineUI](https://github.com/nileane/TangerineUI-for-Mastodon/tree/legacy) Theme
|
||||
|
||||
Below is the original mess of combined README's, so far.
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,12 @@ const ThemeComponent = ({ children }) => {
|
|||
case theme === 'mastodon-modern-contrast':
|
||||
href = '/packs/css/skins/glitch/modern-contrast.css';
|
||||
break;
|
||||
case theme === 'tangerine-ui':
|
||||
href = '/packs/css/skins/glitch/tangerineui.css';
|
||||
break;
|
||||
case theme === 'tangerine-ui-purple':
|
||||
href = '/packs/css/skins/glitch/tangerineui-purple.css';
|
||||
break;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -57,6 +57,8 @@ class LocalSettingsPage extends PureComponent {
|
|||
{ value: 'mastodon-modern-light', message: 'Mastodon Modern - Light' },
|
||||
{ value: 'mastodon-modern', message: 'Mastodon Modern - Dark' },
|
||||
{ value: 'mastodon-modern-contrast', message: 'Mastodon Modern - High contrast' },
|
||||
{ value: 'tangerine-ui', message: '[Unstable] Tangerine UI' },
|
||||
{ value: 'tangerine-ui-purple', message: '[Unstable] Tangerine UI (Purple)' },
|
||||
]}
|
||||
onChange={onChange}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
@import 'flavours/glitch/styles/tangerineui-purple';
|
||||
4
app/javascript/skins/glitch/tangerineui-purple/names.yml
Normal file
4
app/javascript/skins/glitch/tangerineui-purple/names.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
en:
|
||||
skins:
|
||||
vanilla:
|
||||
tangerineui-purple: Tangerine UI (Purple)
|
||||
1
app/javascript/skins/glitch/tangerineui/common.scss
Normal file
1
app/javascript/skins/glitch/tangerineui/common.scss
Normal file
|
|
@ -0,0 +1 @@
|
|||
@import 'flavours/glitch/styles/tangerineui';
|
||||
4
app/javascript/skins/glitch/tangerineui/names.yml
Normal file
4
app/javascript/skins/glitch/tangerineui/names.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
en:
|
||||
skins:
|
||||
vanilla:
|
||||
tangerineui: Tangerine UI
|
||||
|
|
@ -0,0 +1 @@
|
|||
@import 'styles/tangerineui-purple';
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
en:
|
||||
skins:
|
||||
vanilla:
|
||||
tangerineui-purple: Tangerine UI (Purple)
|
||||
1
app/javascript/skins/vanilla/tangerineui/common.scss
Normal file
1
app/javascript/skins/vanilla/tangerineui/common.scss
Normal file
|
|
@ -0,0 +1 @@
|
|||
@import 'styles/tangerineui';
|
||||
4
app/javascript/skins/vanilla/tangerineui/names.yml
Normal file
4
app/javascript/skins/vanilla/tangerineui/names.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
en:
|
||||
skins:
|
||||
vanilla:
|
||||
tangerineui: Tangerine UI
|
||||
2
app/javascript/styles/tangerineui-purple.scss
Normal file
2
app/javascript/styles/tangerineui-purple.scss
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
@import 'application';
|
||||
@import 'tangerineui-purple/layout-single-column.scss';
|
||||
4010
app/javascript/styles/tangerineui-purple/layout-single-column.scss
Normal file
4010
app/javascript/styles/tangerineui-purple/layout-single-column.scss
Normal file
File diff suppressed because it is too large
Load diff
2
app/javascript/styles/tangerineui.scss
Normal file
2
app/javascript/styles/tangerineui.scss
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
@import 'application';
|
||||
@import 'tangerineui/layout-single-column.scss';
|
||||
4010
app/javascript/styles/tangerineui/layout-single-column.scss
Normal file
4010
app/javascript/styles/tangerineui/layout-single-column.scss
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue