43 Commits

Author SHA1 Message Date
0b6f383a63 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-07-17 17:33:59 -04:00
b043e1e9c4 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-07-16 15:02:04 -04:00
274a95ab74 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-07-11 08:27:03 -04:00
9868b82aca Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-07-08 17:53:22 -04:00
87aa17b4b9 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-07-05 18:16:01 -04:00
236fe7c561 edit header text color for emoji picker 2024-07-02 17:29:25 -04:00
904fc79123 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-06-30 17:58:33 -04:00
c8bdbc5040 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-06-28 14:28:35 -04:00
b2666cc2d3 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-06-26 11:31:45 -04:00
6f8f167d19 slightly better vh for mobile devices 2024-06-23 14:24:56 -04:00
c77dbbb22a emoji picker styling 2024-06-23 13:35:11 -04:00
951080eb4a change default --font-size 2024-06-23 13:11:29 -04:00
9a4859955c fix duplicate CSS rule 2024-06-23 13:06:54 -04:00
806437070b apply custom css from peertube in code 2024-06-23 13:06:25 -04:00
8e7ca2f986 revert to variable for textarea background color 2024-06-23 13:04:46 -04:00
1ec4ac77ce try making this easier on myself 2024-06-23 13:03:25 -04:00
946aad93e4 remove erroneous styling 2024-06-22 16:57:02 -04:00
794a97fbdd larger emojis in chat 2024-06-22 16:47:32 -04:00
a75e8af1ad fix input box style 2024-06-22 16:13:34 -04:00
ed9853fcbb fuck it dood 2024-06-22 16:08:43 -04:00
bc1ddbd6c4 suggestbox styling 2024-06-22 16:05:47 -04:00
f4eade1358 maybe do the styling for anchor elements in chat 2024-06-22 15:38:27 -04:00
f40eb064b0 test larger chat message sizes 2024-06-22 15:33:29 -04:00
739cc5e9c8 make emojis a little bigger, href styling 2024-06-22 11:40:23 -04:00
74ab01a5c4 links in messages, restore original converse-muc-message-form 2024-06-22 11:26:57 -04:00
bd8155c164 tablet sizing, slightly increase mobile 2024-06-22 11:22:18 -04:00
89b60013fe remove input styling, change tablet sizing 2024-06-22 11:15:46 -04:00
42bd732ebb test better sizing and media queries 2024-06-22 10:42:39 -04:00
009d84ef4f Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-06-22 10:38:48 -04:00
cb52a55895 bump version 2024-06-20 17:45:44 -04:00
4148444e91 Merge branch 'main' of https://github.com/JohnXLivingston/peertube-plugin-livechat 2024-06-20 17:45:31 -04:00
de14b95f9a better send button 2024-06-19 21:52:15 -04:00
4f80119c83 slightly edit send button style 2024-06-19 21:36:15 -04:00
80b2093202 livechat message form formatting 2024-06-19 21:00:18 -04:00
3d4afc4341 edit chat text area size 2024-06-19 20:39:46 -04:00
49a87237ec better sizing for mobile 2024-06-19 20:15:45 -04:00
0737e14472 better sizing for mobile 2024-06-19 19:52:55 -04:00
226ea38e4d better sizing for mobile 2024-06-19 19:34:40 -04:00
559fe731e0 update package json 2024-06-19 19:24:27 -04:00
e8eb56d0b7 fix dumb nigger shit 2024-06-19 19:02:36 -04:00
1b97366cd8 fix dumb nigger shit 2024-06-19 18:19:19 -04:00
1f3eee9889 better mobile device sizing 2024-06-19 17:56:09 -04:00
772c1c1d14 better sizing for mobile and desktop devices 2024-06-19 17:43:09 -04:00
5 changed files with 82 additions and 20 deletions

View File

@ -28,6 +28,57 @@
height: 100%; height: 100%;
converse-muc { converse-muc {
min-height: max(30vh, 200px); min-height: max(58vh, 400px);
} }
} }
// /* Media query for mobile devices */
// @media only screen and (max-width: 767px) {
// #peertube-plugin-livechat-container converse-root {
// converse-muc {
// min-height: 58vh;
// /* 100vh - 30vh for video = 70vh remaining */
// }
// }
// }
// /* Media query for tablets in portrait mode */
// @media only screen and (min-width: 768px) and (max-width: 1023px) {
// #peertube-plugin-livechat-container converse-root {
// converse-muc {
// min-height: 25vh;
// /* Slightly less to account for other elements */
// }
// }
// }
// /* Media query for tablets in landscape mode */
// @media only screen and (min-width: 1024px) and (max-width: 1279px) {
// #peertube-plugin-livechat-container converse-root {
// converse-muc {
// min-height: 25vh;
// /* Assuming more height can be used */
// }
// }
// }
/* Media query for desktops */
@media only screen and (min-width: 1280px) {
#peertube-plugin-livechat-container converse-root {
converse-muc {
height: inherit;
/* Full desktop experience */
}
}
}
/* custom toolbar CSS */
.send-button {
border-radius: 0.25rem !important;
}
.send-button:hover {
background-color: #0067c1 !important;
}

View File

@ -52,15 +52,16 @@
.emoji-picker__header { .emoji-picker__header {
color: var(--peertube-main-background); color: var(--peertube-main-background);
background-color: var(--peertube-main-foreground); background-color: var(--peertube-main-background);
ul { ul {
.emoji-category { .emoji-category {
color: var(--peertube-main-background); color: var(--peertube-main-background);
background-color: var(--peertube-main-foreground); background-color: #2d2d2d;
border-bottom: 1px solid var(--peertube-main-foreground);
a { a {
color: currentcolor; color: white;
} }
&.picked { &.picked {
@ -134,17 +135,19 @@
// Changing size for emojis, to have bigger custom emojis // Changing size for emojis, to have bigger custom emojis
img.emoji { img.emoji {
width: unset !important; width: 3.5rem !important;
height: unset !important; height: 3.5rem !important;
max-height: 3em !important; // and no max-width // max-height: 4.25em !important; // and no max-width
} }
// underline links in chat messages // underline links in chat messages
a[href] { a[href] {
text-decoration: underline; text-decoration: none !important;
color: #f57200 !important;
&:hover { &:hover {
text-decoration: underline; text-decoration: underline !important;
color: #D16100 !important;
} }
} }
} }
@ -188,6 +191,12 @@
} }
} }
/* NCTV custom */
.emoji-category__heading {
color: white !important;
}
// Bigger occupants sidebar when width is not big enough. // Bigger occupants sidebar when width is not big enough.
@media screen and (max-width: 576px) { @media screen and (max-width: 576px) {
.chatroom .box-flyout .chatroom-body .occupants { .chatroom .box-flyout .chatroom-body .occupants {

View File

@ -64,8 +64,8 @@ body.converse-embedded converse-root.theme-peertube {
--message-avatar-height: 36px; --message-avatar-height: 36px;
--chat-background-color: var(--peertube-main-background); --chat-background-color: var(--peertube-main-background);
--chat-textarea-color: var(--peertube-input-foreground); --chat-textarea-color: var(--peertube-input-foreground);
--chat-textarea-background-color: var(--peertube-input-background); --chat-textarea-background-color: var(--peertube-main-background);
--chat-textarea-height: 60px; --chat-textarea-height: 38px;
--send-button-height: 27px; --send-button-height: 27px;
--send-button-margin: 3px; --send-button-margin: 3px;
--inline-action-margin: 0.75em; --inline-action-margin: 0.75em;
@ -140,8 +140,8 @@ body.converse-embedded converse-root.theme-peertube {
--fullpage-chatbox-button-size: 24px; --fullpage-chatbox-button-size: 24px;
--font-size-tiny: 10px; --font-size-tiny: 10px;
--font-size-small: 12px; --font-size-small: 12px;
--font-size: 14px; --font-size: 16px;
--font-size-large: 16px; --font-size-large: 18px;
--font-size-huge: 20px; --font-size-huge: 20px;
--message-font-size: var(--font-size); --message-font-size: var(--font-size);
--separator-text-color: var(--peertube-grey-foreground); --separator-text-color: var(--peertube-grey-foreground);

View File

@ -171,7 +171,9 @@ body.converse-embedded {
#peertube-plugin-livechat-container { #peertube-plugin-livechat-container {
converse-muc-message-form { converse-muc-message-form {
// For an unknown reason, message field in truncated... so adding a bottom margin. // For an unknown reason, message field in truncated... so adding a bottom margin.
margin-bottom: 6px; max-height: unset !important;
margin-bottom: 0.5rem !important;
margin-top: 0.4rem !important;
} }
} }

View File

@ -1,13 +1,13 @@
{ {
"name": "peertube-plugin-livechat", "name": "peertube-plugin-livechat",
"description": "PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...", "description": "NCTV fork of the peertube-plugin-livechat plugin, containing styling and other shit. This will be maintained with upstream.",
"version": "10.3.1", "version": "10.3.1",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"author": { "author": {
"name": "John Livingston", "name": "Matty Boombalatty",
"url": "https://github.com/JohnXLivingston" "url": "https://gitea.nicecrew.digital/matty"
}, },
"bugs": "https://github.com/JohnXLivingston/peertube-plugin-livechat/issues", "bugs": "https://gitea.nicecrew.digital/matty/peertube-plugin-livechat/issues",
"clientScripts": [ "clientScripts": [
{ {
"script": "dist/client/common-client-plugin.js", "script": "dist/client/common-client-plugin.js",
@ -82,8 +82,8 @@
"engines": { "engines": {
"npm": ">=7" "npm": ">=7"
}, },
"homepage": "https://livingston.frama.io/peertube-plugin-livechat/", "homepage": "https://gitea.nicecrew.digital/matty/peertube-plugin-livechat",
"repository": "github:JohnXLivingston/peertube-plugin-livechat", "repository": "https://gitea.nicecrew.digital/matty/peertube-plugin-livechat",
"keywords": [ "keywords": [
"peertube", "peertube",
"plugin" "plugin"