Merge branch 'master' of github.com:Ocelot-Social-Community/Ocelot-Social into brand-reformer-network-first-step

Conflicts:
	webapp/constants/metadata.js
This commit is contained in:
Wolfgang Huß 2024-10-24 17:12:52 +02:00
commit ae4dc66e97
4 changed files with 6 additions and 12 deletions

View File

@ -28,14 +28,6 @@ $color-yellow: rgb(245, 196, 0);
$color-yellow-active: rgb(255, 206, 10); $color-yellow-active: rgb(255, 206, 10);
$color-yellow-inverse: rgb(255, 252, 240); $color-yellow-inverse: rgb(255, 252, 240);
/**
* @tokens Theme
* @presenter Color
*/
// main color in general. e.g. the color in the background of the app that is visible behind the transparent iPhone status bar to name one use case, or the current color of SVGs to name another use case
$theme-color: $color-primary;
/** /**
* @tokens Color Neutral * @tokens Color Neutral
* @presenter Color * @presenter Color

View File

@ -1,9 +1,10 @@
import metadata from './metadata.js' import metadata from './metadata.js'
const { APPLICATION_NAME, APPLICATION_SHORT_NAME, APPLICATION_DESCRIPTION } = metadata const { APPLICATION_NAME, APPLICATION_SHORT_NAME, APPLICATION_DESCRIPTION, THEME_COLOR } = metadata
export default { export default {
name: APPLICATION_NAME, name: APPLICATION_NAME,
short_name: APPLICATION_SHORT_NAME, short_name: APPLICATION_SHORT_NAME,
description: APPLICATION_DESCRIPTION, description: APPLICATION_DESCRIPTION,
theme_color: '$theme-color', theme_color: THEME_COLOR,
lang: 'en', lang: 'en',
} }

View File

@ -6,4 +6,5 @@ export default {
COOKIE_NAME: 'reformer-network-token', COOKIE_NAME: 'reformer-network-token',
ORGANIZATION_NAME: 'Stichting Rudulin', ORGANIZATION_NAME: 'Stichting Rudulin',
ORGANIZATION_JURISDICTION: 'Amsterdam', ORGANIZATION_JURISDICTION: 'Amsterdam',
THEME_COLOR: 'rgb(23, 181, 63)', // $color-primary as the main color in general. e.g. the color in the background of the app that is visible behind the transparent iPhone status bar to name one use case, or the current color of SVGs to name another use case
} }

View File

@ -26,14 +26,14 @@
/> />
</ds-flex-item> </ds-flex-item>
<ds-flex-item class="notifications-footer-button" :width="{ base: 'auto' }" centered> <ds-flex-item class="notifications-footer-button" :width="{ base: 'auto' }" centered>
<ds-button <base-button
primary primary
:disabled="unreadNotificationsCount === 0" :disabled="unreadNotificationsCount === 0"
@click="markAllAsRead" @click="markAllAsRead"
data-test="markAllAsRead-button" data-test="markAllAsRead-button"
> >
{{ $t('notifications.markAllAsRead') }} {{ $t('notifications.markAllAsRead') }}
</ds-button> </base-button>
</ds-flex-item> </ds-flex-item>
</ds-flex> </ds-flex>
</base-card> </base-card>