forked from treehouse/mastodon
parent
be6ef1947e
commit
ac54292d69
|
@ -42,6 +42,15 @@ export default class LocalSettingsPage extends React.PureComponent {
|
|||
>
|
||||
<FormattedMessage id='settings.show_reply_counter' defaultMessage='Display an estimate of the reply count' />
|
||||
</LocalSettingsPageItem>
|
||||
<LocalSettingsPageItem
|
||||
settings={settings}
|
||||
item={['hicolor_privacy_icons']}
|
||||
id='mastodon-settings--hicolor_privacy_icons'
|
||||
onChange={onChange}
|
||||
>
|
||||
<FormattedMessage id='settings.hicolor_privacy_icons' defaultMessage='High color privacy icons' />
|
||||
<span className='hint'><FormattedMessage id='settings.hicolor_privacy_icons.hint' defaultMessage="Display privacy icons in bright and easily distinguishable colors" /></span>
|
||||
</LocalSettingsPageItem>
|
||||
<section>
|
||||
<h2><FormattedMessage id='settings.notifications_opts' defaultMessage='Notifications options' /></h2>
|
||||
<LocalSettingsPageItem
|
||||
|
|
|
@ -68,6 +68,7 @@ const mapStateToProps = state => ({
|
|||
dropdownMenuIsOpen: state.getIn(['dropdown_menu', 'openId']) !== null,
|
||||
unreadNotifications: state.getIn(['notifications', 'unread']),
|
||||
showFaviconBadge: state.getIn(['local_settings', 'notifications', 'favicon_badge']),
|
||||
hicolorPrivacyIcons: state.getIn(['local_settings', 'hicolor_privacy_icons']),
|
||||
});
|
||||
|
||||
const keyMap = {
|
||||
|
@ -446,6 +447,7 @@ export default class UI extends React.Component {
|
|||
'wide': isWide,
|
||||
'system-font': this.props.systemFontUi,
|
||||
'navbar-under': navbarUnder,
|
||||
'hicolor-privacy-icons': this.props.hicolorPrivacyIcons,
|
||||
});
|
||||
|
||||
const handlers = {
|
||||
|
|
|
@ -18,6 +18,7 @@ const initialState = ImmutableMap({
|
|||
confirm_before_clearing_draft: true,
|
||||
preselect_on_reply: true,
|
||||
inline_preview_cards: true,
|
||||
hicolor_privacy_icons: true,
|
||||
content_warnings : ImmutableMap({
|
||||
auto_unfold : false,
|
||||
filter : null,
|
||||
|
|
|
@ -11,3 +11,25 @@ $emojis-requiring-outlines: '8ball' 'ant' 'back' 'black_circle' 'black_heart' 'b
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hicolor-privacy-icons {
|
||||
.status__visibility-icon.fa-globe,
|
||||
.composer--options--dropdown--content--item .fa-globe {
|
||||
color: #1976D2;
|
||||
}
|
||||
|
||||
.status__visibility-icon.fa-unlock,
|
||||
.composer--options--dropdown--content--item .fa-unlock {
|
||||
color: #388E3C;
|
||||
}
|
||||
|
||||
.status__visibility-icon.fa-lock,
|
||||
.composer--options--dropdown--content--item .fa-lock {
|
||||
color: #FFA000;
|
||||
}
|
||||
|
||||
.status__visibility-icon.fa-envelope,
|
||||
.composer--options--dropdown--content--item .fa-envelope {
|
||||
color: #D32F2F;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue