mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 06:58:06 +01:00
[Glitch] Replace unlock-alt icon with unlock
Port 6513f6c953
to glitch-soc
This commit is contained in:
parent
e87bd6d94a
commit
2e93f87c9f
6 changed files with 7 additions and 7 deletions
|
@ -85,7 +85,7 @@ export default class Account extends ImmutablePureComponent {
|
||||||
if (requested) {
|
if (requested) {
|
||||||
buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />;
|
buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />;
|
||||||
} else if (blocking) {
|
} else if (blocking) {
|
||||||
buttons = <IconButton active icon='unlock-alt' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.handleBlock} />;
|
buttons = <IconButton active icon='unlock' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.handleBlock} />;
|
||||||
} else if (muting) {
|
} else if (muting) {
|
||||||
let hidingNotificationsButton;
|
let hidingNotificationsButton;
|
||||||
if (account.getIn(['relationship', 'muting_notifications'])) {
|
if (account.getIn(['relationship', 'muting_notifications'])) {
|
||||||
|
|
|
@ -32,7 +32,7 @@ export default class Account extends ImmutablePureComponent {
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div className='domain__buttons'>
|
<div className='domain__buttons'>
|
||||||
<IconButton active icon='unlock-alt' title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={this.handleDomainUnblock} />
|
<IconButton active icon='unlock' title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={this.handleDomainUnblock} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -25,7 +25,7 @@ export default class VisibilityIcon extends ImmutablePureComponent {
|
||||||
|
|
||||||
const visibilityClass = {
|
const visibilityClass = {
|
||||||
public: 'globe',
|
public: 'globe',
|
||||||
unlisted: 'unlock-alt',
|
unlisted: 'unlock',
|
||||||
private: 'lock',
|
private: 'lock',
|
||||||
direct: 'envelope',
|
direct: 'envelope',
|
||||||
}[visibility];
|
}[visibility];
|
||||||
|
|
|
@ -88,7 +88,7 @@ export default class Header extends ImmutablePureComponent {
|
||||||
} else if (account.getIn(['relationship', 'blocking'])) {
|
} else if (account.getIn(['relationship', 'blocking'])) {
|
||||||
actionBtn = (
|
actionBtn = (
|
||||||
<div className='account--action-button'>
|
<div className='account--action-button'>
|
||||||
<IconButton size={26} icon='unlock-alt' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} />
|
<IconButton size={26} icon='unlock' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -197,7 +197,7 @@ export default class ComposerOptions extends React.PureComponent {
|
||||||
text: <FormattedMessage {...messages.public_short} />,
|
text: <FormattedMessage {...messages.public_short} />,
|
||||||
},
|
},
|
||||||
unlisted: {
|
unlisted: {
|
||||||
icon: 'unlock-alt',
|
icon: 'unlock',
|
||||||
meta: <FormattedMessage {...messages.unlisted_long} />,
|
meta: <FormattedMessage {...messages.unlisted_long} />,
|
||||||
name: 'unlisted',
|
name: 'unlisted',
|
||||||
text: <FormattedMessage {...messages.unlisted_short} />,
|
text: <FormattedMessage {...messages.unlisted_short} />,
|
||||||
|
|
|
@ -58,7 +58,7 @@ export default function ComposerPublisher ({
|
||||||
<Icon
|
<Icon
|
||||||
icon={{
|
icon={{
|
||||||
public: 'globe',
|
public: 'globe',
|
||||||
unlisted: 'unlock-alt',
|
unlisted: 'unlock',
|
||||||
private: 'lock',
|
private: 'lock',
|
||||||
direct: 'envelope',
|
direct: 'envelope',
|
||||||
}[sideArm]}
|
}[sideArm]}
|
||||||
|
@ -82,7 +82,7 @@ export default function ComposerPublisher ({
|
||||||
direct: 'envelope',
|
direct: 'envelope',
|
||||||
private: 'lock',
|
private: 'lock',
|
||||||
public: 'globe',
|
public: 'globe',
|
||||||
unlisted: 'unlock-alt',
|
unlisted: 'unlock',
|
||||||
}[privacy]}
|
}[privacy]}
|
||||||
/>
|
/>
|
||||||
{' '}
|
{' '}
|
||||||
|
|
Loading…
Reference in a new issue