diff --git a/horizontal-chat/settings/settings.json b/horizontal-chat/settings/settings.json index a730674..06daf9f 100644 --- a/horizontal-chat/settings/settings.json +++ b/horizontal-chat/settings/settings.json @@ -202,7 +202,7 @@ { "id": "showStreamlabsDonations", "label": "Streamlabs Tips", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -210,7 +210,7 @@ { "id": "showStreamElementsTips", "label": "StreamElements Tips", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -218,7 +218,7 @@ { "id": "showPatreonMemberships", "label": "Patreon Memberships", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -226,7 +226,7 @@ { "id": "showKofiDonations", "label": "Ko-fi Donations", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -234,7 +234,7 @@ { "id": "showTipeeeStreamDonations", "label": "TipeeeStream Donations", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -242,7 +242,7 @@ { "id": "showFourthwallAlerts", "label": "Fourthwall Alerts", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" diff --git a/multichat-overlay/settings/settings.json b/multichat-overlay/settings/settings.json index 52ee4c1..3d92d68 100644 --- a/multichat-overlay/settings/settings.json +++ b/multichat-overlay/settings/settings.json @@ -278,7 +278,7 @@ { "id": "showStreamlabsDonations", "label": "Streamlabs Tips", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -286,7 +286,7 @@ { "id": "showStreamElementsTips", "label": "StreamElements Tips", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -294,7 +294,7 @@ { "id": "showPatreonMemberships", "label": "Patreon Memberships", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -302,7 +302,7 @@ { "id": "showKofiDonations", "label": "Ko-fi Donations", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -310,7 +310,7 @@ { "id": "showTipeeeStreamDonations", "label": "TipeeeStream Donations", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" @@ -318,7 +318,7 @@ { "id": "showFourthwallAlerts", "label": "Fourthwall Alerts", - "description": "", + "description": "Click to connect", "type": "checkbox", "defaultValue": true, "group": "Which donation messages do you want to see?" diff --git a/widget-customizer/script.js b/widget-customizer/script.js index e174c29..cc4fe4f 100644 --- a/widget-customizer/script.js +++ b/widget-customizer/script.js @@ -8,7 +8,7 @@ document.addEventListener('DOMContentLoaded', () => { const saveButton = document.getElementById('save-settings'); fetch(settingsJson) - //fetch('settings.json') + //fetch('../multichat-overlay/settings/settings.json') .then(response => response.json()) .then(data => { const groupedSettings = {}; @@ -42,7 +42,7 @@ document.addEventListener('DOMContentLoaded', () => { if (setting.description) { const description = document.createElement('p'); - description.textContent = setting.description; + description.innerHTML = setting.description; labelDescriptionDiv.appendChild(description); } diff --git a/widget-customizer/style.css b/widget-customizer/style.css index 6809ef0..ec62a7e 100644 --- a/widget-customizer/style.css +++ b/widget-customizer/style.css @@ -91,7 +91,8 @@ h2 { display: block; } -.setting-item p { +.setting-item p, +.setting-item a { font-size: 0.9em; font-weight: 300; /* color: #666; */ @@ -99,6 +100,10 @@ h2 { margin-bottom: 0; } +a { + font-weight: 500 !important; +} + .setting-item-content { display: flex; align-items: center;