kopia lustrzana https://github.com/nextcloud/social
Add longtext to popover menu
Signed-off-by: Julius Härtl <jus@bitgrid.net>pull/18/head
rodzic
1f93c0a03a
commit
25aeb5b4b4
|
@ -234,7 +234,7 @@
|
|||
.tribute-container li.highlight .account,
|
||||
.tribute-container li:hover .account {
|
||||
color: var(--color-primary-text) !important;
|
||||
opacity: .9;
|
||||
opacity: .6;
|
||||
}
|
||||
.message .mention {
|
||||
color: var(--color-primary-element);
|
||||
|
@ -309,22 +309,26 @@ export default {
|
|||
{
|
||||
action: () => { this.switchType('public') },
|
||||
icon: this.visibilityIconClass('public'),
|
||||
text: 'Public'
|
||||
text: t('social', 'Public'),
|
||||
longtext: t('social', 'Post to public timelines')
|
||||
},
|
||||
{
|
||||
action: () => { this.switchType('direct') },
|
||||
icon: this.visibilityIconClass('direct'),
|
||||
text: 'Direct'
|
||||
text: t('social', 'Direct'),
|
||||
longtext: t('social', 'Post to mentioned users only')
|
||||
},
|
||||
{
|
||||
action: () => { this.switchType('followers') },
|
||||
icon: this.visibilityIconClass('followers'),
|
||||
text: 'Followers'
|
||||
text: t('social', 'Followers'),
|
||||
longtext: t('social', 'Post to followers only')
|
||||
},
|
||||
{
|
||||
action: () => { this.switchType('unlisted') },
|
||||
icon: this.visibilityIconClass('unlisted'),
|
||||
text: 'Unlisted'
|
||||
text: t('social', 'Unlisted'),
|
||||
longtext: t('social', 'Do not post to public timelines')
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Ładowanie…
Reference in New Issue