thelounge/client/css/style.css

1688 lines
26 KiB
CSS
Raw Normal View History

@font-face {
font-family: "Lato";
font-weight: 400;
font-style: normal;
src: url("fonts/Lato-regular/Lato-regular.eot");
src:
url("fonts/Lato-regular/Lato-regular.eot?#iefix") format("embedded-opentype"),
local("Lato Regular"),
local("Lato-regular"),
url("fonts/Lato-regular/Lato-regular.woff2") format("woff2"),
url("fonts/Lato-regular/Lato-regular.woff") format("woff"),
url("fonts/Lato-regular/Lato-regular.ttf") format("truetype"),
url("fonts/Lato-regular/Lato-regular.svg#Lato") format("svg");
}
@font-face {
font-family: "Lato";
font-weight: 700;
font-style: normal;
src: url("fonts/Lato-700/Lato-700.eot");
src:
url("fonts/Lato-700/Lato-700.eot?#iefix") format("embedded-opentype"),
local("Lato Bold"),
local("Lato-700"),
url("fonts/Lato-700/Lato-700.woff2") format("woff2"),
url("fonts/Lato-700/Lato-700.woff") format("woff"),
url("fonts/Lato-700/Lato-700.ttf") format("truetype"),
url("fonts/Lato-700/Lato-700.svg#Lato") format("svg");
}
@font-face {
font-family: "Open Sans";
font-weight: 300;
font-style: normal;
src: url("fonts/Open-Sans-300/Open-Sans-300.eot");
src:
url("fonts/Open-Sans-300/Open-Sans-300.eot?#iefix") format("embedded-opentype"),
local("Open Sans Light"),
local("Open-Sans-300"),
url("fonts/Open-Sans-300/Open-Sans-300.woff2") format("woff2"),
url("fonts/Open-Sans-300/Open-Sans-300.woff") format("woff"),
url("fonts/Open-Sans-300/Open-Sans-300.ttf") format("truetype"),
url("fonts/Open-Sans-300/Open-Sans-300.svg#OpenSans") format("svg");
}
@font-face {
font-family: "Open Sans";
font-weight: 400;
font-style: normal;
src: url("fonts/Open-Sans-regular/Open-Sans-regular.eot");
src:
url("fonts/Open-Sans-regular/Open-Sans-regular.eot?#iefix") format("embedded-opentype"),
local("Open Sans"),
local("Open-Sans-regular"),
url("fonts/Open-Sans-regular/Open-Sans-regular.woff2") format("woff2"),
url("fonts/Open-Sans-regular/Open-Sans-regular.woff") format("woff"),
url("fonts/Open-Sans-regular/Open-Sans-regular.ttf") format("truetype"),
url("fonts/Open-Sans-regular/Open-Sans-regular.svg#OpenSans") format("svg");
}
@font-face {
font-family: "Open Sans";
font-weight: 700;
font-style: normal;
src: url("fonts/Open-Sans-700/Open-Sans-700.eot");
src:
url("fonts/Open-Sans-700/Open-Sans-700.eot?#iefix") format("embedded-opentype"),
local("Open Sans Bold"),
local("Open-Sans-700"),
url("fonts/Open-Sans-700/Open-Sans-700.woff2") format("woff2"),
url("fonts/Open-Sans-700/Open-Sans-700.woff") format("woff"),
url("fonts/Open-Sans-700/Open-Sans-700.ttf") format("truetype"),
url("fonts/Open-Sans-700/Open-Sans-700.svg#OpenSans") format("svg");
}
2015-04-14 21:13:38 +02:00
@font-face {
font-family: FontAwesome;
2014-08-29 22:54:11 +02:00
src: url("fonts/fontawesome.svg") format("svg"), url("fonts/fontawesome.woff") format("woff");
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
html,
body {
height: 100%;
}
2014-08-15 15:52:14 +02:00
body {
2014-09-10 17:56:19 +02:00
background: #455164;
2014-08-15 15:52:14 +02:00
color: #222;
font: 16px Lato, sans-serif;
margin: 0;
}
2014-08-15 15:52:14 +02:00
a {
2014-08-15 23:33:22 +02:00
transition: opacity .2s;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
a:hover {
text-decoration: none;
opacity: .8;
}
2014-08-15 15:52:14 +02:00
h1,
h2 {
font: inherit;
line-height: inherit;
margin: 0;
}
2014-08-15 15:52:14 +02:00
input {
outline: 0;
}
button,
.user {
2014-08-15 15:52:14 +02:00
border: none;
background: none;
margin: 0;
outline: none;
padding: 0;
}
2014-11-18 23:50:55 +01:00
.web-app-mode {
padding-top: 20px;
}
2014-08-15 15:52:14 +02:00
.btn {
border: 2px solid #84ce88;
border-radius: 3px;
color: #84ce88;
display: inline-block;
font: bold 12px Lato, sans-serif;
2014-08-15 15:52:14 +02:00
letter-spacing: 1px;
margin-bottom: 10px;
padding: 9px 17px;
text-transform: uppercase;
transition: background .2s, border-color .2s, color .2s;
word-spacing: 3px;
}
2014-08-15 15:52:14 +02:00
.btn:disabled,
.btn:hover {
background: #84ce88;
color: #fff;
}
2014-08-15 15:52:14 +02:00
.btn:active {
box-shadow: none;
opacity: .8;
}
2014-08-15 15:52:14 +02:00
.btn:disabled {
opacity: .6;
}
2014-08-15 15:52:14 +02:00
.container {
margin: 80px auto;
max-width: 480px;
2014-08-15 15:52:14 +02:00
overflow: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 0 30px;
}
2014-08-15 15:52:14 +02:00
::-moz-placeholder {
2014-09-10 17:56:19 +02:00
color: rgba(0, 0, 0, .35);
2014-08-15 15:52:14 +02:00
opacity: 1;
}
2014-08-15 15:52:14 +02:00
::-webkit-input-placeholder {
2014-09-10 17:56:19 +02:00
color: rgba(0, 0, 0, .35);
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
:-ms-input-placeholder {
2014-09-10 17:56:19 +02:00
color: rgba(0, 0, 0, .35) !important;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#wrap {
height: 100%;
overflow: hidden;
}
2014-08-15 15:52:14 +02:00
#viewport {
height: 100%;
transition: all .4s;
-webkit-transform: translateZ(0);
transform: translateZ(0);
2014-08-15 15:52:14 +02:00
-webkit-perspective: 1000;
perspective: 1000;
2014-08-15 15:52:14 +02:00
}
2014-09-10 23:43:56 +02:00
#viewport .lt,
2016-03-19 19:20:11 +01:00
#viewport .rt,
#chat button.menu {
2014-09-10 23:43:56 +02:00
color: #ccc;
display: none;
float: left;
line-height: 40px;
height: 36px;
margin: 6px 12px 0 -12px;
width: 36px;
}
#viewport .lt:before {
font: 14px FontAwesome;
2014-09-10 23:43:56 +02:00
content: "\f0c9";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#viewport .rt:before {
font: 14px FontAwesome;
content: "\f0c0";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2014-09-10 23:43:56 +02:00
}
2016-03-19 19:20:11 +01:00
#chat button.menu:before {
font: 14px FontAwesome;
content: "\f142";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2014-09-10 23:43:56 +02:00
#viewport .rt {
2014-10-10 21:21:40 +02:00
display: block;
2014-09-10 23:43:56 +02:00
float: right;
2016-03-19 19:20:11 +01:00
margin: 6px -12px 0 0;
}
#chat button.menu {
display: block;
float: right;
margin: 6px -8px 0 12px;
2014-09-10 23:43:56 +02:00
}
2014-10-10 21:21:40 +02:00
#viewport.rt #chat .sidebar {
-webkit-transform: translate3d(180px, 0, 0);
transform: translate3d(180px, 0, 0);
2014-10-10 21:21:40 +02:00
}
2014-08-15 15:52:14 +02:00
#sidebar {
2014-09-20 01:56:38 +02:00
bottom: 52px;
2014-08-15 15:52:14 +02:00
left: 0;
overflow: hidden;
-webkit-overflow-scrolling: touch;
position: absolute;
top: 0;
width: 220px;
}
2014-08-15 15:52:14 +02:00
#sidebar button,
#sidebar .chan,
2014-08-15 15:52:14 +02:00
#sidebar .sign-out {
border: 1px solid transparent;
border-radius: 2px;
2014-08-29 22:54:11 +02:00
color: #99a2b4;
cursor: pointer;
2014-08-15 15:52:14 +02:00
font-size: 14px;
}
2014-08-15 15:52:14 +02:00
#sidebar button:hover,
#sidebar .chan:hover,
2014-08-15 15:52:14 +02:00
#sidebar .active {
color: #fff;
}
2014-08-15 15:52:14 +02:00
#sidebar .networks {
min-height: 100%;
2014-09-24 01:05:07 +02:00
padding: 20px 30px 0;
2014-09-20 01:12:17 +02:00
}
2014-09-20 01:12:17 +02:00
#sidebar .networks:empty {
padding: 0;
2014-08-15 15:52:14 +02:00
}
2014-09-24 01:05:07 +02:00
#sidebar .network,
#sidebar .network-placeholder {
margin-bottom: 30px;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#sidebar .empty {
2014-09-10 17:56:19 +02:00
color: #9ca5b4;
2014-08-15 15:52:14 +02:00
line-height: 1.6;
font-size: 12px;
margin-top: 20px;
padding: 20px 40px;
text-align: center;
}
2014-09-24 01:05:07 +02:00
#sidebar .chan,
#sidebar .chan-placeholder {
2014-08-15 15:52:14 +02:00
display: block;
margin: 1px -10px;
2016-02-21 02:28:45 +01:00
padding: 6px 10px 8px 36px;
2014-08-15 15:52:14 +02:00
position: relative;
text-align: left;
2014-09-24 01:05:07 +02:00
transition: color .2s;
2014-08-29 22:54:11 +02:00
width: 180px;
2014-08-15 15:52:14 +02:00
}
2014-09-24 01:05:07 +02:00
#sidebar .chan-placeholder {
padding-bottom: 10px;
}
2014-08-15 15:52:14 +02:00
#sidebar .chan:first-child {
color: #84ce88;
font-size: 15px;
font-weight: bold;
}
2014-08-15 15:52:14 +02:00
#sidebar .chan:first-child:hover,
#sidebar .chan:first-child.active {
color: #c0f8c3;
}
2014-08-29 22:54:11 +02:00
#sidebar .chan:before,
#chat .title:before {
font: 14px FontAwesome;
2014-09-30 20:00:23 +02:00
float: left;
margin-top: 3px;
margin-right: 12px;
width: 14px;
text-align: center;
2014-08-29 22:54:11 +02:00
}
2016-02-21 02:28:45 +01:00
#sidebar .chan:before {
position: absolute;
top: 4px;
left: 10px;
}
2014-08-29 22:54:11 +02:00
#chat .title:before {
2014-09-30 20:00:23 +02:00
margin-top: 17px;
2014-08-29 22:54:11 +02:00
}
2014-08-29 22:54:11 +02:00
#sidebar .chan.lobby:before,
#chat .lobby .title:before {
2014-09-30 20:00:23 +02:00
content: "\f0a0";
2014-08-29 22:54:11 +02:00
}
2014-08-29 22:54:11 +02:00
#sidebar .chan.query:before,
#chat .query .title:before {
2014-09-30 20:00:23 +02:00
content: "\f0e6";
2014-08-29 22:54:11 +02:00
}
2014-08-29 22:54:11 +02:00
#sidebar .chan.channel:before,
#chat .channel .title:before {
2014-09-30 20:00:23 +02:00
content: "\f0f6";
2014-08-29 22:54:11 +02:00
}
2016-02-21 02:28:45 +01:00
#sidebar .chan .name {
position: relative;
z-index: 0;
display: block;
overflow: hidden;
white-space: nowrap;
margin-right: 5px;
}
#sidebar .chan .name:after {
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 15:52:14 +02:00
#sidebar .badge {
background: rgba(255, 255, 255, .06);
border-radius: 3px;
color: #afb6c0;
font-size: 10px;
margin-top: 1px;
2016-02-21 02:28:45 +01:00
margin-right: -5px;
margin-left: 5px;
2014-08-15 15:52:14 +02:00
padding: 3px 6px;
2016-02-21 02:28:45 +01:00
float: right;
transition: opacity .2s, background-color .2s, color .2s;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#sidebar .badge.highlight {
background: #fff;
color: #49505a;
}
#sidebar .chan.active .badge,
2014-08-15 15:52:14 +02:00
#sidebar .badge:empty {
2016-02-19 19:09:50 +01:00
opacity: 0;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#sidebar .close {
border-radius: 3px;
2014-09-20 01:56:38 +02:00
margin-right: 5px;
visibility: hidden;
2014-08-15 15:52:14 +02:00
opacity: 0;
position: absolute;
2016-02-21 02:28:45 +01:00
z-index: 2;
2014-08-15 15:52:14 +02:00
right: 0;
transition: opacity .2s, background-color .2s;
2016-02-15 11:03:37 +01:00
}
#sidebar .close:before {
font-size: 18px;
font-weight: normal;
2016-02-15 11:03:37 +01:00
display: inline-block;
line-height: 18px;
2014-08-15 15:52:14 +02:00
width: 18px;
2016-02-15 11:03:37 +01:00
height: 18px;
text-align: center;
content: "×";
color: #fff;
2014-08-15 15:52:14 +02:00
}
2016-02-15 11:03:37 +01:00
#sidebar .chan.active .close {
visibility: visible;
opacity: .4;
}
#sidebar .chan.active .close:hover {
2014-08-15 15:52:14 +02:00
background-color: rgba(0, 0, 0, .1);
opacity: 1;
2014-08-15 15:52:14 +02:00
}
2014-09-20 01:12:17 +02:00
#sidebar .tse-scrollbar {
top: 2px;
right: 3px;
}
2016-02-12 12:34:10 +01:00
#sidebar,
#footer {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2014-08-15 15:52:14 +02:00
#footer {
2014-09-20 01:12:17 +02:00
background: rgba(0, 0, 0, .06);
border-radius: 2px;
bottom: 4px;
2014-09-20 01:56:38 +02:00
height: 48px;
2014-09-20 01:12:17 +02:00
left: 5px;
2014-09-20 01:56:38 +02:00
line-height: 48px;
2014-09-20 01:12:17 +02:00
position: absolute;
2014-08-15 15:52:14 +02:00
text-align: center;
2014-09-20 01:12:17 +02:00
width: 210px;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#footer button {
border: 0;
}
2014-08-15 15:52:14 +02:00
#footer button.active {
2014-09-20 01:12:17 +02:00
color: #fff;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#footer .icon {
2014-09-10 17:56:19 +02:00
color: #9ca5b4;
2014-08-15 15:52:14 +02:00
display: inline-block;
font: 14px FontAwesome;
2014-08-15 15:52:14 +02:00
line-height: 34px;
padding: 0 12px;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
.signed-out #footer .sign-in {
display: inline-block;
}
2014-08-15 15:52:14 +02:00
.signed-out #footer .connect,
.signed-out #footer .sign-out {
display: none;
}
2014-08-15 15:52:14 +02:00
.public #footer .sign-in,
.public #footer .sign-out {
display: none;
}
2014-08-15 15:52:14 +02:00
#footer .sign-in {
display: none;
}
2014-08-15 15:52:14 +02:00
#footer .sign-in:before {
2014-09-10 17:56:19 +02:00
content: "\f023";
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#footer .connect:before {
2014-09-10 17:56:19 +02:00
content: "\f067";
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#footer .settings:before {
2014-09-10 17:56:19 +02:00
content: "\f013";
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#footer .sign-out:before {
content: "\f011";
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#main {
background: #fff;
border-radius: 2px;
bottom: 4px;
left: 220px;
overflow: hidden;
position: absolute;
right: 5px;
top: 4px;
}
2014-08-15 15:52:14 +02:00
#header {
display: none;
height: 40px;
position: absolute;
top: 0;
width: 100%;
}
2014-08-15 15:52:14 +02:00
#windows {
bottom: 48px;
position: absolute;
top: 0;
2014-08-15 15:52:14 +02:00
width: 100%;
}
#windows label {
font-size: 14px;
}
2014-08-15 15:52:14 +02:00
#windows .input {
border: 1px solid #cdd3da;
2014-08-16 02:05:37 +02:00
border-radius: 2px;
2014-08-15 15:52:14 +02:00
color: #222;
font-size: 14px;
margin: 2px 0;
margin-bottom: 10px;
2014-08-15 15:52:14 +02:00
outline: 0;
padding: 8px 10px;
transition: border-color .2s;
-webkit-appearance: none;
width: 100%;
}
2014-08-15 15:52:14 +02:00
#windows .input:hover,
#windows .input:focus {
border-color: #79838c;
}
2014-08-15 15:52:14 +02:00
#windows .window:before,
#windows .chan:before {
background: #f4f4f4;
background-image: linear-gradient(#f4f4f4, #ececec);
border-bottom: 1px solid #d7d7d7;
content: " ";
display: block;
height: 10px;
position: relative;
z-index: 10;
}
2014-08-15 15:52:14 +02:00
#windows .chan,
#windows .window {
background: #fff;
bottom: 0;
display: none;
left: 0;
position: absolute;
right: 0;
top: 0;
}
2014-08-15 15:52:14 +02:00
#windows .window {
bottom: -44px !important;
2014-08-15 15:52:14 +02:00
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
2014-08-15 15:52:14 +02:00
#windows .window h1 {
font: 36px Lato;
}
2014-09-10 17:56:19 +02:00
#windows .window h2 {
border-bottom: 1px solid #eee;
color: #7f8c8d;
font-size: 22px;
margin: 30px 0 10px;
padding-bottom: 7px;
}
2014-08-15 15:52:14 +02:00
#windows .active {
display: block;
}
#windows .header {
2014-08-15 15:52:14 +02:00
border-bottom: 1px solid #e7e7e7;
2014-09-13 03:16:29 +02:00
line-height: 50px !important;
2014-08-15 15:52:14 +02:00
height: 48px;
padding: 0 20px;
overflow: hidden;
2014-08-15 15:52:14 +02:00
}
#windows .header .title {
2014-09-28 23:51:24 +02:00
font: 14px Lato;
2014-08-15 15:52:14 +02:00
}
#windows .header .topic {
2014-08-15 15:52:14 +02:00
color: #777;
margin-left: 8px;
2016-03-22 17:04:34 +01:00
word-break: break-all;
2014-08-15 15:52:14 +02:00
}
#windows .window .header {
display: none;
}
#chat {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
}
#chat,
#windows .header {
2015-04-16 10:07:13 +02:00
font: 12px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
line-height: 1.4;
}
#chat button:hover,
.user:hover {
opacity: .6;
}
2014-08-15 15:52:14 +02:00
#chat .chat,
#chat .sidebar {
top: 58px;
}
2014-08-15 15:52:14 +02:00
#chat .chat {
bottom: 0;
left: 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
position: absolute;
right: 180px;
}
#viewport.rt .chat {
right: 0;
}
2014-08-15 15:52:14 +02:00
#chat .sidebar {
background: #fff;
border-left: 1px solid #e7e7e7;
bottom: 0;
position: absolute;
right: 0;
width: 180px;
2014-10-10 21:21:40 +02:00
transition: all .4s;
-webkit-transform: translateZ(0);
transform: translateZ(0);
2014-10-10 21:21:40 +02:00
-webkit-perspective: 1000;
perspective: 1000;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .lobby .chat,
#chat .query .chat {
right: 0;
}
2014-08-15 15:52:14 +02:00
#chat .lobby .sidebar,
#chat .query .sidebar {
display: none;
}
2014-08-15 15:52:14 +02:00
#chat .show-more {
2014-09-28 23:51:24 +02:00
display: none;
padding: 10px;
2014-08-15 15:52:14 +02:00
width: 100%;
}
2014-09-28 23:51:24 +02: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;
font: 12px Lato, sans-serif;
height: 34px;
line-height: 0;
width: 100%;
}
2014-09-28 23:51:24 +02:00
#chat .show-more-button:hover {
2014-09-19 22:24:11 +02:00
opacity: 1;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .messages {
display: table;
2016-03-22 17:04:34 +01:00
table-layout: fixed;
2014-08-15 15:52:14 +02:00
width: 100%;
2016-02-28 00:22:52 +01:00
padding: 10px 0;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .msg {
display: table-row;
word-wrap: break-word;
}
2016-03-05 23:20:45 +01:00
.inline-channel {
cursor: pointer;
}
2016-03-05 23:20:45 +01:00
.inline-channel:hover {
opacity: .6;
}
2014-08-15 15:52:14 +02:00
#chat .time,
#chat .from,
#chat .text {
display: table-cell;
2014-09-26 01:51:53 +02:00
padding: 2px 0;
2014-08-16 21:49:28 +02:00
vertical-align: top;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .time {
2014-09-26 01:51:53 +02:00
color: #ddd;
2014-08-15 15:52:14 +02:00
text-align: right;
width: 46px;
min-width: 46px;
}
2014-08-15 15:52:14 +02:00
#chat .from {
border-right: 1px solid #f6f6f6;
color: #b1c3ce;
padding-right: 10px;
text-align: right;
width: 134px;
min-width: 134px;
}
2014-09-30 20:00:23 +02:00
#chat a {
2014-10-10 19:39:57 +02:00
color: #50a656;
2014-08-15 15:52:14 +02:00
}
2016-01-24 10:12:41 +01:00
#chat.no-colors .from .user,
2016-05-11 01:17:52 +02:00
#chat.no-colors .text .user,
2016-01-24 10:12:41 +01:00
#chat.no-colors .sidebar .user {
2014-10-10 19:39:57 +02:00
color: #50a656 !important;
2014-09-30 20:00:23 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .text {
padding-left: 10px;
padding-right: 6px;
}
2014-09-14 20:49:42 +02:00
#chat .self .text {
color: #999;
}
#chat .msg.motd .text,
#chat .msg.message .text,
#chat .msg.action .action-text,
#chat .msg.notice .text {
white-space: pre-wrap;
overflow: hidden;
}
#chat.hide-join .join,
#chat.hide-mode .mode,
#chat.hide-motd .motd,
#chat.hide-nick .nick,
#chat.hide-part .part,
2014-09-26 01:55:19 +02:00
#chat.hide-quit .quit {
2014-09-10 22:08:32 +02:00
display: none !important;
}
2016-02-12 12:24:13 +01:00
#chat .invite .from:before {
font-family: FontAwesome;
content: "\f003";
color: #2ecc40;
2016-02-12 12:24:13 +01:00
}
#chat .join .text,
#chat .kick .text,
#chat .mode .text,
#chat .nick .text,
#chat .part .text,
2016-03-06 05:52:05 +01:00
#chat .quit .text,
#chat .topic .text,
#chat .topic_set_by .text {
color: #999;
}
2016-01-23 15:39:54 +01:00
#chat .join .from:before {
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f090";
color: #2ecc40;
2016-01-23 15:39:54 +01:00
}
2016-01-23 15:39:54 +01:00
#chat .kick .from:before {
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f05e";
color: #ff4136;
2016-01-23 15:39:54 +01:00
}
2016-01-23 15:39:54 +01:00
#chat .part .from:before,
#chat .quit .from:before {
2016-01-27 01:49:41 +01:00
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f08b";
color: #ff4136;
2016-01-27 01:49:41 +01:00
display: inline-block;
transform: rotate(180deg);
2016-01-23 15:39:54 +01:00
}
2016-01-23 15:39:54 +01:00
#chat .topic .from:before {
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f0a1";
color: #2ecc40;
2016-01-23 15:39:54 +01:00
}
2016-01-23 15:39:54 +01:00
#chat .mode .from:before {
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f05a";
color: #2ecc40;
2016-01-23 15:39:54 +01:00
}
#chat .ctcp .from:before {
font-family: FontAwesome;
content: "\f0f6";
}
2016-03-07 16:10:46 +01:00
#chat .whois .from:before {
font-family: FontAwesome;
content: "\f007";
color: #2ecc40;
}
2016-01-23 15:39:54 +01:00
#chat .nick .from:before {
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f007";
color: #2ecc40;
2016-01-23 15:39:54 +01:00
}
#chat .action .from,
2016-01-23 15:39:54 +01:00
#chat .action .text,
#chat .action .user {
color: #f39c12;
2016-01-23 15:39:54 +01:00
}
2016-01-23 15:39:54 +01:00
#chat .action .from:before {
font-family: FontAwesome;
2016-01-23 15:39:54 +01:00
content: "\f005";
}
2016-01-23 15:39:54 +01:00
#chat .notice .time,
#chat .notice .text,
#chat .chan .notice .user {
color: #0074d9 !important;
2016-01-23 15:39:54 +01:00
}
2016-01-23 15:39:54 +01:00
#chat .notice .user:before {
content: "Notice: ";
2014-08-15 15:52:14 +02:00
}
2016-01-23 15:39:54 +01:00
#chat .error,
#chat .error .from,
#chat .highlight .from,
#chat .highlight .text,
#chat .highlight .user {
color: #f00;
}
#chat .msg.toggle .time {
visibility: hidden;
}
2014-09-27 21:17:05 +02:00
#chat .toggle-button {
2014-09-27 22:39:14 +02:00
background: #f5f5f5;
2014-09-27 21:17:05 +02:00
border-radius: 2px;
display: inline-block;
color: #666;
height: 1em;
line-height: 0;
padding: 0 6px;
2014-09-27 21:17:05 +02:00
}
2014-09-27 21:17:05 +02:00
#chat .toggle-content {
background: #f5f5f5;
border-radius: 2px;
display: none;
color: #222;
font: 12px Lato;
max-width: 100%;
2014-09-27 21:17:05 +02:00
padding: 6px 8px;
margin-top: 2px;
}
2014-09-27 22:39:14 +02:00
#chat .toggle-content a {
color: inherit;
2014-09-27 21:17:05 +02:00
}
2014-09-27 21:17:05 +02:00
#chat .toggle-content img {
max-width: 100%;
2016-01-20 17:16:27 +01:00
max-height: 250px;
2014-09-27 22:39:14 +02:00
display: block;
margin: 2px 0;
}
#chat .toggle-content .thumb {
max-height: 110px;
max-width: 210px;
}
2014-09-27 22:39:14 +02:00
#chat .toggle-content .head {
font-weight: bold;
}
2014-09-27 22:39:14 +02:00
#chat .toggle-content .body {
color: #999;
2014-12-12 00:48:43 +01:00
max-width: 460px;
word-break: normal;
word-wrap: break-word;
2014-09-27 22:39:14 +02:00
}
2014-09-27 22:39:14 +02:00
#chat .toggle-content.show {
display: inline-block !important;
2014-08-16 21:49:28 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .count {
2014-09-10 17:56:19 +02:00
background: #fafafa;
2014-08-15 15:52:14 +02:00
height: 48px;
left: 0;
position: absolute;
right: 0;
top: 0;
}
2014-08-15 15:52:14 +02:00
#chat .count:before {
2014-09-10 17:56:19 +02:00
color: #cfcfcf;
font: 14px FontAwesome;
2014-08-29 22:54:11 +02:00
content: "\f002";
2014-08-15 15:52:14 +02:00
position: absolute;
right: 18px;
line-height: 50px;
transition: color .2s;
z-index: 0;
}
2014-08-15 15:52:14 +02:00
#chat .search {
color: #222;
border: 0;
background: none;
font: inherit;
outline: 0;
padding: 18px 16px;
position: relative;
width: 100%;
}
2014-08-15 15:52:14 +02:00
#chat .names {
bottom: 0;
overflow: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
2014-10-04 21:47:27 +02:00
padding-bottom: 10px;
2014-08-15 15:52:14 +02:00
position: absolute;
top: 48px;
width: 100%;
}
2014-08-15 15:52:14 +02:00
#chat .names button {
display: block;
2014-08-19 01:54:14 +02:00
line-height: 1.6;
2014-10-04 21:47:27 +02:00
padding: 0 16px;
2014-08-15 15:52:14 +02:00
}
2014-09-30 20:00:23 +02:00
#chat .names .inner {
width: 300px;
}
2014-10-04 21:47:27 +02:00
#chat .user-mode:before {
content: "";
border-bottom: 1px solid #eee;
display: block;
line-height: 1.6;
padding: 12px 16px 10px;
margin-bottom: 10px;
}
2014-10-04 21:47:27 +02:00
#chat .user-mode.owner:before {
content: "Owners";
}
2014-10-04 21:47:27 +02:00
#chat .user-mode.admin:before {
content: "Administrators";
}
2014-10-04 21:47:27 +02:00
#chat .user-mode.op:before {
content: "Operators";
}
#chat .user-mode.half-op:before {
content: "Half-Operators";
}
2014-10-04 21:47:27 +02:00
#chat .user-mode.voice:before {
content: "Voiced";
}
2014-10-04 21:47:27 +02:00
#chat .user-mode.normal:before {
content: "Users";
}
2014-08-15 15:52:14 +02:00
#sign-in label {
display: block;
margin-top: 10px;
}
2014-08-15 15:52:14 +02:00
#sign-in .title {
margin-bottom: 10px;
}
2014-09-15 23:13:03 +02:00
#sign-in .remember {
float: left;
font-size: 14px;
margin-top: 12px;
}
2014-09-15 23:13:03 +02:00
#sign-in .remember input {
float: left;
margin: 3px 10px 0 0;
}
2014-08-15 15:52:14 +02:00
#sign-in .btn {
margin-top: 25px;
}
2014-08-15 15:52:14 +02:00
#sign-in .error {
color: #e74c3c;
margin-top: 1em;
}
#sign-in .container {
margin-top: 120px;
}
2014-08-15 15:52:14 +02:00
#connect label {
display: block;
margin-top: 11px;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#connect .title {
margin-bottom: 10px;
}
2014-08-15 15:52:14 +02:00
#connect .port:before {
content: ":";
margin: 9px 0 0 -17px;
2014-08-15 15:52:14 +02:00
position: absolute;
}
2014-09-10 17:56:19 +02:00
#connect .tls {
float: left;
font-size: 14px;
margin-top: 6px;
2014-09-10 17:56:19 +02:00
}
2014-09-10 17:56:19 +02:00
#connect .tls input {
float: left;
margin: 3px 10px 0 0;
}
2014-08-15 15:52:14 +02:00
#connect .btn {
2014-09-10 17:56:19 +02:00
float: left;
margin-top: 30px;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#settings .title {
margin-bottom: -10px;
}
2014-08-15 15:52:14 +02:00
#settings .opt {
display: block;
2014-09-30 22:20:36 +02:00
padding: 5px 0 10px 1px;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#settings .opt input {
float: left;
margin: 4px 10px 0 0;
}
2014-08-15 15:52:14 +02:00
#settings .about,
#settings #play {
color: #7f8c8d;
}
2014-08-16 02:05:37 +02:00
#settings .about small {
margin-left: 2px;
}
2014-08-15 15:52:14 +02:00
#settings #play:hover {
opacity: .8;
}
2014-08-15 15:52:14 +02:00
#settings #play:before {
2014-08-29 22:54:11 +02:00
content: "\f028";
font: 14px FontAwesome;
2014-08-15 15:52:14 +02:00
margin-right: 9px;
}
2014-08-15 15:52:14 +02:00
#settings .about {
font-size: 14px;
padding-top: 2px;
line-height: 1.8;
}
#settings #change-password .error,
#settings #change-password .success {
margin-bottom: 1em;
}
#settings #change-password .error {
color: #e74c3c;
}
#settings #change-password .success {
color: #2ecc40;
}
#settings .error {
color: #e74c3c;
margin-top: .2em;
}
2014-08-15 15:52:14 +02:00
#form {
2014-09-27 02:21:14 +02:00
background: #eee;
border-top: 1px solid #ddd;
2014-08-15 15:52:14 +02:00
bottom: 0;
height: 48px;
left: 0;
position: absolute;
right: 0;
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#form .inner {
bottom: 7px;
left: 7px;
position: absolute;
right: 7px;
top: 6px;
}
2014-09-21 17:21:26 +02:00
#form .input {
2015-04-16 10:07:13 +02:00
font: 12px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
2014-09-21 17:21:26 +02:00
left: 0;
height: 34px;
position: relative;
}
2014-09-26 01:51:53 +02:00
#form #nick {
background: #f6f6f6;
2014-09-27 02:21:14 +02:00
color: #666;
2014-09-26 01:51:53 +02:00
position: absolute;
font: inherit;
font-size: 11px;
margin: 5px;
margin-right: 10px;
2014-09-26 01:51:53 +02:00
line-height: 26px;
height: 24px;
2014-09-27 02:21:14 +02:00
padding: 0 9px;
2014-09-26 01:51:53 +02:00
border-radius: 1px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2014-09-26 01:51:53 +02:00
}
#form #nick:empty {
visibility: hidden;
}
#form #nick:after {
content: ":";
}
2014-09-26 01:51:53 +02:00
#form #input {
2014-09-27 02:21:14 +02:00
border: 1px solid #ddd;
2014-09-26 01:51:53 +02:00
font: inherit;
border-radius: 2px;
height: 100%;
outline: none;
2016-03-11 07:44:09 +01:00
padding: 0 34px 0 10px;
2014-09-26 01:51:53 +02:00
-webkit-appearance: none;
width: 100%;
}
2014-08-15 15:52:14 +02:00
#form #submit {
2016-03-11 07:44:09 +01:00
color: #9ca5b4;
2014-09-21 17:21:26 +02:00
height: 34px;
2016-03-11 07:44:09 +01:00
line-height: 34px;
2014-08-15 15:52:14 +02:00
position: absolute;
2014-09-21 17:21:26 +02:00
right: 0;
transition: opacity .3s;
2016-03-11 07:44:09 +01:00
width: 34px;
}
#form #submit:before {
font: 14px FontAwesome;
content: "\f1d8";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#form #submit:hover {
opacity: .6;
2014-08-15 15:52:14 +02:00
}
2016-02-12 12:34:10 +01:00
#context-menu-container {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
background: transparent;
}
#context-menu {
position: absolute;
list-style: none;
margin: 0;
padding: 0;
min-width: 160px;
font-size: 14px;
background-color: #fff;
box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 2px;
2016-02-12 12:34:10 +01:00
}
.context-menu-divider {
height: 1px;
margin: 6px 0;
background-color: rgba(0, 0, 0, .1);
2016-02-12 12:34:10 +01:00
}
.context-menu-item {
cursor: pointer;
display: block;
padding: 4px 8px;
2016-02-12 12:34:10 +01:00
color: #333;
margin-top: 6px;
margin-bottom: 6px;
2016-02-12 12:34:10 +01:00
}
.context-menu-item:hover {
background-color: #f6f6f6;
}
.context-menu-item:before {
font-family: FontAwesome;
width: 20px;
display: inline-block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2016-02-12 12:34:10 +01:00
}
.context-menu-user:before {
content: "\f007";
}
.context-menu-chan:before {
content: "\f0f6";
}
.context-menu-close:before {
content: "\f00d";
2016-02-12 12:34:10 +01:00
}
/**
* Tooltips
* See http://primercss.io/tooltips/
*/
.tooltipped {
position: relative;
}
.tooltipped:after {
position: absolute;
z-index: 1000000;
display: inline-block;
visibility: hidden;
opacity: 0;
padding: 5px 8px;
font-size: 12px;
line-height: 1.2;
color: #262c36;
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);
background: #fff;
border-radius: 3px;
-webkit-font-smoothing: subpixel-antialiased;
transition: .2s;
}
.tooltipped:before {
position: absolute;
z-index: 1000001;
display: inline-block;
visibility: hidden;
opacity: 0;
width: 0;
height: 0;
color: #262c36;
pointer-events: none;
content: "";
border: 5px solid transparent;
transition: .2s;
}
.tooltipped:hover:before,
.tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
visibility: visible;
opacity: 1;
text-decoration: none;
}
.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
top: 100%;
right: 50%;
margin-top: 5px;
}
.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
top: auto;
right: 50%;
bottom: -5px;
margin-right: -5px;
border-bottom-color: #fff;
}
.tooltipped-se:after {
right: auto;
left: 50%;
margin-left: -15px;
}
.tooltipped-sw:after {
margin-right: -15px;
}
.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
right: 50%;
bottom: 100%;
margin-bottom: 5px;
}
.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
top: -5px;
right: 50%;
bottom: auto;
margin-right: -5px;
border-top-color: #fff;
}
.tooltipped-ne:after {
right: auto;
left: 50%;
margin-left: -15px;
}
.tooltipped-nw:after {
margin-right: -15px;
}
.tooltipped-s:after,
.tooltipped-n:after {
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
}
.tooltipped-w:after {
right: 100%;
bottom: 50%;
margin-right: 5px;
-webkit-transform: translateY(50%);
-ms-transform: translateY(50%);
transform: translateY(50%);
}
.tooltipped-w:before {
top: 50%;
bottom: 50%;
left: -5px;
margin-top: -5px;
border-left-color: #fff;
}
.tooltipped-e:after {
bottom: 50%;
left: 100%;
margin-left: 5px;
-webkit-transform: translateY(50%);
-ms-transform: translateY(50%);
transform: translateY(50%);
}
.tooltipped-e:before {
top: 50%;
right: -5px;
bottom: 50%;
margin-top: -5px;
border-right-color: #fff;
}
2014-10-11 01:11:57 +02:00
/**
2014-12-11 04:35:17 +01:00
* IRC Message Styling
* https://github.com/megawac/irc-style-parser
* Colours are credit to http://clrs.cc/
*/
.irc-fg0 { color: #fff; }
2014-12-11 04:35:17 +01:00
.irc-fg1 { color: #000; }
2014-12-11 04:35:17 +01:00
.irc-fg2 { color: #001f3f; }
2014-12-11 04:35:17 +01:00
.irc-fg3 { color: #2ecc40; }
2014-12-11 04:35:17 +01:00
.irc-fg4 { color: #ff4136; }
2014-12-11 04:35:17 +01:00
.irc-fg5 { color: #85144b; }
2014-12-11 04:35:17 +01:00
.irc-fg6 { color: #b10dc9; }
2014-12-11 04:35:17 +01:00
.irc-fg7 { color: #ff851b; }
2014-12-11 04:35:17 +01:00
.irc-fg8 { color: #ffdc00; }
2014-12-11 04:35:17 +01:00
.irc-fg9 { color: #01ff70; }
2014-12-11 04:35:17 +01:00
.irc-fg10 { color: #39cccc; }
2014-12-11 04:35:17 +01:00
.irc-fg11 { color: #7fdbff; }
2014-12-11 04:35:17 +01:00
.irc-fg12 { color: #0074d9; }
2014-12-11 04:35:17 +01:00
.irc-fg13 { color: #f012be; }
2014-12-11 04:35:17 +01:00
.irc-fg14 { color: #aaa; }
2014-12-11 04:35:17 +01:00
.irc-fg15 { color: #ddd; }
2014-12-11 04:35:17 +01:00
.irc-bg0 { background: #fff; }
2014-12-11 04:35:17 +01:00
.irc-bg1 { background: #000; }
2014-12-11 04:35:17 +01:00
.irc-bg2 { background: #001f3f; }
2014-12-11 04:35:17 +01:00
.irc-bg3 { background: #2ecc40; }
2014-12-11 04:35:17 +01:00
.irc-bg4 { background: #ff4136; }
2014-12-11 04:35:17 +01:00
.irc-bg5 { background: #85144b; }
2014-12-11 04:35:17 +01:00
.irc-bg6 { background: #b10dc9; }
2014-12-11 04:35:17 +01:00
.irc-bg7 { background: #ff851b; }
2014-12-11 04:35:17 +01:00
.irc-bg8 { background: #ffdc00; }
2014-12-11 04:35:17 +01:00
.irc-bg9 { background: #01ff70; }
2014-12-11 04:35:17 +01:00
.irc-bg10 { background: #39cccc; }
2014-12-11 04:35:17 +01:00
.irc-bg11 { background: #7fdbff; }
2014-12-11 04:35:17 +01:00
.irc-bg12 { background: #0074d9; }
2014-12-11 04:35:17 +01:00
.irc-bg13 { background: #f012be; }
2014-12-11 04:35:17 +01:00
.irc-bg14 { background: #aaa; }
2014-12-11 04:35:17 +01:00
.irc-bg15 { background: #ddd; }
2014-10-11 01:11:57 +02:00
.irc-bold {
font-weight: bold;
}
.irc-underline {
text-decoration: underline;
}
.irc-italic {
font-style: italic;
}
2014-09-20 01:12:17 +02:00
/**
* TrackpadScrollEmulator
* Version: 1.0.6
* Author: Jonathan Nicol @f6design
* https://github.com/jnicol/trackpad-scroll-emulator
*/
.tse-scrollable {
position: relative;
overflow: hidden;
}
2014-09-20 01:12:17 +02:00
.tse-scrollable .tse-scroll-content {
overflow: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
2014-09-20 01:12:17 +02:00
.tse-scrollable .tse-scroll-content::-webkit-scrollbar {
width: 0;
height: 0;
}
2014-09-20 01:12:17 +02:00
.tse-scrollbar {
z-index: 99;
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 11px;
}
2014-09-20 01:12:17 +02:00
.tse-scrollbar .drag-handle {
position: absolute;
right: 2px;
border-radius: 2px;
min-height: 10px;
width: 6px;
opacity: .1;
transition: opacity .2s linear;
2014-09-20 01:12:17 +02:00
background: #000;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
}
2014-09-20 01:12:17 +02:00
.tse-scrollbar:hover .drag-handle {
opacity: .25;
2014-09-20 01:12:17 +02:00
transition: opacity 0 linear;
}
2014-09-20 01:12:17 +02:00
.tse-scrollbar .drag-handle.visible {
opacity: .2;
2014-09-20 01:12:17 +02:00
}
2014-09-20 01:12:17 +02:00
.scrollbar-width-tester::-webkit-scrollbar {
width: 0;
height: 0;
}
2014-08-15 15:52:14 +02:00
@media (max-width: 768px) {
.container {
margin-top: 60px !important;
}
2014-08-15 15:52:14 +02:00
#viewport.lt {
-webkit-transform: translate3d(220px, 0, 0);
transform: translate3d(220px, 0, 0);
2014-08-15 15:52:14 +02:00
}
2014-08-15 23:33:22 +02:00
#viewport.rt #chat .sidebar {
2014-08-16 02:05:37 +02:00
-webkit-transform: translate3d(-180px, 0, 0);
transform: translate3d(-180px, 0, 0);
2014-08-15 15:52:14 +02:00
}
2014-08-15 15:52:14 +02:00
#sidebar {
left: -220px;
}
2014-09-20 01:12:17 +02:00
#footer {
left: -215px;
width: 215px;
}
2014-08-15 15:52:14 +02:00
#sidebar .empty:before {
margin-top: 0;
}
2014-08-15 15:52:14 +02:00
#main {
left: 5px;
right: 5px;
}
2014-08-15 15:52:14 +02:00
#chat .chat {
right: 0;
}
2014-09-10 23:43:56 +02:00
#viewport .lt,
#viewport .channel .rt {
2014-08-15 15:52:14 +02:00
display: block;
}
#windows .window .header {
display: block;
}
2014-08-15 15:52:14 +02:00
#chat .sidebar {
right: -180px;
}
2014-08-29 22:54:11 +02:00
#chat .title:before {
display: none;
}
2014-08-15 15:52:14 +02:00
}
@media (max-width: 479px) {
2014-09-10 17:56:19 +02:00
.container {
margin: 40px 0 !important;
}
#connect .tls {
margin: 20px 0;
}
#windows .input {
margin-bottom: 2px;
2014-09-10 17:56:19 +02:00
}
2014-08-15 15:52:14 +02:00
#chat .messages {
display: block;
padding: 5px 10px;
}
2014-08-15 15:52:14 +02:00
#chat .msg {
display: block;
padding: 2px 0;
}
2014-08-15 15:52:14 +02:00
#chat .msg:last-child {
height: auto;
}
2014-08-15 15:52:14 +02:00
#chat .from,
#chat .text {
background: none;
border: 0;
display: inline;
padding: 0;
}
2014-08-15 15:52:14 +02:00
#chat .time {
display: none;
}
}
2014-09-15 19:41:23 +02:00
2016-01-18 18:49:23 +01:00
::-webkit-scrollbar {
width: 8px;
background-color: rgba(0, 0, 0, 0);
2016-01-18 18:49:23 +01:00
}
2016-01-18 18:49:23 +01:00
::-webkit-scrollbar:hover {
background-color: rgba(0, 0, 0, .09);
2016-01-18 18:49:23 +01:00
}
2016-01-18 18:49:23 +01:00
::-webkit-scrollbar-thumb:vertical {
background: rgba(0, 0, 0, .5);
2016-01-18 18:49:23 +01:00
border-radius: 100px;
}