2017-06-16 08:22:46 +00:00
|
|
|
/*!
|
|
|
|
* Solarized
|
|
|
|
*
|
|
|
|
* URL: https://github.com/thelounge/lounge-theme-solarized
|
|
|
|
* License: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-moz-placeholder {
|
2017-08-23 16:08:35 +00:00
|
|
|
color: rgba(131, 148, 150, 0.9);
|
2017-06-16 08:22:46 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-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
|
|
|
}
|
|
|
|
|
|
|
|
:-ms-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-03-03 08:24:44 +00:00
|
|
|
.loading-logo-bright {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-logo-dark {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
/* Hide nick (and edit) in input bar, not ideal */
|
|
|
|
#nick {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-07-14 22:13:28 +00:00
|
|
|
.context-menu,
|
|
|
|
.textcomplete-menu {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2018-03-03 08:24:44 +00:00
|
|
|
.context-menu-item,
|
|
|
|
.textcomplete-item {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat .sidebar,
|
2018-03-03 08:24:44 +00:00
|
|
|
#windows .window,
|
2017-06-16 08:22:46 +00:00
|
|
|
body {
|
|
|
|
background-color: #051114;
|
2017-06-16 08:40:38 +00:00
|
|
|
color: #fff;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 17:34:24 +00:00
|
|
|
.textcomplete-item a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat a {
|
|
|
|
color: #268bd2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat .date-marker,
|
|
|
|
#chat .unread-marker {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#chat .date-marker::before {
|
|
|
|
border-color: #acf046;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#chat .date-marker-text::before {
|
2017-06-16 08:22:46 +00:00
|
|
|
background-color: #051114;
|
2017-06-16 08:40:38 +00:00
|
|
|
color: #acf046;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#chat .unread-marker::before {
|
2017-06-16 08:22:46 +00:00
|
|
|
border-color: #268bd2;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#chat .unread-marker-text::before {
|
2017-06-16 08:22:46 +00:00
|
|
|
background-color: #051114;
|
|
|
|
color: #268bd2;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#viewport .lt::after {
|
2017-06-16 08:22:46 +00:00
|
|
|
border-color: #002b36;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat .show-more-button {
|
2017-08-23 16:08:35 +00:00
|
|
|
background: rgba(88, 110, 117, 0.3);
|
2017-06-16 08:22:46 +00:00
|
|
|
color: #fff;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#chat .show-more-button:hover {
|
|
|
|
background: #84ce88;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-reconnect {
|
|
|
|
background: #e74c3c;
|
|
|
|
color: #fff;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input,
|
|
|
|
#windows #form .input,
|
|
|
|
#form,
|
2018-03-03 08:24:44 +00:00
|
|
|
#chat .count {
|
2017-06-16 08:22:46 +00:00
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .chan,
|
|
|
|
#sidebar .chan-placeholder {
|
2017-09-23 17:10:23 +00:00
|
|
|
padding: 8px 20px;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 12:07:59 +00:00
|
|
|
#sidebar .chan.lobby {
|
2017-11-26 12:29:53 +00:00
|
|
|
color: #268bd2;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#sidebar .badge {
|
|
|
|
font-size: 12px;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-20 12:07:59 +00:00
|
|
|
#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 */
|
2017-06-16 08:22:46 +00:00
|
|
|
#sidebar .chan.channel .close {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#sidebar .chan .name::after {
|
2017-06-16 08:22:46 +00:00
|
|
|
background: linear-gradient(to right, rgba(69, 81, 100, 0) 0%, #002b36 100%);
|
|
|
|
}
|
|
|
|
|
2018-03-03 17:27:12 +00:00
|
|
|
#sidebar .chan.active {
|
|
|
|
background-color: #051114;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .chan.active .name::after {
|
|
|
|
background: linear-gradient(to right, rgba(5, 17, 20, 0) 0%, #051114 100%);
|
|
|
|
}
|
|
|
|
|
2018-02-20 12:07:59 +00:00
|
|
|
#sidebar .chan.lobby:hover,
|
|
|
|
#sidebar .chan.lobby.active {
|
2017-06-16 08:22:46 +00:00
|
|
|
color: #3d99db;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
bottom: 43px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
height: 43px;
|
|
|
|
}
|
|
|
|
|
2018-03-03 08:24:44 +00:00
|
|
|
.context-menu-item:hover,
|
|
|
|
.textcomplete-item:hover,
|
|
|
|
.textcomplete-menu .active,
|
|
|
|
#chat .users .user.active,
|
|
|
|
#sidebar,
|
|
|
|
#footer {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #002b36;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat .time {
|
|
|
|
color: #586e75;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:40:38 +00:00
|
|
|
#chat .user-mode::before,
|
2017-06-16 08:22:46 +00:00
|
|
|
#form,
|
|
|
|
#windows .header,
|
2018-02-13 14:23:09 +00:00
|
|
|
#chat .content,
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat .sidebar {
|
|
|
|
border-color: #002b36;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat .search,
|
|
|
|
#windows #form .input {
|
|
|
|
border: 0;
|
2017-06-16 08:40:38 +00:00
|
|
|
color: #fff;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
2017-12-17 14:07:37 +00:00
|
|
|
#chat .msg {
|
|
|
|
text-shadow: 1px 1px 0 rgba(50, 50, 50, 0.5);
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
color: #8a46f0;
|
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
|
|
|
}
|
|
|
|
|
2017-11-28 10:26:50 +00:00
|
|
|
#chat .msg .text .user {
|
|
|
|
border-bottom: 1px dotted #555;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat .channel .highlight .from,
|
2017-11-27 17:50:01 +00:00
|
|
|
#chat .channel .highlight .from .user,
|
2017-06-16 08:22:46 +00:00
|
|
|
#chat .channel .highlight .text {
|
2017-12-27 19:49:37 +00:00
|
|
|
color: #fff !important;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#chat .channel .highlight .from {
|
2018-02-15 08:32:04 +00:00
|
|
|
background: linear-gradient(to right, transparent 0%, #2072ac 60%);
|
2018-02-13 14:23:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#chat .channel .highlight .content {
|
|
|
|
border-color: #2072ac;
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#windows .header .topic,
|
|
|
|
#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 {
|
|
|
|
border-bottom-color: #002b36;
|
|
|
|
}
|
|
|
|
|
2017-06-22 19:07:53 +00:00
|
|
|
#chat .toggle-content {
|
|
|
|
background-color: #002b36;
|
|
|
|
color: #99a2b4;
|
|
|
|
}
|
|
|
|
|
2017-07-10 08:46:47 +00:00
|
|
|
#chat .toggle-button:hover {
|
|
|
|
color: #fff;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2018-02-21 17:22:52 +00:00
|
|
|
#chat .toggle-type-error {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-06-16 08:22:46 +00:00
|
|
|
/* Increase contrast of some IRC colors */
|
|
|
|
.irc-fg2 { color: #0074d9; }
|
|
|
|
.irc-fg5 { color: #e969a7; }
|
|
|
|
.irc-fg12 { color: #50a8ff; }
|
|
|
|
|
|
|
|
@media (max-width: 479px) {
|
2017-11-28 10:26:50 +00:00
|
|
|
#chat .message .from .user::before {
|
2017-06-16 08:22:46 +00:00
|
|
|
content: "<";
|
|
|
|
}
|
2017-06-16 08:40:38 +00:00
|
|
|
|
2017-11-28 10:26:50 +00:00
|
|
|
#chat .message .from .user::after {
|
2017-06-16 08:22:46 +00:00
|
|
|
content: ">";
|
|
|
|
}
|
2018-02-15 08:32:04 +00:00
|
|
|
|
|
|
|
#chat .channel .highlight .time {
|
|
|
|
color: #fff;
|
|
|
|
background: #2072ac;
|
|
|
|
margin-left: -10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat .channel .highlight .from {
|
|
|
|
background: linear-gradient(to left, transparent 0%, #2072ac 100%);
|
|
|
|
}
|
2017-06-16 08:22:46 +00:00
|
|
|
}
|
2017-06-22 19:04:31 +00:00
|
|
|
|
|
|
|
@media (min-width: 480px) {
|
2017-06-28 19:51:11 +00:00
|
|
|
#chat .from::after {
|
2017-08-23 16:08:35 +00:00
|
|
|
background: linear-gradient(to right, rgba(5, 17, 20, 0.5) 0%, #051114 100%);
|
2017-06-22 19:04:31 +00:00
|
|
|
}
|
|
|
|
|
2017-06-28 19:51:11 +00:00
|
|
|
#chat .channel .highlight .from::after {
|
2018-02-13 14:23:09 +00:00
|
|
|
background: linear-gradient(to right, rgba(32, 114, 172, 0.5) 0%, #2072ac 100%);
|
2017-06-22 19:04:31 +00:00
|
|
|
}
|
|
|
|
}
|