2015-09-30 06:34:39 +00:00
|
|
|
|
@font-face {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
font-family: "Lato";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
src:
|
|
|
|
|
local("Lato Regular"),
|
|
|
|
|
local("Lato-regular"),
|
|
|
|
|
url("fonts/Lato-regular/Lato-regular.woff2") format("woff2"),
|
2016-10-09 09:05:42 +00:00
|
|
|
|
url("fonts/Lato-regular/Lato-regular.woff") format("woff");
|
2015-09-30 06:34:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
font-family: "Lato";
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
src:
|
|
|
|
|
local("Lato Bold"),
|
|
|
|
|
local("Lato-700"),
|
|
|
|
|
url("fonts/Lato-700/Lato-700.woff2") format("woff2"),
|
2016-10-09 09:05:42 +00:00
|
|
|
|
url("fonts/Lato-700/Lato-700.woff") format("woff");
|
2015-09-30 06:34:39 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2015-04-14 19:13:38 +00:00
|
|
|
|
@font-face {
|
2016-05-30 05:43:48 +00:00
|
|
|
|
font-family: "FontAwesome";
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
2016-10-09 09:05:42 +00:00
|
|
|
|
src:
|
2016-11-19 08:49:16 +00:00
|
|
|
|
url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
|
|
|
|
|
url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff");
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
html,
|
|
|
|
|
body {
|
2017-02-06 12:41:17 +00:00
|
|
|
|
height: 100%;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
body {
|
2014-09-10 15:56:19 +00:00
|
|
|
|
background: #455164;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
color: #222;
|
|
|
|
|
font: 16px Lato, sans-serif;
|
|
|
|
|
margin: 0;
|
2017-06-16 15:36:05 +00:00
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
cursor: default;
|
|
|
|
|
|
2016-09-18 23:28:27 +00:00
|
|
|
|
/**
|
|
|
|
|
* Disable pull-to-refresh on mobile that conflicts with scrolling the message list.
|
|
|
|
|
* See http://stackoverflow.com/a/29313685/1935861
|
|
|
|
|
*/
|
|
|
|
|
overflow-y: hidden;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
a {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: none;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.8;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-06-10 21:10:42 +00:00
|
|
|
|
/**
|
|
|
|
|
* From Normalize. See https://github.com/thelounge/lounge/pull/1217
|
|
|
|
|
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
|
|
|
|
|
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
abbr[title] {
|
|
|
|
|
border-bottom: none; /* 1 */
|
|
|
|
|
text-decoration: underline; /* 2 */
|
|
|
|
|
text-decoration: underline dotted; /* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
h1,
|
2017-02-28 07:15:34 +00:00
|
|
|
|
h2,
|
|
|
|
|
h3 {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
font: inherit;
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-06-21 05:52:18 +00:00
|
|
|
|
h1.title {
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
input {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-06-22 19:34:10 +00:00
|
|
|
|
button {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
outline: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-02-28 07:15:34 +00:00
|
|
|
|
code,
|
|
|
|
|
kbd {
|
|
|
|
|
font-family: Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 2px 4px;
|
|
|
|
|
color: #e74c3c;
|
|
|
|
|
background-color: #f9f2f4;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kbd {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
line-height: 10px;
|
|
|
|
|
padding: 3px 5px;
|
|
|
|
|
color: #555;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
background-color: #fcfcfc;
|
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
|
border-bottom-color: #bbb;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-shadow: inset 0 -1px 0 #bbb;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.btn {
|
|
|
|
|
border: 2px solid #84ce88;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: #84ce88;
|
|
|
|
|
display: inline-block;
|
2016-08-14 21:28:47 +00:00
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: bold;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
padding: 9px 17px;
|
|
|
|
|
text-transform: uppercase;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: background 0.2s, border-color 0.2s, color 0.2s;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
word-spacing: 3px;
|
2017-07-12 06:54:32 +00:00
|
|
|
|
cursor: pointer; /* This is useful for `<button>` elements */
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.btn:disabled,
|
|
|
|
|
.btn:hover {
|
|
|
|
|
background: #84ce88;
|
|
|
|
|
color: #fff;
|
2017-07-12 06:54:32 +00:00
|
|
|
|
opacity: 1;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.btn:active {
|
|
|
|
|
box-shadow: none;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.8;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.btn:disabled {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.6;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.container {
|
|
|
|
|
margin: 80px auto;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
max-width: 480px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
::-moz-placeholder {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
color: rgba(0, 0, 0, 0.35);
|
2014-08-15 13:52:14 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
::-webkit-input-placeholder {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
color: rgba(0, 0, 0, 0.35);
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
:-ms-input-placeholder {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
color: rgba(0, 0, 0, 0.35) !important;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-26 16:36:18 +00:00
|
|
|
|
#js-copy-hack,
|
2017-06-16 15:36:05 +00:00
|
|
|
|
#help,
|
|
|
|
|
#windows .header .title,
|
|
|
|
|
#windows .header .topic,
|
|
|
|
|
#chat .messages {
|
|
|
|
|
-webkit-user-select: text;
|
|
|
|
|
-moz-user-select: text;
|
|
|
|
|
-ms-user-select: text;
|
|
|
|
|
user-select: text;
|
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-26 16:36:18 +00:00
|
|
|
|
#js-copy-hack {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -999999px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat #js-copy-hack .condensed:not(.closed) .msg,
|
|
|
|
|
#chat #js-copy-hack > .msg {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 03:25:42 +00:00
|
|
|
|
/* Icons */
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#viewport .lt::before,
|
|
|
|
|
#viewport .rt::before,
|
|
|
|
|
#chat button.menu::before,
|
|
|
|
|
#sidebar .chan::before,
|
|
|
|
|
#chat .title::before,
|
2016-07-12 03:25:42 +00:00
|
|
|
|
#footer .icon,
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .count::before,
|
2017-08-05 19:28:05 +00:00
|
|
|
|
#settings .extra-help,
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#settings #play::before,
|
|
|
|
|
#form #submit::before,
|
|
|
|
|
#chat .invite .from::before,
|
|
|
|
|
#chat .join .from::before,
|
|
|
|
|
#chat .kick .from::before,
|
|
|
|
|
#chat .part .from::before,
|
|
|
|
|
#chat .quit .from::before,
|
|
|
|
|
#chat .topic .from::before,
|
|
|
|
|
#chat .mode .from::before,
|
|
|
|
|
#chat .ctcp .from::before,
|
|
|
|
|
#chat .whois .from::before,
|
|
|
|
|
#chat .nick .from::before,
|
|
|
|
|
#chat .action .from::before,
|
|
|
|
|
#chat .toggle-button::after,
|
|
|
|
|
.context-menu-item::before,
|
|
|
|
|
#nick button::before,
|
|
|
|
|
#image-viewer .previous-image-btn::before,
|
|
|
|
|
#image-viewer .next-image-btn::before {
|
2016-07-12 05:47:16 +00:00
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
|
font-size: inherit; /* Can't have font-size inherit on line above, so need to override */
|
2016-07-12 03:25:42 +00:00
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#viewport .lt::before { content: "\f0c9"; /* http://fontawesome.io/icon/bars/ */ }
|
|
|
|
|
#viewport .rt::before { content: "\f0c0"; /* http://fontawesome.io/icon/users/ */ }
|
|
|
|
|
#chat button.menu::before { content: "\f142"; /* http://fontawesome.io/icon/ellipsis-v/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.context-menu-user::before { content: "\f007"; /* http://fontawesome.io/icon/user/ */ }
|
|
|
|
|
.context-menu-chan::before { content: "\f0f6"; /* http://fontawesome.io/icon/file-text-o/ */ }
|
|
|
|
|
.context-menu-close::before { content: "\f00d"; /* http://fontawesome.io/icon/times/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan.lobby::before,
|
|
|
|
|
#chat .lobby .title::before { content: "\f0a0"; /* http://fontawesome.io/icon/hdd-o/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan.query::before,
|
|
|
|
|
#chat .query .title::before { content: "\f0e6"; /* http://fontawesome.io/icon/comments-o/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan.channel::before,
|
|
|
|
|
#chat .channel .title::before { content: "\f0f6"; /* http://fontawesome.io/icon/file-text-o/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan.special::before,
|
|
|
|
|
#chat .special .title::before { content: "\f03a"; /* http://fontawesome.io/icon/list/ */ }
|
2016-03-09 20:04:07 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#footer .sign-in::before { content: "\f023"; /* http://fontawesome.io/icon/lock/ */ }
|
|
|
|
|
#footer .connect::before { content: "\f067"; /* http://fontawesome.io/icon/plus/ */ }
|
|
|
|
|
#footer .settings::before { content: "\f013"; /* http://fontawesome.io/icon/cog/ */ }
|
|
|
|
|
#footer .help::before { content: "\f059"; /* http://fontawesome.io/icon/question/ */ }
|
|
|
|
|
#footer .sign-out::before { content: "\f011"; /* http://fontawesome.io/icon/power-off/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#form #submit::before { content: "\f1d8"; /* http://fontawesome.io/icon/paper-plane/ */ }
|
2016-07-12 06:11:25 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .invite .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f003"; /* http://fontawesome.io/icon/envelope-o/ */
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .part .from::before,
|
|
|
|
|
#chat .quit .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f08b"; /* http://fontawesome.io/icon/sign-out/ */
|
|
|
|
|
color: #ff4136;
|
|
|
|
|
display: inline-block;
|
2016-09-24 07:46:02 +00:00
|
|
|
|
-webkit-transform: rotate(180deg);
|
2016-07-12 06:11:25 +00:00
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .topic .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f0a1"; /* http://fontawesome.io/icon/bullhorn/ */
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .mode .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f05a"; /* http://fontawesome.io/icon/info-circle/ */
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .ctcp .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f0f6"; /* http://fontawesome.io/icon/file-text-o/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .whois .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f007"; /* http://fontawesome.io/icon/user/ */
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .nick .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f007"; /* http://fontawesome.io/icon/user/ */
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .join .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f090"; /* http://fontawesome.io/icon/sign-in/ */
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .kick .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f05e"; /* http://fontawesome.io/icon/ban/ */
|
|
|
|
|
color: #ff4136;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .action .from::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f005"; /* http://fontawesome.io/icon/star/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-06 07:35:54 +00:00
|
|
|
|
#chat .toggle-button {
|
|
|
|
|
/* These 2 directives are loosely taken from .fa-fw */
|
|
|
|
|
width: 1.35em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .toggle-button::after {
|
2017-07-06 07:35:54 +00:00
|
|
|
|
content: "\f0da"; /* http://fontawesome.io/icon/caret-right/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .count::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
color: #cfcfcf;
|
|
|
|
|
content: "\f002"; /* http://fontawesome.io/icon/search/ */
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 18px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#settings .extra-help::before {
|
2017-08-05 19:28:05 +00:00
|
|
|
|
content: "\f059"; /* http://fontawesome.io/icon/question-circle/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#settings #play::before {
|
2016-07-12 06:11:25 +00:00
|
|
|
|
content: "\f028"; /* http://fontawesome.io/icon/volume-up/ */
|
|
|
|
|
margin-right: 9px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#set-nick::before {
|
2016-07-29 06:10:29 +00:00
|
|
|
|
content: "\f040"; /* http://fontawesome.io/icon/pencil/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#submit-nick::before {
|
2016-07-29 06:10:29 +00:00
|
|
|
|
content: "\f00c"; /* http://fontawesome.io/icon/check/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#cancel-nick::before {
|
2016-07-29 06:10:29 +00:00
|
|
|
|
content: "\f00d"; /* http://fontawesome.io/icon/times/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#image-viewer .previous-image-btn::before {
|
2017-07-23 17:14:27 +00:00
|
|
|
|
content: "\f104"; /* http://fontawesome.io/icon/angle-left/ */
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#image-viewer .next-image-btn::before {
|
2017-07-23 17:14:27 +00:00
|
|
|
|
content: "\f105"; /* http://fontawesome.io/icon/angle-right/ */
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 06:11:25 +00:00
|
|
|
|
/* End icons */
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#wrap {
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#viewport {
|
|
|
|
|
height: 100%;
|
2016-06-12 02:16:17 +00:00
|
|
|
|
transition: transform 160ms, -webkit-transform 160ms;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
-webkit-transform: translateZ(0);
|
2016-02-17 18:38:42 +00:00
|
|
|
|
transform: translateZ(0);
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-06-12 02:16:17 +00:00
|
|
|
|
#viewport.menu-open {
|
|
|
|
|
-webkit-transform: translate3d(220px, 0, 0);
|
|
|
|
|
transform: translate3d(220px, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#viewport.menu-dragging {
|
|
|
|
|
transition: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#viewport.menu-open .messages {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-09 01:17:03 +00:00
|
|
|
|
#chat button,
|
|
|
|
|
#form button,
|
|
|
|
|
#chat .user {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s;
|
2017-07-09 01:17:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat button:hover,
|
|
|
|
|
#form button:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.6;
|
2017-07-09 01:17:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-10 21:43:56 +00:00
|
|
|
|
#viewport .lt,
|
2016-03-19 18:20:11 +00:00
|
|
|
|
#viewport .rt,
|
|
|
|
|
#chat button.menu {
|
2014-09-10 21:43:56 +00:00
|
|
|
|
color: #ccc;
|
|
|
|
|
display: none;
|
|
|
|
|
float: left;
|
2016-07-12 05:47:16 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1;
|
2014-09-10 21:43:56 +00:00
|
|
|
|
height: 36px;
|
|
|
|
|
margin: 6px 12px 0 -12px;
|
|
|
|
|
width: 36px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-07-10 20:38:08 +00:00
|
|
|
|
#viewport .lt {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Notification dot on the top right corner of the menu icon */
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#viewport .lt::after {
|
2016-07-10 20:38:08 +00:00
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 9px;
|
|
|
|
|
right: 7px;
|
|
|
|
|
background-color: #e74c3c;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
opacity: 0;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s;
|
2016-07-10 20:38:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#viewport .lt.notified::after {
|
2016-07-10 20:38:08 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-03 05:10:22 +00:00
|
|
|
|
#viewport .rt-tooltip {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-10 21:43:56 +00:00
|
|
|
|
#viewport .rt {
|
2014-10-10 19:21:40 +00:00
|
|
|
|
display: block;
|
2016-03-19 18:20:11 +00:00
|
|
|
|
margin: 6px -12px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat button.menu {
|
|
|
|
|
display: block;
|
|
|
|
|
float: right;
|
|
|
|
|
margin: 6px -8px 0 12px;
|
2014-09-10 21:43:56 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-10-10 19:21:40 +00:00
|
|
|
|
#viewport.rt #chat .sidebar {
|
2017-04-30 10:20:43 +00:00
|
|
|
|
right: -180px;
|
2014-10-10 19:21:40 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar {
|
2016-05-29 20:21:45 +00:00
|
|
|
|
bottom: 48px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
left: 0;
|
2016-06-22 20:05:25 +00:00
|
|
|
|
overflow: auto;
|
|
|
|
|
overflow-x: hidden;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 220px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-04-30 10:20:43 +00:00
|
|
|
|
#viewport.menu-open #sidebar {
|
|
|
|
|
will-change: transform;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar button,
|
2014-09-22 18:54:38 +00:00
|
|
|
|
#sidebar .chan,
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .sign-out {
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 2px;
|
2014-08-29 20:54:11 +00:00
|
|
|
|
color: #99a2b4;
|
2014-09-22 18:54:38 +00:00
|
|
|
|
cursor: pointer;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar button:hover,
|
2014-09-22 18:54:38 +00:00
|
|
|
|
#sidebar .chan:hover,
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .active {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .networks {
|
2014-09-23 23:05:07 +00:00
|
|
|
|
padding: 20px 30px 0;
|
2014-09-19 23:12:17 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-19 23:12:17 +00:00
|
|
|
|
#sidebar .networks:empty {
|
|
|
|
|
padding: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-23 23:05:07 +00:00
|
|
|
|
#sidebar .network,
|
|
|
|
|
#sidebar .network-placeholder {
|
|
|
|
|
margin-bottom: 30px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .empty {
|
2014-09-10 15:56:19 +00:00
|
|
|
|
color: #9ca5b4;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
line-height: 1.6;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
padding: 20px 40px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-23 23:05:07 +00:00
|
|
|
|
#sidebar .chan,
|
|
|
|
|
#sidebar .chan-placeholder {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
display: block;
|
|
|
|
|
margin: 1px -10px;
|
2016-02-21 01:28:45 +00:00
|
|
|
|
padding: 6px 10px 8px 36px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
text-align: left;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: color 0.2s;
|
2014-08-29 20:54:11 +00:00
|
|
|
|
width: 180px;
|
2016-10-18 21:53:39 +00:00
|
|
|
|
left: auto !important; /* Fix for drag'n'drop not recalculating left position */
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-23 23:05:07 +00:00
|
|
|
|
#sidebar .chan-placeholder {
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .chan:first-child {
|
|
|
|
|
color: #84ce88;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .chan:first-child:hover,
|
|
|
|
|
#sidebar .chan:first-child.active {
|
|
|
|
|
color: #c0f8c3;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan::before,
|
|
|
|
|
#chat .title::before {
|
2014-09-30 18:00:23 +00:00
|
|
|
|
float: left;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
text-align: center;
|
2014-08-29 20:54:11 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan::before {
|
2016-02-21 01:28:45 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 4px;
|
|
|
|
|
left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .title::before {
|
2014-09-30 18:00:23 +00:00
|
|
|
|
margin-top: 17px;
|
2014-08-29 20:54:11 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-02-21 01:28:45 +00:00
|
|
|
|
#sidebar .chan .name {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .chan .name::after {
|
2016-02-21 01:28:45 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 20px;
|
|
|
|
|
background: linear-gradient(to right, rgba(69, 81, 100, 0) 0%, rgba(69, 81, 100, 1) 100%);
|
|
|
|
|
content: " ";
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .badge {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background: rgba(255, 255, 255, 0.06);
|
2014-08-15 13:52:14 +00:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: #afb6c0;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
margin-top: 1px;
|
2016-02-21 01:28:45 +00:00
|
|
|
|
margin-right: -5px;
|
|
|
|
|
margin-left: 5px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
padding: 3px 6px;
|
2016-02-21 01:28:45 +00:00
|
|
|
|
float: right;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s, background-color 0.2s, color 0.2s;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .badge.highlight {
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #49505a;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-03-11 21:27:07 +00:00
|
|
|
|
#sidebar .chan.active .badge,
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .badge:empty {
|
2016-02-19 18:09:50 +00:00
|
|
|
|
opacity: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sidebar .close {
|
|
|
|
|
border-radius: 3px;
|
2014-09-19 23:56:38 +00:00
|
|
|
|
margin-right: 5px;
|
2016-03-11 21:27:07 +00:00
|
|
|
|
visibility: hidden;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
opacity: 0;
|
|
|
|
|
position: absolute;
|
2016-02-21 01:28:45 +00:00
|
|
|
|
z-index: 2;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
right: 0;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s, background-color 0.2s;
|
2016-02-15 10:03:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .close::before {
|
2016-02-15 10:03:37 +00:00
|
|
|
|
font-size: 18px;
|
2016-03-14 04:35:24 +00:00
|
|
|
|
font-weight: normal;
|
2016-02-15 10:03:37 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: 18px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
width: 18px;
|
2016-02-15 10:03:37 +00:00
|
|
|
|
height: 18px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
content: "×";
|
|
|
|
|
color: #fff;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-15 10:03:37 +00:00
|
|
|
|
|
2016-03-11 21:27:07 +00:00
|
|
|
|
#sidebar .chan.active .close {
|
|
|
|
|
visibility: visible;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.4;
|
2016-03-11 21:27:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sidebar .chan.active .close:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
2016-03-11 21:27:07 +00:00
|
|
|
|
opacity: 1;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-19 23:12:17 +00:00
|
|
|
|
#sidebar .tse-scrollbar {
|
|
|
|
|
top: 2px;
|
|
|
|
|
right: 3px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#footer {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background: rgba(0, 0, 0, 0.06);
|
2016-05-29 20:21:45 +00:00
|
|
|
|
bottom: 0;
|
2016-08-02 04:33:16 +00:00
|
|
|
|
height: 45px;
|
2016-05-29 20:21:45 +00:00
|
|
|
|
left: 0;
|
2016-07-12 05:47:16 +00:00
|
|
|
|
font-size: 14px;
|
2016-08-02 04:33:16 +00:00
|
|
|
|
line-height: 45px;
|
2014-09-19 23:12:17 +00:00
|
|
|
|
position: absolute;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
text-align: center;
|
2016-05-29 20:21:45 +00:00
|
|
|
|
width: 220px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#footer button.active {
|
2014-09-19 23:12:17 +00:00
|
|
|
|
color: #fff;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#footer .icon {
|
2014-09-10 15:56:19 +00:00
|
|
|
|
color: #9ca5b4;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: 34px;
|
2016-02-17 18:38:42 +00:00
|
|
|
|
padding: 0 12px;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: color 0.2s;
|
2017-07-09 01:17:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer .icon:hover {
|
|
|
|
|
color: #fff;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.signed-out #footer .sign-in {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.signed-out #footer .connect,
|
|
|
|
|
.signed-out #footer .sign-out {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
.public #footer .sign-in,
|
|
|
|
|
.public #footer .sign-out {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#footer .sign-in {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#main {
|
2016-05-29 20:21:45 +00:00
|
|
|
|
bottom: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
left: 220px;
|
|
|
|
|
position: absolute;
|
2016-05-29 20:21:45 +00:00
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
display: -webkit-flex;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
display: flex;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex-direction: column;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
flex-direction: column;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-09-18 00:43:29 +00:00
|
|
|
|
.signed-out #main {
|
|
|
|
|
left: 0; /* Hide the sidebar when user is signed out */
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#header {
|
|
|
|
|
display: none;
|
|
|
|
|
height: 40px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-07-10 19:47:03 +00:00
|
|
|
|
#windows label,
|
|
|
|
|
#settings .error {
|
2014-09-13 01:03:16 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#windows .input {
|
2016-09-06 05:18:21 +00:00
|
|
|
|
background-color: white;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
border: 1px solid #cdd3da;
|
2014-08-16 00:05:37 +00:00
|
|
|
|
border-radius: 2px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
color: #222;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin: 2px 0;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
margin-bottom: 10px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
outline: 0;
|
|
|
|
|
padding: 8px 10px;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: border-color 0.2s;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-08-17 05:43:46 +00:00
|
|
|
|
#windows select.input {
|
|
|
|
|
height: 35px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-22 20:05:25 +00:00
|
|
|
|
#user-specified-css-input {
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#windows .input:hover,
|
|
|
|
|
#windows .input:focus {
|
|
|
|
|
border-color: #79838c;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#windows .window {
|
|
|
|
|
background: #fff;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
display: none;
|
|
|
|
|
left: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#windows .window h1 {
|
2016-08-14 21:28:47 +00:00
|
|
|
|
font-size: 36px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-10 15:56:19 +00:00
|
|
|
|
#windows .window h2 {
|
2016-10-23 08:11:04 +00:00
|
|
|
|
border-bottom: 1px solid #7f8c8d;
|
2014-09-10 15:56:19 +00:00
|
|
|
|
color: #7f8c8d;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
margin: 30px 0 10px;
|
|
|
|
|
padding-bottom: 7px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-02-28 07:15:34 +00:00
|
|
|
|
#windows .window h3 {
|
|
|
|
|
color: #7f8c8d;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin: 20px 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#windows .active {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#windows .header {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
border-bottom: 1px solid #e7e7e7;
|
2016-08-14 21:28:47 +00:00
|
|
|
|
line-height: 48px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
height: 48px;
|
|
|
|
|
padding: 0 20px;
|
2015-04-26 22:20:54 +00:00
|
|
|
|
overflow: hidden;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#windows .header .title {
|
2017-05-09 09:39:15 +00:00
|
|
|
|
font-size: 15px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#windows .header .topic {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
color: #777;
|
|
|
|
|
margin-left: 8px;
|
2016-03-22 16:04:34 +00:00
|
|
|
|
word-break: break-all;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#windows .window .header {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-07-05 23:23:46 +00:00
|
|
|
|
#chat-container,
|
|
|
|
|
#chat .chan {
|
2014-09-13 01:03:16 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2016-07-05 23:23:46 +00:00
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#windows #chat-container.active {
|
2016-09-21 04:26:22 +00:00
|
|
|
|
display: -webkit-flex;
|
2016-07-05 23:23:46 +00:00
|
|
|
|
display: flex;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex-direction: column;
|
2016-07-05 23:23:46 +00:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex: 1;
|
2016-07-05 23:23:46 +00:00
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .chan {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .chan.active {
|
|
|
|
|
display: block;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-06-22 20:08:36 +00:00
|
|
|
|
#chat .condensed {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-06 16:35:01 +00:00
|
|
|
|
#chat .condensed .content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-16 00:06:18 +00:00
|
|
|
|
/* Ensures expanded status messages always take up the full width */
|
|
|
|
|
#chat .condensed .msg {
|
|
|
|
|
flex-basis: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-30 12:43:31 +00:00
|
|
|
|
#chat .condensed-summary .content {
|
|
|
|
|
display: block;
|
2017-08-06 16:35:01 +00:00
|
|
|
|
cursor: pointer;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s;
|
2017-08-06 16:35:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-30 12:43:31 +00:00
|
|
|
|
#chat .condensed-summary {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat.condensed-status-messages .condensed-summary {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .condensed-summary:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.6;
|
2017-08-06 16:35:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-30 12:43:31 +00:00
|
|
|
|
#chat .condensed-summary .toggle-button:hover {
|
2017-08-06 16:35:01 +00:00
|
|
|
|
opacity: 1;
|
2017-06-22 20:08:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-30 12:43:31 +00:00
|
|
|
|
#chat.condensed-status-messages .condensed.closed .msg {
|
2017-06-22 20:08:36 +00:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-30 12:43:31 +00:00
|
|
|
|
#chat .condensed-summary .time {
|
2017-08-23 00:18:34 +00:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-14 21:28:47 +00:00
|
|
|
|
#windows .header .topic,
|
|
|
|
|
.messages .msg,
|
|
|
|
|
.sidebar {
|
2017-05-09 09:39:15 +00:00
|
|
|
|
font: 13px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
|
2015-04-16 08:07:13 +00:00
|
|
|
|
line-height: 1.4;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-07-05 23:23:46 +00:00
|
|
|
|
#windows #chat .header {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .chat,
|
|
|
|
|
#chat .sidebar {
|
2016-07-05 23:23:46 +00:00
|
|
|
|
top: 48px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .chat {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
2017-04-26 21:30:51 +00:00
|
|
|
|
right: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
overflow: auto;
|
2017-04-30 10:20:43 +00:00
|
|
|
|
will-change: transform, scroll-position;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
position: absolute;
|
2017-04-22 12:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .channel .chat {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
right: 180px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-03-09 20:04:07 +00:00
|
|
|
|
#chat .special {
|
|
|
|
|
bottom: -47px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-11 19:17:26 +00:00
|
|
|
|
#viewport.rt .chat {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
right: 0;
|
2015-01-11 19:17:26 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .sidebar {
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-left: 1px solid #e7e7e7;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 180px;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: right 0.4s;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .show-more {
|
2014-09-28 21:51:24 +00:00
|
|
|
|
display: none;
|
|
|
|
|
padding: 10px;
|
2016-05-13 10:23:05 +00:00
|
|
|
|
padding-bottom: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-28 21:51:24 +00:00
|
|
|
|
#chat .show-more-button {
|
|
|
|
|
background: #f4f4f4;
|
|
|
|
|
background-image: linear-gradient(#f4f4f4, #ececec);
|
|
|
|
|
border: 1px solid #d7d7d7;
|
|
|
|
|
border-bottom-color: #b7b7b7;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
color: #555;
|
2016-08-14 21:28:47 +00:00
|
|
|
|
font-size: 12px;
|
2014-09-28 21:51:24 +00:00
|
|
|
|
height: 34px;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-28 21:51:24 +00:00
|
|
|
|
#chat .show-more-button:hover {
|
2014-09-19 20:24:11 +00:00
|
|
|
|
opacity: 1;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .messages {
|
2016-02-27 23:22:52 +00:00
|
|
|
|
padding: 10px 0;
|
2016-07-10 00:03:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .msg {
|
2016-07-04 21:57:49 +00:00
|
|
|
|
word-wrap: break-word;
|
2016-08-20 04:23:56 +00:00
|
|
|
|
word-break: break-word; /* Webkit-specific */
|
2016-09-04 01:29:48 +00:00
|
|
|
|
display: flex;
|
2017-07-21 12:00:42 +00:00
|
|
|
|
overflow: hidden;
|
2016-09-04 01:29:48 +00:00
|
|
|
|
position: relative;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-07-04 21:57:49 +00:00
|
|
|
|
#chat .unread-marker {
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 10px;
|
2016-07-07 05:14:52 +00:00
|
|
|
|
z-index: 0;
|
2016-08-14 21:28:47 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 12px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .unread-marker::before {
|
2016-07-04 21:57:49 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
content: "";
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 50%;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
border-top: 1px solid rgba(231, 76, 60, 0.5);
|
2016-07-04 21:57:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .unread-marker-text::before {
|
2016-07-04 21:57:49 +00:00
|
|
|
|
content: "New messages";
|
|
|
|
|
background-color: white;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
color: rgba(231, 76, 60, 0.5);
|
2016-07-04 21:57:49 +00:00
|
|
|
|
padding: 0 10px;
|
2016-05-13 10:23:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .unread-marker:last-child {
|
|
|
|
|
display: none;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-10-03 18:03:19 +00:00
|
|
|
|
#chat .date-marker {
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 10px;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .date-marker::before {
|
2016-10-03 18:03:19 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
content: "";
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 50%;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
border-top: 1px solid rgba(0, 107, 59, 0.5);
|
2016-10-03 18:03:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .date-marker-text::before {
|
2017-04-19 06:33:05 +00:00
|
|
|
|
content: attr(data-label);
|
2016-10-03 18:03:19 +00:00
|
|
|
|
background-color: white;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
color: rgba(0, 107, 59, 0.5);
|
2016-10-03 18:03:19 +00:00
|
|
|
|
padding: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-05 22:20:45 +00:00
|
|
|
|
.inline-channel {
|
2015-03-28 18:47:15 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-03-05 22:20:45 +00:00
|
|
|
|
.inline-channel:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.6;
|
2015-03-28 18:47:15 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .time,
|
|
|
|
|
#chat .from,
|
2017-07-20 05:58:04 +00:00
|
|
|
|
#chat .content {
|
2014-09-25 23:51:53 +00:00
|
|
|
|
padding: 2px 0;
|
2016-09-04 01:29:48 +00:00
|
|
|
|
flex: 0 0 auto;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .time {
|
2014-09-25 23:51:53 +00:00
|
|
|
|
color: #ddd;
|
2017-05-06 18:44:57 +00:00
|
|
|
|
padding-left: 10px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .from {
|
|
|
|
|
border-right: 1px solid #f6f6f6;
|
|
|
|
|
color: #b1c3ce;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
text-align: right;
|
2016-09-04 01:29:48 +00:00
|
|
|
|
width: 134px;
|
2017-05-11 00:17:27 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
position: relative;
|
2016-09-04 01:29:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 05:58:04 +00:00
|
|
|
|
#chat .content {
|
2016-09-04 01:29:48 +00:00
|
|
|
|
flex: 1 1 auto;
|
2017-07-22 09:33:49 +00:00
|
|
|
|
min-width: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-06-21 05:52:18 +00:00
|
|
|
|
#loading a,
|
2016-03-09 20:04:07 +00:00
|
|
|
|
#chat .special .time,
|
|
|
|
|
#chat .special .from {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-30 18:00:23 +00:00
|
|
|
|
#chat a {
|
2014-10-10 17:39:57 +00:00
|
|
|
|
color: #50a656;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-05-15 19:56:48 +00:00
|
|
|
|
/* Nicknames */
|
|
|
|
|
|
|
|
|
|
#chat .user {
|
2016-06-22 19:34:10 +00:00
|
|
|
|
cursor: pointer;
|
2016-05-15 19:56:48 +00:00
|
|
|
|
color: #50a656;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-22 19:34:10 +00:00
|
|
|
|
#chat .user:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.6;
|
2016-06-22 19:34:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-15 19:56:48 +00:00
|
|
|
|
#chat.colored-nicks .user.color-1 { color: #1396cf; }
|
|
|
|
|
#chat.colored-nicks .user.color-2 { color: #ffcf89; }
|
|
|
|
|
#chat.colored-nicks .user.color-3 { color: #00dc5f; }
|
|
|
|
|
#chat.colored-nicks .user.color-4 { color: #ff5bc8; }
|
|
|
|
|
#chat.colored-nicks .user.color-5 { color: #ff0e1b; }
|
|
|
|
|
#chat.colored-nicks .user.color-6 { color: #000094; }
|
|
|
|
|
#chat.colored-nicks .user.color-7 { color: #006441; }
|
|
|
|
|
#chat.colored-nicks .user.color-8 { color: #00566e; }
|
|
|
|
|
#chat.colored-nicks .user.color-9 { color: #ff0078; }
|
|
|
|
|
#chat.colored-nicks .user.color-10 { color: #15d5a3; }
|
|
|
|
|
#chat.colored-nicks .user.color-11 { color: #006b3b; }
|
|
|
|
|
#chat.colored-nicks .user.color-12 { color: #00c5ba; }
|
|
|
|
|
#chat.colored-nicks .user.color-13 { color: #00465b; }
|
|
|
|
|
#chat.colored-nicks .user.color-14 { color: #ffafce; }
|
|
|
|
|
#chat.colored-nicks .user.color-15 { color: #ff3b12; }
|
|
|
|
|
#chat.colored-nicks .user.color-16 { color: #16cc6a; }
|
|
|
|
|
#chat.colored-nicks .user.color-17 { color: #ff0072; }
|
|
|
|
|
#chat.colored-nicks .user.color-18 { color: #ff5877; }
|
|
|
|
|
#chat.colored-nicks .user.color-19 { color: #ff1753; }
|
|
|
|
|
#chat.colored-nicks .user.color-20 { color: #007a56; }
|
|
|
|
|
#chat.colored-nicks .user.color-21 { color: #095092; }
|
|
|
|
|
#chat.colored-nicks .user.color-22 { color: #000bde; }
|
|
|
|
|
#chat.colored-nicks .user.color-23 { color: #00bca9; }
|
|
|
|
|
#chat.colored-nicks .user.color-24 { color: #00367d; }
|
|
|
|
|
#chat.colored-nicks .user.color-25 { color: #009ec4; }
|
|
|
|
|
#chat.colored-nicks .user.color-26 { color: #006119; }
|
|
|
|
|
#chat.colored-nicks .user.color-27 { color: #008bb8; }
|
|
|
|
|
#chat.colored-nicks .user.color-28 { color: #469c00; }
|
|
|
|
|
#chat.colored-nicks .user.color-29 { color: #ff0f95; }
|
|
|
|
|
#chat.colored-nicks .user.color-30 { color: #ff7615; }
|
|
|
|
|
#chat.colored-nicks .user.color-31 { color: #ff4846; }
|
|
|
|
|
#chat.colored-nicks .user.color-32 { color: #ff199b; }
|
2016-05-12 06:15:02 +00:00
|
|
|
|
|
2017-07-20 05:58:04 +00:00
|
|
|
|
#chat .content {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
padding-left: 10px;
|
|
|
|
|
padding-right: 6px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-14 18:49:42 +00:00
|
|
|
|
#chat .self .text {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-03-09 20:04:07 +00:00
|
|
|
|
#chat .msg.channel_list_loading .text {
|
|
|
|
|
color: #999;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .msg.channel_list_truncated .text {
|
|
|
|
|
color: #f00;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-22 12:51:21 +00:00
|
|
|
|
#chat table.channel-list,
|
|
|
|
|
#chat table.ban-list {
|
2016-03-09 20:04:07 +00:00
|
|
|
|
margin: 5px 10px;
|
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat table.channel-list th,
|
2017-04-22 12:51:21 +00:00
|
|
|
|
#chat table.ban-list th,
|
|
|
|
|
#chat table.channel-list td,
|
|
|
|
|
#chat table.ban-list td {
|
2016-03-09 20:04:07 +00:00
|
|
|
|
padding: 5px;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
border-bottom: #eee 1px solid;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-06 16:22:56 +00:00
|
|
|
|
#chat table.channel-list .channel {
|
|
|
|
|
width: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-09 20:04:07 +00:00
|
|
|
|
#chat table.channel-list .channel,
|
2017-04-22 12:51:21 +00:00
|
|
|
|
#chat table.channel-list .topic,
|
|
|
|
|
#chat table.ban-list .hostmask,
|
|
|
|
|
#chat table.ban-list .banned_by,
|
|
|
|
|
#chat table.ban-list .banned_at {
|
2016-03-09 20:04:07 +00:00
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat table.channel-list .users {
|
|
|
|
|
text-align: center;
|
2017-04-06 16:22:56 +00:00
|
|
|
|
width: 50px;
|
2016-03-09 20:04:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat table.channel-list td.channel .inline-channel {
|
|
|
|
|
color: #428bca;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat table.channel-list td {
|
|
|
|
|
color: #555;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-06 04:49:22 +00:00
|
|
|
|
#chat.hide-status-messages .condensed,
|
2017-06-22 20:08:36 +00:00
|
|
|
|
#chat.hide-motd .motd {
|
2014-09-10 20:08:32 +00:00
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2016-02-12 11:24:13 +00:00
|
|
|
|
|
2017-06-22 20:08:36 +00:00
|
|
|
|
#chat .condensed .content,
|
2017-07-20 05:58:04 +00:00
|
|
|
|
#chat .join .content,
|
|
|
|
|
#chat .kick .content,
|
|
|
|
|
#chat .mode .content,
|
|
|
|
|
#chat .nick .content,
|
|
|
|
|
#chat .part .content,
|
|
|
|
|
#chat .quit .content,
|
|
|
|
|
#chat .topic .content,
|
|
|
|
|
#chat .topic_set_by .content {
|
2016-02-15 09:32:57 +00:00
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .action .from,
|
2016-01-23 14:39:54 +00:00
|
|
|
|
#chat .action .text,
|
|
|
|
|
#chat .action .user {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
color: #f39c12;
|
2016-01-23 14:39:54 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-01-23 14:39:54 +00:00
|
|
|
|
#chat .notice .time,
|
|
|
|
|
#chat .notice .text,
|
|
|
|
|
#chat .chan .notice .user {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
color: #0074d9 !important;
|
2016-01-23 14:39:54 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .notice .user::before {
|
2016-01-23 14:39:54 +00:00
|
|
|
|
content: "Notice: ";
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-01-23 14:39:54 +00:00
|
|
|
|
|
2016-02-15 09:32:57 +00:00
|
|
|
|
#chat .error,
|
|
|
|
|
#chat .error .from,
|
2016-05-16 19:46:22 +00:00
|
|
|
|
#chat .channel .highlight .from,
|
|
|
|
|
#chat .channel .highlight .text,
|
|
|
|
|
#chat .channel .highlight .user {
|
2016-02-15 09:32:57 +00:00
|
|
|
|
color: #f00;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-27 19:17:05 +00:00
|
|
|
|
#chat .toggle-button {
|
|
|
|
|
display: inline-block;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s, transform 0.2s;
|
2014-09-27 19:17:05 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-06 16:35:01 +00:00
|
|
|
|
#chat .toggle-button.opened, /* Thumbnail toggle */
|
|
|
|
|
#chat .msg.condensed:not(.closed) .toggle-button { /* Expanded status message toggle */
|
2017-07-06 07:35:54 +00:00
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-27 19:17:05 +00:00
|
|
|
|
#chat .toggle-content {
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
display: none;
|
|
|
|
|
color: #222;
|
2016-08-14 21:28:47 +00:00
|
|
|
|
font-size: 12px;
|
2014-09-30 21:44:29 +00:00
|
|
|
|
max-width: 100%;
|
2017-07-06 07:35:54 +00:00
|
|
|
|
margin: 2px 0;
|
2016-07-23 03:01:55 +00:00
|
|
|
|
overflow: hidden;
|
2014-09-27 19:17:05 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-27 19:17:05 +00:00
|
|
|
|
#chat .toggle-content img {
|
|
|
|
|
max-width: 100%;
|
2016-07-23 03:01:55 +00:00
|
|
|
|
max-height: 128px;
|
2014-09-27 20:39:14 +00:00
|
|
|
|
display: block;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-10-12 01:42:30 +00:00
|
|
|
|
#chat .toggle-content .thumb {
|
2016-07-23 03:01:55 +00:00
|
|
|
|
max-width: 48px;
|
2017-04-04 06:30:16 +00:00
|
|
|
|
max-height: 32px;
|
2014-10-12 01:42:30 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-07-12 06:55:41 +00:00
|
|
|
|
#chat .toggle-thumbnail {
|
|
|
|
|
padding: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-03 11:43:16 +00:00
|
|
|
|
#chat .toggle-text {
|
2017-07-12 06:55:41 +00:00
|
|
|
|
padding: 6px;
|
2017-07-03 11:43:16 +00:00
|
|
|
|
min-width: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
white-space: nowrap;
|
2017-07-12 06:55:41 +00:00
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chat .toggle-text:not(:first-child) {
|
|
|
|
|
padding-left: 0;
|
2017-07-03 11:43:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-04 06:30:16 +00:00
|
|
|
|
#chat .toggle-content .head,
|
|
|
|
|
#chat .toggle-content .body {
|
2016-07-23 03:01:55 +00:00
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
2017-07-12 06:55:41 +00:00
|
|
|
|
color: inherit;
|
2014-09-27 20:39:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-04-04 06:30:16 +00:00
|
|
|
|
#chat .toggle-content .head {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-27 20:39:14 +00:00
|
|
|
|
#chat .toggle-content .body {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-27 20:39:14 +00:00
|
|
|
|
#chat .toggle-content.show {
|
2017-07-03 11:43:16 +00:00
|
|
|
|
display: inline-flex !important;
|
2014-08-16 19:49:28 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-07-18 04:37:45 +00:00
|
|
|
|
/* Do not display an empty div when there are no previews. Useful for example in
|
|
|
|
|
part/quit messages where we don't load previews (adds a blank line otherwise) */
|
|
|
|
|
#chat .preview:empty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .count {
|
2014-09-10 15:56:19 +00:00
|
|
|
|
background: #fafafa;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
height: 48px;
|
|
|
|
|
left: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .search {
|
|
|
|
|
color: #222;
|
|
|
|
|
border: 0;
|
|
|
|
|
background: none;
|
|
|
|
|
font: inherit;
|
|
|
|
|
outline: 0;
|
|
|
|
|
padding: 18px 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .names {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
overflow-x: hidden;
|
2017-04-30 10:20:43 +00:00
|
|
|
|
will-change: transform, scroll-position;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2014-10-04 19:47:27 +00:00
|
|
|
|
padding-bottom: 10px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 48px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-04-22 12:49:01 +00:00
|
|
|
|
#chat .names-filtered {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-22 19:34:10 +00:00
|
|
|
|
#chat .names .user {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
display: block;
|
2014-08-18 23:54:14 +00:00
|
|
|
|
line-height: 1.6;
|
2014-10-04 19:47:27 +00:00
|
|
|
|
padding: 0 16px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode::before {
|
2014-10-04 19:47:27 +00:00
|
|
|
|
content: "";
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
display: block;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
padding: 12px 16px 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode.owner::before {
|
2014-10-04 19:47:27 +00:00
|
|
|
|
content: "Owners";
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode.admin::before {
|
2014-10-04 19:47:27 +00:00
|
|
|
|
content: "Administrators";
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode.op::before {
|
2014-10-04 19:47:27 +00:00
|
|
|
|
content: "Operators";
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode.half-op::before {
|
2014-10-06 16:31:32 +00:00
|
|
|
|
content: "Half-Operators";
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode.voice::before {
|
2014-10-04 19:47:27 +00:00
|
|
|
|
content: "Voiced";
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode.normal::before {
|
2014-10-04 19:47:27 +00:00
|
|
|
|
content: "Users";
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .user-mode-search::before {
|
2017-01-28 17:37:26 +00:00
|
|
|
|
content: "Search Results";
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-21 05:52:18 +00:00
|
|
|
|
#loading {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#loading p {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-06-21 05:52:18 +00:00
|
|
|
|
#loading-slow {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sign-in label {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 10px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sign-in .btn {
|
|
|
|
|
margin-top: 25px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#sign-in .error {
|
|
|
|
|
color: #e74c3c;
|
|
|
|
|
margin-top: 1em;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#connect label {
|
|
|
|
|
display: block;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
margin-top: 11px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#connect .port::before {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
content: ":";
|
2014-09-13 01:03:16 +00:00
|
|
|
|
margin: 9px 0 0 -17px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-10 15:56:19 +00:00
|
|
|
|
#connect .tls {
|
|
|
|
|
float: left;
|
|
|
|
|
font-size: 14px;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
margin-top: 6px;
|
2014-09-10 15:56:19 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-10 15:56:19 +00:00
|
|
|
|
#connect .tls input {
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 3px 10px 0 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#connect .btn {
|
2014-09-10 15:56:19 +00:00
|
|
|
|
float: left;
|
2014-09-13 01:03:16 +00:00
|
|
|
|
margin-top: 30px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#settings .opt {
|
|
|
|
|
display: block;
|
2017-08-06 04:49:22 +00:00
|
|
|
|
padding: 5px 0 5px 1px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#settings .opt input {
|
2017-08-06 04:49:22 +00:00
|
|
|
|
margin-right: 6px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-05 19:28:05 +00:00
|
|
|
|
#settings .extra-help,
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#settings #play {
|
|
|
|
|
color: #7f8c8d;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-05 19:28:05 +00:00
|
|
|
|
#settings .extra-help {
|
|
|
|
|
cursor: help;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-06 04:49:22 +00:00
|
|
|
|
#settings h2 .extra-help {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
font-size: 0.8em;
|
2017-08-06 04:49:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 05:47:16 +00:00
|
|
|
|
#settings #play {
|
|
|
|
|
font-size: 14px;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s;
|
2016-07-12 05:47:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#settings #play:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.8;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-02-17 00:14:43 +00:00
|
|
|
|
#settings #change-password .error,
|
|
|
|
|
#settings #change-password .success {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#settings #change-password .error {
|
|
|
|
|
color: #e74c3c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#settings #change-password .success {
|
|
|
|
|
color: #2ecc40;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-03 16:43:30 +00:00
|
|
|
|
#settings .error {
|
|
|
|
|
color: #e74c3c;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
margin-top: 0.2em;
|
2016-03-03 16:43:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 07:15:34 +00:00
|
|
|
|
#help .help-item {
|
|
|
|
|
display: table-row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#help .help-item .subject,
|
|
|
|
|
#help .help-item .description {
|
|
|
|
|
display: table-cell;
|
2017-03-30 06:19:26 +00:00
|
|
|
|
font-size: 14px;
|
2017-02-28 07:15:34 +00:00
|
|
|
|
padding-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#help .help-item .subject {
|
|
|
|
|
white-space: nowrap;
|
2017-04-24 23:01:24 +00:00
|
|
|
|
padding-right: 15px;
|
2017-02-28 07:15:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#help .help-item .description p {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 07:21:26 +00:00
|
|
|
|
#help .about {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.8;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#form {
|
2014-09-27 00:21:14 +00:00
|
|
|
|
background: #eee;
|
|
|
|
|
border-top: 1px solid #ddd;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex: 0 0 auto;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
flex: 0 0 auto;
|
2016-07-05 23:23:46 +00:00
|
|
|
|
padding: 5px;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-07-05 23:23:46 +00:00
|
|
|
|
#windows #form .input {
|
2017-05-09 09:39:15 +00:00
|
|
|
|
font: 13px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
border-radius: 2px;
|
2016-07-05 23:23:46 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
background: white;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
display: -webkit-flex;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
display: flex;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-align-items: flex-end;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
align-items: flex-end;
|
2014-09-21 15:21:26 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-12-10 09:33:36 +00:00
|
|
|
|
#connection-error {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#connection-error.shown {
|
2016-12-13 06:27:56 +00:00
|
|
|
|
display: block;
|
2016-12-10 09:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 06:10:29 +00:00
|
|
|
|
[contenteditable]:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Nick editor */
|
|
|
|
|
|
2014-09-25 23:51:53 +00:00
|
|
|
|
#form #nick {
|
|
|
|
|
background: #f6f6f6;
|
2014-09-27 00:21:14 +00:00
|
|
|
|
color: #666;
|
2014-09-25 23:51:53 +00:00
|
|
|
|
font: inherit;
|
|
|
|
|
font-size: 11px;
|
2016-08-02 04:33:16 +00:00
|
|
|
|
margin: 4px;
|
2016-07-29 06:10:29 +00:00
|
|
|
|
line-height: 22px;
|
2014-09-25 23:51:53 +00:00
|
|
|
|
height: 24px;
|
2016-07-29 06:10:29 +00:00
|
|
|
|
padding-left: 9px;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
border-radius: 2px;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex: 0 0 auto;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
flex: 0 0 auto;
|
2016-07-29 06:10:29 +00:00
|
|
|
|
border: 1px solid transparent;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: border-color 0.2s;
|
2014-09-25 23:51:53 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-07-29 06:10:29 +00:00
|
|
|
|
#form #nick-value {
|
|
|
|
|
padding-right: 5px;
|
2016-04-10 09:08:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 06:10:29 +00:00
|
|
|
|
#form #nick.editable {
|
|
|
|
|
border-color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#nick button#set-nick,
|
|
|
|
|
#nick button#submit-nick,
|
|
|
|
|
#nick button#cancel-nick {
|
|
|
|
|
color: #aaa;
|
|
|
|
|
width: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#nick.editable button#set-nick,
|
2016-08-03 05:06:58 +00:00
|
|
|
|
#nick.editable #set-nick-tooltip,
|
2016-07-29 06:10:29 +00:00
|
|
|
|
#nick button#submit-nick,
|
2016-08-03 05:06:58 +00:00
|
|
|
|
#nick:not(.editable) #save-nick-tooltip,
|
|
|
|
|
#nick button#cancel-nick,
|
|
|
|
|
#nick:not(.editable) #cancel-nick-tooltip {
|
2016-07-29 06:10:29 +00:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#nick.editable button#submit-nick,
|
|
|
|
|
#nick.editable button#cancel-nick {
|
|
|
|
|
display: inline-block;
|
2016-04-10 09:08:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 06:10:29 +00:00
|
|
|
|
/* End nick editor */
|
|
|
|
|
|
2014-09-25 23:51:53 +00:00
|
|
|
|
#form #input {
|
2016-06-05 02:48:41 +00:00
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
2014-09-25 23:51:53 +00:00
|
|
|
|
font: inherit;
|
2016-07-15 06:42:47 +00:00
|
|
|
|
min-height: 18px; /* Required when computing input height at char deletion */
|
2016-06-05 02:48:41 +00:00
|
|
|
|
height: 18px;
|
|
|
|
|
max-height: 90px;
|
2017-05-09 09:39:15 +00:00
|
|
|
|
line-height: 1.4;
|
2014-09-25 23:51:53 +00:00
|
|
|
|
outline: none;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
margin: 5px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
resize: none;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex: 1 0 auto;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
flex: 1 0 auto;
|
|
|
|
|
align-self: center;
|
2014-09-25 23:51:53 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#form #submit {
|
2016-03-11 06:44:09 +00:00
|
|
|
|
color: #9ca5b4;
|
2016-07-12 05:47:16 +00:00
|
|
|
|
font-size: 14px;
|
2016-08-02 04:33:16 +00:00
|
|
|
|
height: 32px;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s;
|
2017-04-21 18:00:57 +00:00
|
|
|
|
width: 32px;
|
2016-09-21 04:26:22 +00:00
|
|
|
|
-webkit-flex: 0 0 auto;
|
2016-06-05 02:48:41 +00:00
|
|
|
|
flex: 0 0 auto;
|
2016-03-11 06:44:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-12 11:34:10 +00:00
|
|
|
|
#context-menu-container {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-11 00:13:26 +00:00
|
|
|
|
#context-menu,
|
|
|
|
|
.textcomplete-menu {
|
2016-02-12 11:34:10 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
min-width: 160px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background-color: #fff;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
2016-03-20 20:55:13 +00:00
|
|
|
|
border-radius: 2px;
|
2016-02-12 11:34:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-20 21:03:39 +00:00
|
|
|
|
.context-menu-divider {
|
|
|
|
|
height: 1px;
|
|
|
|
|
margin: 6px 0;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
2016-02-12 11:34:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-11 00:13:26 +00:00
|
|
|
|
.context-menu-item,
|
|
|
|
|
.textcomplete-item {
|
2016-02-12 11:34:10 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: block;
|
2016-03-20 21:03:39 +00:00
|
|
|
|
padding: 4px 8px;
|
2016-02-12 11:34:10 +00:00
|
|
|
|
color: #333;
|
2016-03-20 21:03:39 +00:00
|
|
|
|
margin-top: 6px;
|
|
|
|
|
margin-bottom: 6px;
|
2017-08-23 14:19:04 +00:00
|
|
|
|
line-height: 1.4;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: background-color 0.2s;
|
2016-02-12 11:34:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-11 00:13:26 +00:00
|
|
|
|
.context-menu-item:hover,
|
|
|
|
|
.textcomplete-item:hover,
|
|
|
|
|
.textcomplete-menu .active {
|
2016-02-12 11:34:10 +00:00
|
|
|
|
background-color: #f6f6f6;
|
2017-07-15 00:43:47 +00:00
|
|
|
|
transition: none;
|
2016-02-12 11:34:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.context-menu-item::before,
|
|
|
|
|
.textcomplete-item::before {
|
2016-02-12 11:34:10 +00:00
|
|
|
|
width: 20px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-11 00:13:26 +00:00
|
|
|
|
.textcomplete-item a {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-24 23:01:24 +00:00
|
|
|
|
.textcomplete-item a:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-23 14:19:04 +00:00
|
|
|
|
.emoji {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 1.4em;
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-31 20:53:21 +00:00
|
|
|
|
.topic .emoji {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-11 00:13:26 +00:00
|
|
|
|
.textcomplete-item .emoji {
|
2017-08-23 14:19:04 +00:00
|
|
|
|
width: 32px;
|
2016-12-11 00:13:26 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-30 10:18:21 +00:00
|
|
|
|
.textcomplete-item .irc-bg {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-20 14:33:47 +00:00
|
|
|
|
/**
|
2017-04-04 05:27:13 +00:00
|
|
|
|
* Tooltips v0.5.3
|
2016-02-20 14:33:47 +00:00
|
|
|
|
* See http://primercss.io/tooltips/
|
|
|
|
|
*/
|
2017-04-04 05:27:13 +00:00
|
|
|
|
|
2016-02-20 14:33:47 +00:00
|
|
|
|
.tooltipped {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1000000;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
display: none;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
padding: 5px 8px;
|
2016-08-03 05:11:10 +00:00
|
|
|
|
font: 12px Lato;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
line-height: 1.2;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
2016-08-03 05:11:50 +00:00
|
|
|
|
color: #fff;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-shadow: none;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
content: attr(aria-label);
|
2016-08-03 05:11:50 +00:00
|
|
|
|
background: #222;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
border-radius: 3px;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
opacity: 0;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped::before {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1000001;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
display: none;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
2016-08-03 05:11:50 +00:00
|
|
|
|
color: #fff;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
pointer-events: none;
|
|
|
|
|
content: "";
|
|
|
|
|
border: 5px solid transparent;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes tooltip-appear {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes tooltip-appear {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped:hover::before,
|
|
|
|
|
.tooltipped:hover::after,
|
|
|
|
|
.tooltipped:active::before,
|
|
|
|
|
.tooltipped:active::after,
|
|
|
|
|
.tooltipped:focus::before,
|
|
|
|
|
.tooltipped:focus::after {
|
2017-04-04 05:27:13 +00:00
|
|
|
|
display: inline-block;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
text-decoration: none;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
-webkit-animation-name: tooltip-appear;
|
|
|
|
|
animation-name: tooltip-appear;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
-webkit-animation-duration: 0.1s;
|
|
|
|
|
animation-duration: 0.1s;
|
2017-04-04 05:27:13 +00:00
|
|
|
|
-webkit-animation-fill-mode: forwards;
|
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
|
-webkit-animation-timing-function: ease-in;
|
|
|
|
|
animation-timing-function: ease-in;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
-webkit-animation-delay: 0.4s;
|
|
|
|
|
animation-delay: 0.4s;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-no-delay:hover::before,
|
|
|
|
|
.tooltipped-no-delay:hover::after,
|
|
|
|
|
.tooltipped-no-delay:active::before,
|
|
|
|
|
.tooltipped-no-delay:active::after,
|
|
|
|
|
.tooltipped-no-delay:focus::before,
|
|
|
|
|
.tooltipped-no-delay:focus::after {
|
2017-08-05 19:28:05 +00:00
|
|
|
|
-webkit-animation-delay: 0s;
|
|
|
|
|
animation-delay: 0s;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-s::after,
|
|
|
|
|
.tooltipped-se::after,
|
|
|
|
|
.tooltipped-sw::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
top: 100%;
|
|
|
|
|
right: 50%;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-s::before,
|
|
|
|
|
.tooltipped-se::before,
|
|
|
|
|
.tooltipped-sw::before {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
top: auto;
|
|
|
|
|
right: 50%;
|
|
|
|
|
bottom: -5px;
|
|
|
|
|
margin-right: -5px;
|
2016-08-03 05:11:50 +00:00
|
|
|
|
border-bottom-color: #222;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-se::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
right: auto;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -15px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-sw::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
margin-right: -15px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-n::after,
|
|
|
|
|
.tooltipped-ne::after,
|
|
|
|
|
.tooltipped-nw::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
right: 50%;
|
|
|
|
|
bottom: 100%;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-n::before,
|
|
|
|
|
.tooltipped-ne::before,
|
|
|
|
|
.tooltipped-nw::before {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
top: -5px;
|
|
|
|
|
right: 50%;
|
|
|
|
|
bottom: auto;
|
|
|
|
|
margin-right: -5px;
|
2016-08-03 05:11:50 +00:00
|
|
|
|
border-top-color: #222;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-ne::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
right: auto;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -15px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-nw::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
margin-right: -15px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-s::after,
|
|
|
|
|
.tooltipped-n::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
-webkit-transform: translateX(50%);
|
|
|
|
|
transform: translateX(50%);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-w::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
right: 100%;
|
|
|
|
|
bottom: 50%;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
-webkit-transform: translateY(50%);
|
|
|
|
|
transform: translateY(50%);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-w::before {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
top: 50%;
|
|
|
|
|
bottom: 50%;
|
|
|
|
|
left: -5px;
|
|
|
|
|
margin-top: -5px;
|
2016-08-03 05:11:50 +00:00
|
|
|
|
border-left-color: #222;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-e::after {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
bottom: 50%;
|
|
|
|
|
left: 100%;
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
-webkit-transform: translateY(50%);
|
|
|
|
|
transform: translateY(50%);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-e::before {
|
2016-02-20 14:33:47 +00:00
|
|
|
|
top: 50%;
|
|
|
|
|
right: -5px;
|
|
|
|
|
bottom: 50%;
|
|
|
|
|
margin-top: -5px;
|
2016-08-03 05:11:50 +00:00
|
|
|
|
border-right-color: #222;
|
2016-02-20 14:33:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-21 11:58:14 +00:00
|
|
|
|
@media
|
2017-04-04 05:27:13 +00:00
|
|
|
|
only screen and (min-resolution: 192dpi),
|
|
|
|
|
only screen and (min-resolution: 2dppx) {
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-w::after {
|
2017-04-04 05:27:13 +00:00
|
|
|
|
margin-right: 4.5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-03 05:11:50 +00:00
|
|
|
|
/* End tooltips */
|
|
|
|
|
|
2014-10-10 23:11:57 +00:00
|
|
|
|
/**
|
2014-12-11 03:35:17 +00:00
|
|
|
|
* IRC Message Styling
|
|
|
|
|
* https://github.com/megawac/irc-style-parser
|
|
|
|
|
* Colours are credit to http://clrs.cc/
|
|
|
|
|
*/
|
|
|
|
|
.irc-fg0 { color: #fff; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg1 { color: #000; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg2 { color: #001f3f; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg3 { color: #2ecc40; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg4 { color: #ff4136; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg5 { color: #85144b; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg6 { color: #b10dc9; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg7 { color: #ff851b; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg8 { color: #ffdc00; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg9 { color: #01ff70; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg10 { color: #39cccc; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg11 { color: #7fdbff; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg12 { color: #0074d9; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg13 { color: #f012be; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg14 { color: #aaa; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-fg15 { color: #ddd; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg0 { background: #fff; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg1 { background: #000; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg2 { background: #001f3f; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg3 { background: #2ecc40; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg4 { background: #ff4136; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg5 { background: #85144b; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg6 { background: #b10dc9; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg7 { background: #ff851b; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg8 { background: #ffdc00; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg9 { background: #01ff70; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg10 { background: #39cccc; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg11 { background: #7fdbff; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg12 { background: #0074d9; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg13 { background: #f012be; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg14 { background: #aaa; }
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-12-11 03:35:17 +00:00
|
|
|
|
.irc-bg15 { background: #ddd; }
|
2014-10-10 23:11:57 +00:00
|
|
|
|
|
2014-12-10 11:30:45 +00:00
|
|
|
|
.irc-bold {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
font-weight: bold;
|
2014-12-10 11:30:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.irc-underline {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
text-decoration: underline;
|
2014-12-10 11:30:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.irc-italic {
|
2016-02-17 18:38:42 +00:00
|
|
|
|
font-style: italic;
|
2014-12-10 11:30:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-11 00:17:27 +00:00
|
|
|
|
@media (min-width: 480px) {
|
|
|
|
|
/* Fade out for long usernames */
|
|
|
|
|
|
|
|
|
|
#chat .from {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .from::after {
|
2017-05-11 00:17:27 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
2017-06-22 19:05:13 +00:00
|
|
|
|
bottom: 0;
|
2017-05-11 00:17:27 +00:00
|
|
|
|
width: 10px;
|
|
|
|
|
height: 100%;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
|
2017-05-11 00:17:27 +00:00
|
|
|
|
content: " ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* End fade out for long usernames */
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
@media (max-width: 768px) {
|
2016-09-15 03:50:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* TODO Replace this with `@media (hover: hover)` when Firefox supports it
|
|
|
|
|
* See:
|
|
|
|
|
* - http://stackoverflow.com/a/28058919/1935861
|
|
|
|
|
* - http://caniuse.com/#feat=css-media-interaction
|
|
|
|
|
* - https://www.w3.org/TR/mediaqueries-4/
|
|
|
|
|
* - https://developer.mozilla.org/en-US/docs/Web/CSS/@media/hover
|
|
|
|
|
*/
|
2017-08-21 06:18:33 +00:00
|
|
|
|
.tooltipped-no-touch:hover::before,
|
|
|
|
|
.tooltipped-no-touch:hover::after {
|
2016-09-15 03:50:57 +00:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
.container {
|
|
|
|
|
margin-top: 60px !important;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-05-29 20:21:45 +00:00
|
|
|
|
#sidebar,
|
2014-09-19 23:12:17 +00:00
|
|
|
|
#footer {
|
2016-05-29 20:21:45 +00:00
|
|
|
|
left: -220px;
|
2014-09-19 23:12:17 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#sidebar .empty::before {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#main {
|
2016-05-29 20:21:45 +00:00
|
|
|
|
left: 0;
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .chat {
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-10 21:43:56 +00:00
|
|
|
|
#viewport .lt,
|
|
|
|
|
#viewport .channel .rt {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
display: block;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#windows .window .header {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-04-28 18:58:00 +00:00
|
|
|
|
#chat .channel .chat {
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .sidebar {
|
|
|
|
|
right: -180px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2017-04-30 10:20:43 +00:00
|
|
|
|
#viewport.rt #chat .sidebar {
|
|
|
|
|
right: 0;
|
2016-06-12 02:16:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#chat .title::before {
|
2017-04-30 10:20:43 +00:00
|
|
|
|
display: none;
|
2016-06-12 02:16:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-09 09:39:15 +00:00
|
|
|
|
@media (min-width: 1610px) {
|
|
|
|
|
#windows .header .topic,
|
|
|
|
|
.messages .msg,
|
|
|
|
|
.sidebar {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
@media (max-width: 479px) {
|
2014-09-10 15:56:19 +00:00
|
|
|
|
.container {
|
2014-09-13 01:03:16 +00:00
|
|
|
|
margin: 40px 0 !important;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#connect .tls {
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-09-13 01:03:16 +00:00
|
|
|
|
#windows .input {
|
|
|
|
|
margin-bottom: 2px;
|
2014-09-10 15:56:19 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .messages {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .msg {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 2px 0;
|
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-06-03 20:10:32 +00:00
|
|
|
|
#chat .time,
|
2014-08-15 13:52:14 +00:00
|
|
|
|
#chat .from,
|
2017-07-20 05:58:04 +00:00
|
|
|
|
#chat .content {
|
2014-08-15 13:52:14 +00:00
|
|
|
|
border: 0;
|
|
|
|
|
display: inline;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2016-05-13 10:23:05 +00:00
|
|
|
|
|
2017-08-23 00:18:34 +00:00
|
|
|
|
#chat .condensed .time,
|
|
|
|
|
#chat .condensed .from {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-20 23:32:23 +00:00
|
|
|
|
#chat .date-marker,
|
2016-07-04 21:57:49 +00:00
|
|
|
|
#chat .unread-marker {
|
|
|
|
|
margin: 0;
|
2016-05-13 10:23:05 +00:00
|
|
|
|
}
|
2017-02-28 07:15:34 +00:00
|
|
|
|
|
|
|
|
|
#help .help-item .subject {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#help .help-item .description {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2014-08-15 13:52:14 +00:00
|
|
|
|
}
|
2014-09-15 17:41:23 +00:00
|
|
|
|
|
2016-01-18 17:49:23 +00:00
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
2016-02-17 18:38:42 +00:00
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
2016-01-18 17:49:23 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-01-18 17:49:23 +00:00
|
|
|
|
::-webkit-scrollbar:hover {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background-color: rgba(0, 0, 0, 0.09);
|
2016-01-18 17:49:23 +00:00
|
|
|
|
}
|
2016-02-17 18:38:42 +00:00
|
|
|
|
|
2016-01-18 17:49:23 +00:00
|
|
|
|
::-webkit-scrollbar-thumb:vertical {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
2016-01-18 17:49:23 +00:00
|
|
|
|
border-radius: 100px;
|
|
|
|
|
}
|
2016-06-22 20:05:25 +00:00
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:vertical:active {
|
2017-08-21 06:22:40 +00:00
|
|
|
|
background: rgba(0, 0, 0, 0.6);
|
2016-06-22 20:05:25 +00:00
|
|
|
|
}
|
2017-07-12 06:55:41 +00:00
|
|
|
|
|
|
|
|
|
/* Image viewer */
|
|
|
|
|
|
|
|
|
|
#image-viewer,
|
|
|
|
|
#image-viewer .close-btn {
|
|
|
|
|
/* Vertically and horizontally center stuff */
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2017-07-24 06:31:12 +00:00
|
|
|
|
background: black;
|
2017-07-12 06:55:41 +00:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
opacity: 0;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
transition: opacity 0.2s, visibility 0.2s;
|
2017-07-12 06:55:41 +00:00
|
|
|
|
z-index: 999;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-24 06:31:12 +00:00
|
|
|
|
#image-viewer.opened {
|
2017-07-12 06:55:41 +00:00
|
|
|
|
visibility: visible;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-23 17:14:27 +00:00
|
|
|
|
#image-viewer .close-btn,
|
|
|
|
|
#image-viewer .previous-image-btn,
|
|
|
|
|
#image-viewer .next-image-btn {
|
2017-07-12 06:55:41 +00:00
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 2em;
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
color: white;
|
2017-08-21 06:22:40 +00:00
|
|
|
|
opacity: 0.6;
|
|
|
|
|
transition: 0.2s opacity;
|
2017-07-12 06:55:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-23 17:14:27 +00:00
|
|
|
|
#image-viewer .close-btn {
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 2em;
|
|
|
|
|
z-index: 1002;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-21 06:18:33 +00:00
|
|
|
|
#image-viewer .close-btn::before {
|
2017-07-23 17:14:27 +00:00
|
|
|
|
content: "×";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .previous-image-btn,
|
|
|
|
|
#image-viewer .next-image-btn {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
z-index: 1001;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .previous-image-btn {
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .next-image-btn {
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .close-btn:hover,
|
|
|
|
|
#image-viewer .previous-image-btn:hover,
|
|
|
|
|
#image-viewer .next-image-btn:hover {
|
2017-07-12 06:55:41 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .image-link {
|
|
|
|
|
margin: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .image-link:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .image-link img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
|
|
/* Top/Bottom margins + button height + image/button margin */
|
|
|
|
|
max-height: calc(100vh - 2 * 10px - 37px - 10px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#image-viewer .open-btn {
|
|
|
|
|
margin: 0 auto 10px;
|
|
|
|
|
}
|
2017-07-18 14:24:40 +00:00
|
|
|
|
|
|
|
|
|
/* Correctly handle multiple successive whitespace characters.
|
|
|
|
|
For example: user has quit ( ===> L O L <=== ) */
|
|
|
|
|
|
|
|
|
|
#windows .header .topic,
|
|
|
|
|
#chat .message .text,
|
|
|
|
|
#chat .motd .text,
|
|
|
|
|
#chat .notice .text,
|
|
|
|
|
#chat .ctcp-message,
|
|
|
|
|
#chat .part-reason,
|
|
|
|
|
#chat .quit-reason,
|
|
|
|
|
#chat .new-topic,
|
2017-07-20 05:58:04 +00:00
|
|
|
|
#chat .action .text,
|
2017-07-18 14:24:40 +00:00
|
|
|
|
#chat table.channel-list .topic {
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
}
|