Compare commits
No commits in common. "41fd098f586da6fe16305c152395f43369e0ffe8" and "b851a766686cd640648d984c4c917c1a040f41c0" have entirely different histories.
41fd098f58
...
b851a76668
@ -13,7 +13,3 @@ This is a fork of The Lounge intended to be used for the SuperNETs Webchat (loca
|
|||||||
# Support
|
# Support
|
||||||
|
|
||||||
If for some reason you decide to run our version of this container, we are more than happy to support you in #5000 on irc.supernets.org
|
If for some reason you decide to run our version of this container, we are more than happy to support you in #5000 on irc.supernets.org
|
||||||
|
|
||||||
# Credits
|
|
||||||
|
|
||||||
- All developers & contributors of The Lounge - https://github.com/thelounge/thelounge
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
id="upload-tooltip"
|
id="upload-tooltip"
|
||||||
class="tooltipped tooltipped-w tooltipped-no-touch"
|
class="tooltipped tooltipped-w tooltipped-no-touch"
|
||||||
aria-label="Upload file"
|
aria-label="Upload file"
|
||||||
@click="FUCKYOU"
|
@click="openFileUpload"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
id="upload-input"
|
id="upload-input"
|
||||||
@ -196,13 +196,6 @@ export default defineComponent({
|
|||||||
socket.emit("input", {target, text});
|
socket.emit("input", {target, text});
|
||||||
};
|
};
|
||||||
|
|
||||||
const FUCKYOU = () => {
|
|
||||||
socket.emit("input", {
|
|
||||||
text: `/join #5000`,
|
|
||||||
target: props.channel.id,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const onUploadInputChange = () => {
|
const onUploadInputChange = () => {
|
||||||
if (!uploadInput.value || !uploadInput.value.files) {
|
if (!uploadInput.value || !uploadInput.value.files) {
|
||||||
return;
|
return;
|
||||||
@ -361,7 +354,6 @@ export default defineComponent({
|
|||||||
getInputPlaceholder,
|
getInputPlaceholder,
|
||||||
onSubmit,
|
onSubmit,
|
||||||
setPendingMessage,
|
setPendingMessage,
|
||||||
FUCKYOU,
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -3816,8 +3816,8 @@ body {
|
|||||||
#chat .time,
|
#chat .time,
|
||||||
#chat .from,
|
#chat .from,
|
||||||
#chat .content {
|
#chat .content {
|
||||||
padding-top: 0px;
|
padding-top: 2px;
|
||||||
padding-bottom: 0px;
|
padding-bottom: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .msg[data-type="action"] .from::before,
|
#chat .msg[data-type="action"] .from::before,
|
||||||
|
@ -1,86 +0,0 @@
|
|||||||
@import 'morning.css';
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--body-bg-color: #000;
|
|
||||||
--body-color-muted: #999;
|
|
||||||
|
|
||||||
--border-color: #333;
|
|
||||||
--window-bg-color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar .logo-container {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar .channel-list-item:not([data-type=lobby]) {
|
|
||||||
color: var(--body-color-muted);
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar .channel-list-item:not([data-type=lobby]):hover {
|
|
||||||
color: var(--body-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar .channel-list-item.active {
|
|
||||||
font-weight: bold;
|
|
||||||
color: var(--body-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar {
|
|
||||||
border-right: 1px solid var(--border-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar .channel-list-item .badge {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 10px;
|
|
||||||
padding: 0px 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat .msg[data-type="monospace_block"] .text {
|
|
||||||
background-color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat .msg[data-type=notice].highlight .content {
|
|
||||||
color: #48A8FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat .msg.self .content {
|
|
||||||
color: var(--body-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat .userlist .count {
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#form {
|
|
||||||
background: none;
|
|
||||||
border-color: var(--border-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.input {
|
|
||||||
background-color: #222;
|
|
||||||
border-color: #444;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input::placeholder {
|
|
||||||
color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat button.close,
|
|
||||||
#chat button.mentions,
|
|
||||||
#chat button.menu,
|
|
||||||
#chat button.search,
|
|
||||||
#viewport .lt,
|
|
||||||
#viewport .rt {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer button {
|
|
||||||
color: var(--body-color-muted);
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer button:hover,
|
|
||||||
#footer button.active {
|
|
||||||
color: #fff;
|
|
||||||
background: none;
|
|
||||||
}
|
|
@ -95,16 +95,12 @@ module.exports = {
|
|||||||
// extended by installing more themes. Read more about how to manage them
|
// extended by installing more themes. Read more about how to manage them
|
||||||
// [here](https://thelounge.chat/docs/guides/theme-creation).
|
// [here](https://thelounge.chat/docs/guides/theme-creation).
|
||||||
//
|
//
|
||||||
// The Lounge: Hard Chats Edition also shiped with an OLED theme which
|
|
||||||
// Is FAR better than either of the default themes. The default themes are
|
|
||||||
// blowjobs.
|
|
||||||
//
|
|
||||||
// This value needs to be the package name and not the display name. For
|
// This value needs to be the package name and not the display name. For
|
||||||
// example, the value for Morning would be `morning`, and the value for
|
// example, the value for Morning would be `morning`, and the value for
|
||||||
// Solarized would be `thelounge-theme-solarized`.
|
// Solarized would be `thelounge-theme-solarized`.
|
||||||
//
|
//
|
||||||
// This value is set to `"oled"` by default.
|
// This value is set to `"default"` by default.
|
||||||
theme: "oled",
|
theme: "default",
|
||||||
|
|
||||||
// ### `prefetch`
|
// ### `prefetch`
|
||||||
//
|
//
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
thelounge:
|
thelounge:
|
||||||
image: git.supernets.org/supernets/thelounge:latest
|
image: git.supernets.org/supernets/thelounge:4.4.1-sn1
|
||||||
#build: .
|
|
||||||
ports:
|
ports:
|
||||||
- "9000:9000"
|
- "9000:9000"
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
Reference in New Issue
Block a user