2017-06-16 08:22:46 +00:00
|
|
|
/*!
|
|
|
|
* Solarized
|
|
|
|
*
|
2019-01-15 16:51:18 +00:00
|
|
|
* URL: https://github.com/benharri/lounge-theme-solarized
|
2017-06-16 08:22:46 +00:00
|
|
|
* License: MIT
|
2019-01-15 16:51:18 +00:00
|
|
|
* forked by benharri
|
2017-06-16 08:22:46 +00:00
|
|
|
*/
|
|
|
|
|
2019-01-15 16:51:18 +00:00
|
|
|
/* my custom stuff */
|
|
|
|
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i');
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
}
|
|
|
|
|
2020-01-07 15:37:52 +00:00
|
|
|
/*fix timestamp width in monospace themes*/
|
|
|
|
#chat.show-seconds .time, #chat.show-seconds .chat-view[data-type="channel"] .msg.highlight .time {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*hide message sender name if it comes from the same person as the last one*/
|
|
|
|
.msg.previous-source .from {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*hide debug*/
|
|
|
|
#chat .msg[data-type=raw] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-01-15 16:51:18 +00:00
|
|
|
#user-specified-css-input {
|
|
|
|
height: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .networks {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .network {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2019-12-31 19:20:55 +00:00
|
|
|
#sidebar .channel-list-item {
|
2019-01-15 16:51:18 +00:00
|
|
|
padding: 3px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-04-14 07:20:50 +00:00
|
|
|
/* Samsung Internet and Microsoft Edge (yes, both of them use -webkit- prefix) */
|
|
|
|
::-webkit-input-placeholder {
|
2017-08-23 16:08:35 +00:00
|
|
|
color: rgba(131, 148, 150, 0.9);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 07:20:50 +00:00
|
|
|
:root {
|
2018-07-24 09:46:45 +00:00
|
|
|
--body-bg-color: #051114;
|
|
|
|
--window-bg-color: #051114;
|
|
|
|
--body-color: #fff;
|
|
|
|
--body-color-muted: #b7c5d1;
|
2018-04-14 07:20:50 +00:00
|
|
|
--link-color: #268bd2;
|
2018-07-24 09:46:45 +00:00
|
|
|
--unread-marker-color: #268bd2;
|
|
|
|
--date-marker-color: #acf046;
|
2018-06-23 21:19:25 +00:00
|
|
|
--highlight-bg-color: #002b36;
|
|
|
|
--highlight-border-color: #268bd2;
|
2018-07-24 09:46:45 +00:00
|
|
|
--background-light-color: #002b36;
|
2019-12-10 14:54:31 +00:00
|
|
|
--overlay-bg-color: rgba(0, 0, 0, 0.8);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 07:20:50 +00:00
|
|
|
::placeholder {
|
2017-08-23 16:08:35 +00:00
|
|
|
color: rgba(131, 148, 150, 0.9);
|
2018-04-14 07:20:50 +00:00
|
|
|
opacity: 1; /* fix opacity in Firefox */
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 09:07:58 +00:00
|
|
|
::-webkit-scrollbar-thumb:vertical {
|
2018-12-31 14:01:44 +00:00
|
|
|
background: hsl(192, 100%, 25%);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:vertical:hover {
|
|
|
|
background: hsl(192, 100%, 30%);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:vertical:active {
|
|
|
|
background: hsl(192, 100%, 40%);
|
2018-07-18 09:07:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2019-01-14 11:16:14 +00:00
|
|
|
scrollbar-color: hsl(192, 100%, 25%) hsla(192, 100%, 25%, 10%);
|
|
|
|
scrollbar-width: thin;
|
2018-07-18 09:07:58 +00:00
|
|
|
}
|
|
|
|
|
2018-07-14 18:03:04 +00:00
|
|
|
#loading .logo,
|
2018-07-16 04:07:23 +00:00
|
|
|
.logo-container,
|
2019-12-10 13:04:19 +00:00
|
|
|
.window .logo {
|
2018-03-03 08:24:44 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-07-14 18:03:04 +00:00
|
|
|
#loading .logo-inverted,
|
2019-12-10 13:04:19 +00:00
|
|
|
.window .logo-inverted {
|
2018-03-03 08:24:44 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2018-06-19 10:15:36 +00:00
|
|
|
#sidebar .logo-inverted {
|
|
|
|
height: 35px;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
i.hostmask {
|
|
|
|
font-size: 90%;
|
2017-08-23 16:08:35 +00:00
|
|
|
opacity: 0.7;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 15:19:02 +00:00
|
|
|
.irc-monospace,
|
2017-12-24 08:53:05 +00:00
|
|
|
pre,
|
|
|
|
code,
|
|
|
|
kbd {
|
|
|
|
color: #ddd;
|
|
|
|
background-color: #444;
|
|
|
|
border-color: #666;
|
|
|
|
box-shadow: none;
|
2018-03-19 18:05:38 +00:00
|
|
|
text-shadow: none;
|
2017-12-24 08:53:05 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 10:15:36 +00:00
|
|
|
#chat .count::before,
|
2018-06-19 07:26:40 +00:00
|
|
|
#form #submit,
|
2018-09-04 09:10:44 +00:00
|
|
|
#form #upload,
|
2018-06-19 07:26:40 +00:00
|
|
|
#chat button.menu,
|
|
|
|
#viewport .lt,
|
|
|
|
#viewport .rt {
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color-muted);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 17:46:56 +00:00
|
|
|
#context-menu,
|
2017-07-14 22:13:28 +00:00
|
|
|
.textcomplete-menu {
|
|
|
|
border: 0;
|
2018-03-03 17:46:56 +00:00
|
|
|
background-color: #657b83;
|
2017-07-14 22:13:28 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 08:24:44 +00:00
|
|
|
.context-menu-item,
|
|
|
|
.textcomplete-item {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2018-03-03 17:46:56 +00:00
|
|
|
.context-menu-divider {
|
|
|
|
background-color: #aaa;
|
|
|
|
}
|
|
|
|
|
2018-07-14 17:59:22 +00:00
|
|
|
#loading,
|
2018-03-09 07:19:40 +00:00
|
|
|
#chat .userlist,
|
2019-12-10 13:04:19 +00:00
|
|
|
.window,
|
2017-06-16 08:22:46 +00:00
|
|
|
body {
|
2018-07-24 09:46:45 +00:00
|
|
|
background-color: var(--body-bg-color);
|
|
|
|
color: var(--body-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 17:46:56 +00:00
|
|
|
.context-menu-item,
|
2018-03-03 17:34:24 +00:00
|
|
|
.textcomplete-item a {
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 09:46:45 +00:00
|
|
|
#chat .show-more .btn {
|
2017-08-23 16:08:35 +00:00
|
|
|
background: rgba(88, 110, 117, 0.3);
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
text-transform: uppercase;
|
2017-08-23 16:08:35 +00:00
|
|
|
transition: background 0.2s;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 09:46:45 +00:00
|
|
|
#chat .show-more .btn:hover {
|
2017-06-16 08:22:46 +00:00
|
|
|
background: #84ce88;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-reconnect {
|
|
|
|
background: #e74c3c;
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input,
|
2019-12-10 13:04:19 +00:00
|
|
|
#form .input,
|
2017-06-16 08:22:46 +00:00
|
|
|
#form,
|
2018-03-09 07:19:40 +00:00
|
|
|
#chat .userlist .count {
|
2017-06-16 08:22:46 +00:00
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2019-12-10 13:04:19 +00:00
|
|
|
.channel-list-item[data-type="lobby"] {
|
2018-04-13 14:24:34 +00:00
|
|
|
color: #3d99db;
|
2017-11-26 12:29:53 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 14:54:31 +00:00
|
|
|
.channel-list-item[data-type="lobby"]:hover,
|
|
|
|
.channel-list-item[data-type="lobby"].active {
|
2018-04-13 14:24:34 +00:00
|
|
|
color: #93c7eb;
|
2018-03-14 09:02:06 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 19:20:55 +00:00
|
|
|
#sidebar .channel-list-item[data-type="query"]::before,
|
|
|
|
#sidebar .channel-list-item[data-type="channel"]::before {
|
2019-01-15 16:51:18 +00:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .network,
|
|
|
|
#sidebar .network-placeholder {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2018-02-20 11:17:36 +00:00
|
|
|
/* Hide close button on channels, it is not used that frequently */
|
2019-12-10 13:04:19 +00:00
|
|
|
.channel-list-item[data-type="channel"] .close-tooltip {
|
2017-06-16 08:22:46 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-12-10 13:04:19 +00:00
|
|
|
.channel-list-item.active {
|
2018-07-24 09:46:45 +00:00
|
|
|
background-color: var(--body-bg-color);
|
2018-03-03 17:27:12 +00:00
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#footer {
|
|
|
|
height: 43px;
|
2018-03-14 09:02:06 +00:00
|
|
|
line-height: 43px;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 14:42:48 +00:00
|
|
|
.context-menu-item.active,
|
2018-03-03 08:24:44 +00:00
|
|
|
.textcomplete-item:hover,
|
|
|
|
.textcomplete-menu .active,
|
2018-03-09 07:19:40 +00:00
|
|
|
#chat .userlist .user.active,
|
2018-03-03 08:24:44 +00:00
|
|
|
#sidebar,
|
|
|
|
#footer {
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color);
|
2018-04-12 09:57:44 +00:00
|
|
|
background-color: var(--background-light-color);
|
2018-03-03 08:24:44 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 18:42:27 +00:00
|
|
|
#chat .self {
|
|
|
|
/* same as background color, but lighter */
|
|
|
|
background: linear-gradient(to right, hsla(194, 61%, 16%, 1) 5px, #07181d 5px);
|
|
|
|
}
|
|
|
|
|
2018-07-24 09:46:45 +00:00
|
|
|
#form,
|
2018-07-18 07:29:44 +00:00
|
|
|
#viewport .lt::after,
|
2019-12-10 13:04:19 +00:00
|
|
|
#chat .header,
|
2018-02-13 14:23:09 +00:00
|
|
|
#chat .content,
|
2018-03-09 07:19:40 +00:00
|
|
|
#chat .userlist {
|
2018-04-12 09:57:44 +00:00
|
|
|
border-color: var(--background-light-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:51:18 +00:00
|
|
|
#chat .user-mode::before {
|
|
|
|
content: "" !important;
|
|
|
|
border: none;
|
|
|
|
line-height: inherit;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#form {
|
|
|
|
border: 1px solid var(--background-light-color);
|
|
|
|
}
|
|
|
|
|
2018-03-09 07:19:40 +00:00
|
|
|
#chat .userlist .search,
|
2019-12-10 13:04:19 +00:00
|
|
|
#form .input {
|
2017-06-16 08:22:46 +00:00
|
|
|
border: 0;
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#chat.colored-nicks .user.color-1,
|
|
|
|
#chat.colored-nicks .user.color-17 {
|
|
|
|
color: #ef4657;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-2,
|
|
|
|
#chat.colored-nicks .user.color-18 {
|
|
|
|
color: #ff93a4;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-3,
|
|
|
|
#chat.colored-nicks .user.color-19 {
|
|
|
|
color: #ffb03b;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-4,
|
|
|
|
#chat.colored-nicks .user.color-20 {
|
|
|
|
color: #cc7d08;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-5,
|
|
|
|
#chat.colored-nicks .user.color-21 {
|
|
|
|
color: #ffd34e;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-6,
|
|
|
|
#chat.colored-nicks .user.color-22 {
|
|
|
|
color: #cca01b;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-7,
|
|
|
|
#chat.colored-nicks .user.color-23 {
|
|
|
|
color: #acf046;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-8,
|
|
|
|
#chat.colored-nicks .user.color-24 {
|
|
|
|
color: #d5f572;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-9,
|
|
|
|
#chat.colored-nicks .user.color-25 {
|
|
|
|
color: #499e8d;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-10,
|
|
|
|
#chat.colored-nicks .user.color-26 {
|
|
|
|
color: #b5ffe1;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-11,
|
|
|
|
#chat.colored-nicks .user.color-27 {
|
|
|
|
color: #35a7ff;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-12,
|
|
|
|
#chat.colored-nicks .user.color-28 {
|
|
|
|
color: #91a6ff;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-13,
|
|
|
|
#chat.colored-nicks .user.color-29 {
|
2018-04-13 14:24:34 +00:00
|
|
|
color: #975af2;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-14,
|
|
|
|
#chat.colored-nicks .user.color-30 {
|
|
|
|
color: #ff88dc;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-15,
|
|
|
|
#chat.colored-nicks .user.color-31 {
|
|
|
|
color: #bd8d46;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
|
|
|
#chat.colored-nicks .user.color-16,
|
|
|
|
#chat.colored-nicks .user.color-32 {
|
|
|
|
color: #f0c079;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2019-12-15 18:06:20 +00:00
|
|
|
#chat .msg[data-type="motd"] .text,
|
2018-04-13 09:27:57 +00:00
|
|
|
#chat .toggle-content {
|
|
|
|
background-color: var(--background-light-color);
|
2018-04-14 07:20:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#chat .toggle-content,
|
|
|
|
#chat .toggle-text .body,
|
|
|
|
#chat .toggle-type-error {
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color-muted);
|
2017-11-28 10:26:50 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 13:04:19 +00:00
|
|
|
#chat .chat-view[data-type="channel"] .msg.highlight .time {
|
2018-07-24 09:46:45 +00:00
|
|
|
color: var(--body-color);
|
2018-06-23 21:24:56 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 13:04:19 +00:00
|
|
|
#chat .chat-view[data-type="channel"] .highlight .toggle-content {
|
2018-07-24 09:46:45 +00:00
|
|
|
background-color: var(--body-bg-color);
|
2018-04-13 09:27:57 +00:00
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat table.channel-list td {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat table.channel-list th,
|
|
|
|
#chat table.ban-list th,
|
|
|
|
#chat table.channel-list td,
|
|
|
|
#chat table.ban-list td {
|
2018-04-12 09:57:44 +00:00
|
|
|
border-bottom-color: var(--background-light-color);
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Increase contrast of some IRC colors */
|
2018-06-14 19:13:02 +00:00
|
|
|
.irc-fg2 { color: #007ae6; }
|
2017-06-16 08:22:46 +00:00
|
|
|
.irc-fg5 { color: #e969a7; }
|
2018-06-14 19:13:02 +00:00
|
|
|
.irc-fg6 { color: #d20ff0; }
|
|
|
|
.irc-fg12 { color: #66b2ff; }
|
2017-06-16 08:22:46 +00:00
|
|
|
|
|
|
|
@media (max-width: 479px) {
|
2019-12-16 14:45:00 +00:00
|
|
|
#chat .msg[data-type="message"] .from .user::before {
|
2017-06-16 08:22:46 +00:00
|
|
|
content: "<";
|
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
2019-12-16 14:45:00 +00:00
|
|
|
#chat .msg[data-type="message"] .from .user::after {
|
2017-06-16 08:22:46 +00:00
|
|
|
content: ">";
|
|
|
|
}
|
|
|
|
}
|