mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-16 10:06:54 +00:00
requested changes done
This commit is contained in:
parent
3a4171cabe
commit
d60ee47e1a
3 changed files with 8 additions and 8 deletions
|
@ -18,13 +18,12 @@ export default class ViewerCards extends Module {
|
||||||
this.last_login = null;
|
this.last_login = null;
|
||||||
|
|
||||||
this.settings.add('chat.viewer-cards.hide-gift-subscribe-button', {
|
this.settings.add('chat.viewer-cards.hide-gift-subscribe-button', {
|
||||||
default: '',
|
default: false,
|
||||||
ui: {
|
ui: {
|
||||||
path: 'Chat > Viewer Cards >> Appearance',
|
path: 'Chat > Viewer Cards >> Appearance',
|
||||||
title: 'Hide the gift-subscribe-button on the viewer card',
|
title: 'Hide "Gift a Sub" button on viewer cards',
|
||||||
component: 'setting-check-box'
|
component: 'setting-check-box'
|
||||||
},
|
},
|
||||||
changed: val => this.css_tweaks.toggle('hide-gift-subscribe-button', val)
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.settings.add('chat.viewer-cards.highlight-chat', {
|
this.settings.add('chat.viewer-cards.highlight-chat', {
|
||||||
|
@ -62,7 +61,9 @@ export default class ViewerCards extends Module {
|
||||||
onEnable() {
|
onEnable() {
|
||||||
this.chat.context.on('changed:chat.viewer-cards.highlight-chat', this.refreshStyle, this);
|
this.chat.context.on('changed:chat.viewer-cards.highlight-chat', this.refreshStyle, this);
|
||||||
this.chat.context.on('changed:chat.viewer-cards.color', this.refreshStyle, this);
|
this.chat.context.on('changed:chat.viewer-cards.color', this.refreshStyle, this);
|
||||||
this.css_tweaks.toggle('hide-gift-subscribe-button', this.settings.get('chat.viewer-cards.hide-gift-subscribe-button'));
|
this.chat.context.getChanges('chat.viewer-cards.hide-gift-subscribe-button', val =>
|
||||||
|
this.css_tweaks.toggleHide('hide-gift-subscribe-button', val)
|
||||||
|
);
|
||||||
this.on('..:update-colors', this.refreshStyle, this);
|
this.on('..:update-colors', this.refreshStyle, this);
|
||||||
|
|
||||||
this.ViewerCard.on('mount', this.updateCard, this);
|
this.ViewerCard.on('mount', this.updateCard, this);
|
||||||
|
|
|
@ -46,7 +46,9 @@ const CLASSES = {
|
||||||
'not-live-bar': 'div[data-test-selector="non-live-video-banner-layout"]',
|
'not-live-bar': 'div[data-test-selector="non-live-video-banner-layout"]',
|
||||||
'channel-live-ind': '.channel-header__user .tw-channel-status-text-indicator,.channel-info-content .tw-halo__indicator',
|
'channel-live-ind': '.channel-header__user .tw-channel-status-text-indicator,.channel-info-content .tw-halo__indicator',
|
||||||
'celebration': 'body .celebration__overlay',
|
'celebration': 'body .celebration__overlay',
|
||||||
'mod-view': '.chat-input__buttons-container a[href*="/moderator"]'
|
'mod-view': '.chat-input__buttons-container a[href*="/moderator"]',
|
||||||
|
|
||||||
|
'hide-gift-subscribe-button': 'button[data-test-selector="gift-subscribe-button"]'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
button[data-test-selector="gift-subscribe-button"] {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue