2013-08-23 07:31:38 +02:00
|
|
|
body,
|
|
|
|
html {
|
2013-08-13 12:52:26 +02:00
|
|
|
width: 100%;
|
2014-01-15 20:13:41 +01:00
|
|
|
height: 100%;
|
2013-08-16 17:29:37 +02:00
|
|
|
overflow-x: hidden;
|
2014-01-15 20:13:41 +01:00
|
|
|
overflow-y: hidden;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
2013-11-25 23:05:08 +01:00
|
|
|
#css-loading {
|
|
|
|
display: none !important; /* We are now loaded, by definition. */
|
|
|
|
}
|
|
|
|
|
2012-09-10 20:31:53 +02:00
|
|
|
body {
|
2013-05-07 19:32:12 +02:00
|
|
|
font-family: 'Humbug', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
2012-09-11 20:25:29 +02:00
|
|
|
}
|
|
|
|
|
2013-07-04 23:01:38 +02:00
|
|
|
/* Common background color */
|
2013-08-23 07:31:38 +02:00
|
|
|
body,
|
2016-10-27 07:40:53 +02:00
|
|
|
#tab_bar_underpadding {
|
2013-12-10 20:30:28 +01:00
|
|
|
background-color: #ffffff;
|
2017-03-18 23:49:11 +01:00
|
|
|
-webkit-transition: background-color 200ms linear;
|
|
|
|
-moz-transition: background-color 200ms linear;
|
|
|
|
-o-transition: background-color 200ms linear;
|
|
|
|
-ms-transition: background-color 200ms linear;
|
|
|
|
transition: background-color 200ms linear;
|
2013-07-17 00:52:18 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
input,
|
|
|
|
button,
|
|
|
|
select,
|
|
|
|
textarea {
|
2013-05-07 19:32:12 +02:00
|
|
|
font-family: 'Humbug', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
2013-05-14 21:11:22 +02:00
|
|
|
blockquote p {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2013-06-05 22:43:07 +02:00
|
|
|
a {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-03-19 01:51:20 +01:00
|
|
|
.no-select {
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2016-08-27 01:47:30 +02:00
|
|
|
p.n-margin {
|
|
|
|
margin: 10px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.small-line-height {
|
|
|
|
line-height: 1.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.float-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.float-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.float-clear {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-margin {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.border-radius {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2017-01-03 20:59:53 +01:00
|
|
|
.modal-backdrop {
|
|
|
|
z-index: 102;
|
|
|
|
}
|
|
|
|
|
2017-01-05 22:22:21 +01:00
|
|
|
.top-messages-logo {
|
|
|
|
position: absolute;
|
|
|
|
left: calc(50% - 12px);
|
|
|
|
top: 67px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
2016-08-27 01:47:30 +02:00
|
|
|
#unmute_muted_topic_notification {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 400px;
|
|
|
|
top: 0px;
|
|
|
|
left: calc(50vw - 220px);
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
background-color: #FAFAFA;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0px 0px 30px rgba(0,0,0,0.25);
|
2016-10-28 22:50:56 +02:00
|
|
|
z-index: 110;
|
2016-08-27 01:47:30 +02:00
|
|
|
|
|
|
|
animation-name: pulse;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-duration: 2s;
|
|
|
|
|
|
|
|
transition-property: top, bottom;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#unmute_muted_topic_notification.show {
|
|
|
|
top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#unmute_muted_topic_notification h3 {
|
2016-09-28 02:42:55 +02:00
|
|
|
font-size: 16pt;
|
|
|
|
margin-top: 2px;
|
2016-08-27 01:47:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
|
|
|
box-shadow: 0px 0px 30px rgba(0,0,0,0.35);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
box-shadow: 0px 0px 30px rgba(0,0,0,0.15);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
box-shadow: 0px 0px 30px rgba(0,0,0,0.35);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#unmute_muted_topic_notification .btn {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid #444;
|
|
|
|
outline: none;
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#unmute_muted_topic_notification .btn:hover {
|
|
|
|
background-color: #444;
|
|
|
|
color: #FAFAFA;
|
|
|
|
}
|
|
|
|
|
|
|
|
#unmute_muted_topic_notification .exit-me {
|
|
|
|
font-size: 30pt;
|
|
|
|
font-weight: 200;
|
|
|
|
margin: 5px 0px 0px 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-08-13 12:52:26 +02:00
|
|
|
.header {
|
|
|
|
position: fixed;
|
2016-10-28 08:09:04 +02:00
|
|
|
z-index: 102; /* Needs to be higher than .alert-bar-container */
|
2013-08-13 12:52:26 +02:00
|
|
|
width: 100%;
|
2014-01-08 16:12:22 +01:00
|
|
|
background: #ffffff;
|
2014-01-31 21:58:19 +01:00
|
|
|
border-bottom: 1px solid #dadada;
|
2014-01-08 16:12:22 +01:00
|
|
|
height: 40px;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.app {
|
|
|
|
width: 100%;
|
2014-01-15 20:13:41 +01:00
|
|
|
height: 100%;
|
2014-02-13 21:04:26 +01:00
|
|
|
overflow-y: scroll;
|
2013-08-13 12:52:26 +02:00
|
|
|
z-index: 99;
|
2017-03-08 23:49:37 +01:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
.app-main,
|
|
|
|
.header-main {
|
2014-01-08 16:12:22 +01:00
|
|
|
width: 100%;
|
2014-01-31 21:36:31 +01:00
|
|
|
max-width: 1400px;
|
2013-08-13 12:52:26 +02:00
|
|
|
min-width: 950px;
|
|
|
|
margin: 0px auto;
|
2014-01-09 16:58:51 +01:00
|
|
|
padding: 0px;
|
2013-08-13 12:52:26 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-02-18 17:41:49 +01:00
|
|
|
.app-main {
|
|
|
|
height: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
2014-01-09 16:58:51 +01:00
|
|
|
.fixed-app {
|
|
|
|
width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 98;
|
2014-02-06 23:36:45 +01:00
|
|
|
left: 0px;
|
2014-01-09 16:58:51 +01:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
.column-left,
|
|
|
|
.column-right {
|
2014-01-31 21:36:31 +01:00
|
|
|
width: 250px;
|
|
|
|
max-width: 250px;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-left {
|
2014-01-08 16:12:22 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-right {
|
2014-01-08 16:12:22 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
.app-main .column-left .left-sidebar,
|
|
|
|
.app-main .column-right .right-sidebar {
|
2013-08-13 12:52:26 +02:00
|
|
|
position: fixed;
|
|
|
|
margin-top: 50px;
|
2016-04-09 05:50:24 +02:00
|
|
|
z-index: 100;
|
2014-01-09 16:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-main .column-left .left-sidebar {
|
2014-02-20 20:22:29 +01:00
|
|
|
width: 242px;
|
2014-02-14 21:31:45 +01:00
|
|
|
padding-left: 0px;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-main .column-right .right-sidebar {
|
|
|
|
padding-left: 15px;
|
2014-03-01 05:01:24 +01:00
|
|
|
width: 235px;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
2014-01-31 21:36:31 +01:00
|
|
|
.app-main .column-middle {
|
2014-02-18 17:41:49 +01:00
|
|
|
min-height: 100%;
|
|
|
|
background-color: #ffffff;
|
2014-01-31 21:36:31 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 12:52:26 +02:00
|
|
|
.column-middle {
|
2014-01-31 21:36:31 +01:00
|
|
|
margin-right: 250px;
|
|
|
|
margin-left: 250px;
|
2014-01-09 16:58:51 +01:00
|
|
|
position: relative;
|
2013-08-13 12:52:26 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
textarea,
|
|
|
|
input {
|
2013-05-07 19:32:12 +02:00
|
|
|
font-family: 'Humbug', Helvetica, Arial, sans-serif;
|
2012-10-24 23:16:43 +02:00
|
|
|
}
|
|
|
|
|
2013-02-13 23:23:26 +01:00
|
|
|
/* Override Bootstrap's fixed sizes for various elements */
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
textarea,
|
|
|
|
label {
|
2017-03-14 16:36:22 +01:00
|
|
|
font-size: inherit;
|
2013-02-13 23:23:26 +01:00
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* List of text-like input types taken from Bootstrap */
|
2016-10-28 07:12:32 +02:00
|
|
|
|
2013-02-13 23:23:26 +01:00
|
|
|
input[type="text"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="datetime"],
|
|
|
|
input[type="datetime-local"],
|
|
|
|
input[type="date"],
|
|
|
|
input[type="month"],
|
|
|
|
input[type="time"],
|
|
|
|
input[type="week"],
|
|
|
|
input[type="number"],
|
|
|
|
input[type="email"],
|
|
|
|
input[type="url"],
|
|
|
|
input[type="search"],
|
|
|
|
input[type="tel"],
|
|
|
|
input[type="color"]
|
|
|
|
{
|
|
|
|
font-size: inherit;
|
2017-03-14 16:36:22 +01:00
|
|
|
height: 1.4em;
|
2013-02-13 23:23:26 +01:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
li,
|
|
|
|
.table th,
|
|
|
|
.table td {
|
2013-02-13 23:23:26 +01:00
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
2017-03-14 16:36:22 +01:00
|
|
|
font-size: inherit;
|
|
|
|
height: auto;
|
2013-05-07 19:32:12 +02:00
|
|
|
line-height: 100%;
|
2013-02-13 23:23:26 +01:00
|
|
|
}
|
|
|
|
|
2017-01-17 20:51:30 +01:00
|
|
|
.copy_message, .copy_message:focus {
|
|
|
|
background-image: url('/static/images/clippy.svg');
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: white;
|
|
|
|
background-position: center;
|
|
|
|
height: 20px;
|
|
|
|
width: 15px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
border-radius: 2px;
|
|
|
|
position: relative;
|
|
|
|
top: 32px;
|
|
|
|
left: -5px;
|
|
|
|
margin-top: -8px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy_message:hover {
|
|
|
|
background-color: #dadada;
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:23:26 +01:00
|
|
|
.btn-large {
|
|
|
|
font-size: 115%;
|
|
|
|
}
|
|
|
|
|
2013-08-13 12:52:26 +02:00
|
|
|
.header-main .logo {
|
2014-01-08 16:12:22 +01:00
|
|
|
display: inline-block;
|
2013-06-19 23:40:31 +02:00
|
|
|
font-size: 120%;
|
|
|
|
font-weight: 900;
|
|
|
|
text-shadow: none;
|
|
|
|
color: #ffffff;
|
|
|
|
font-variant: small-caps;
|
|
|
|
letter-spacing: 2px;
|
|
|
|
line-height: 18px;
|
|
|
|
text-decoration: none;
|
2013-08-13 12:52:26 +02:00
|
|
|
position: relative;
|
2016-07-18 03:10:51 +02:00
|
|
|
}
|
2013-06-19 23:40:31 +02:00
|
|
|
|
2016-07-18 03:10:51 +02:00
|
|
|
.header-main .logoimage {
|
2014-01-08 16:12:22 +01:00
|
|
|
height: 40px;
|
|
|
|
width: auto;
|
|
|
|
}
|
2013-07-16 01:15:09 +02:00
|
|
|
|
2016-07-18 03:10:51 +02:00
|
|
|
#user-settings-avatar {
|
2013-10-28 15:49:38 +01:00
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2013-10-29 16:16:07 +01:00
|
|
|
margin-top: 10px;
|
2016-07-18 03:10:51 +02:00
|
|
|
}
|
2013-10-28 15:49:38 +01:00
|
|
|
|
2013-04-24 00:40:47 +02:00
|
|
|
/* Classes for hiding and showing controls */
|
|
|
|
|
|
|
|
.notdisplayed {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notvisible {
|
|
|
|
visibility: hidden !important;
|
|
|
|
width: 0px !important;
|
2013-04-25 23:08:05 +02:00
|
|
|
min-width: 0px !important;
|
|
|
|
min-height: 0px !important;
|
2013-04-24 00:40:47 +02:00
|
|
|
height: 0px !important;
|
2013-04-25 23:08:05 +02:00
|
|
|
overflow: hidden !important;
|
|
|
|
position: absolute !important;
|
2013-04-24 00:40:47 +02:00
|
|
|
}
|
2013-02-13 23:23:26 +01:00
|
|
|
|
2013-06-19 23:40:31 +02:00
|
|
|
/* Relative positioning */
|
|
|
|
|
|
|
|
.position-relative {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2013-05-21 17:47:44 +02:00
|
|
|
/* Lighter strong */
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:23:26 +01:00
|
|
|
/* Inline and block code */
|
|
|
|
|
2012-10-19 19:37:42 +02:00
|
|
|
code {
|
2013-02-15 04:01:54 +01:00
|
|
|
/* 12/14 em, so bootstrap's default 12 px,
|
|
|
|
when body is the default 14 px */
|
|
|
|
font-size: 0.857em;
|
2012-10-19 19:37:42 +02:00
|
|
|
}
|
|
|
|
|
2016-11-10 01:06:15 +01:00
|
|
|
.message_content p code {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
padding: 0px 4px;
|
2016-11-17 02:33:30 +01:00
|
|
|
background-color: #fff;
|
2016-11-10 01:06:15 +01:00
|
|
|
}
|
|
|
|
|
2017-01-06 23:33:07 +01:00
|
|
|
/* This ensures bulleted lists are nicely centered in 1-line messages */
|
|
|
|
.message_content ul {
|
|
|
|
margin: 5px 0 5px 20px;
|
|
|
|
}
|
|
|
|
|
2013-12-20 16:31:11 +01:00
|
|
|
.codehilite {
|
|
|
|
display: block !important;
|
|
|
|
border: none !important;
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
|
2013-02-15 04:01:54 +01:00
|
|
|
pre {
|
2016-11-17 02:33:30 +01:00
|
|
|
/* code block text is a bit smaller than normal text */
|
|
|
|
font-size: 0.8em;
|
|
|
|
line-height: 1.4;
|
2013-05-16 18:34:00 +02:00
|
|
|
white-space: pre;
|
|
|
|
overflow-x: auto;
|
|
|
|
word-wrap: normal;
|
2013-11-26 20:00:54 +01:00
|
|
|
/* Bootstrap's default here is top: 0px, bottom: 10px */
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
2017-03-14 06:28:37 +01:00
|
|
|
/* Bootstrap's default here is 9.5 on all sides */
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
padding-left: 7px;
|
|
|
|
padding-right: 7px;
|
2013-02-15 04:01:54 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 03:22:53 +02:00
|
|
|
/* Ensure the horizontal scrollbar is visible on Mac */
|
|
|
|
pre::-webkit-scrollbar {
|
|
|
|
height: 8px;
|
|
|
|
|
|
|
|
background-color: rgba(0,0,0,0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
pre::-webkit-scrollbar-thumb {
|
|
|
|
background-color: rgba(0,0,0,0.3);
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre::-webkit-scrollbar-thumb:hover {
|
|
|
|
background-color: rgb(0,0,0,0.6);
|
|
|
|
}
|
|
|
|
|
2012-10-21 01:26:26 +02:00
|
|
|
pre code {
|
2016-08-23 03:22:53 +02:00
|
|
|
overflow-x: scroll;
|
2012-10-21 01:26:26 +02:00
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
2012-11-27 19:14:05 +01:00
|
|
|
/* Style inline code inside a link
|
|
|
|
to look more like a normal link */
|
|
|
|
a code {
|
2017-03-14 16:36:22 +01:00
|
|
|
color: #08C;
|
2012-11-27 19:14:05 +01:00
|
|
|
border-color: #08C;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover code {
|
2017-03-14 16:36:22 +01:00
|
|
|
color: #005580;
|
2012-11-27 19:14:05 +01:00
|
|
|
border-color: #005580;
|
|
|
|
}
|
|
|
|
|
2012-11-29 18:38:18 +01:00
|
|
|
.preserve_spaces {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2012-09-11 20:25:29 +02:00
|
|
|
.sidebar-nav {
|
2013-06-12 15:50:20 +02:00
|
|
|
padding: 0px 10px 20px 0px;
|
2013-01-16 21:42:35 +01:00
|
|
|
margin-top: 1em;
|
2012-11-15 23:46:14 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-06-12 15:50:20 +02:00
|
|
|
/* This is a little hacky, but for whatever reason, span2 in a row-fluid
|
|
|
|
doesn't consistently take on the right width when it's in an affix, so
|
|
|
|
we need to specify a max size. */
|
2014-01-31 21:36:31 +01:00
|
|
|
max-width: 250px;
|
2012-10-11 22:34:57 +02:00
|
|
|
}
|
2012-10-11 00:55:00 +02:00
|
|
|
|
2013-09-06 05:44:39 +02:00
|
|
|
.edit-profile {
|
2013-05-07 19:32:12 +02:00
|
|
|
font-weight: 300;
|
2013-09-06 05:44:39 +02:00
|
|
|
font-size: 12px;
|
2012-10-12 05:10:48 +02:00
|
|
|
}
|
2013-03-03 02:39:47 +01:00
|
|
|
|
2012-11-02 22:19:12 +01:00
|
|
|
.logout {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2012-10-12 05:10:48 +02:00
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
.sidebar-title {
|
2013-09-12 22:02:55 +02:00
|
|
|
font-size: 11px;
|
2013-07-12 17:00:32 +02:00
|
|
|
font-weight: normal;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
#message_edit_tooltip {
|
2013-07-12 17:00:32 +02:00
|
|
|
float: right;
|
|
|
|
color: #000;
|
2014-02-14 21:31:45 +01:00
|
|
|
font-size: 13px;
|
2013-07-12 17:00:32 +02:00
|
|
|
margin-top: 3px;
|
2016-06-13 22:06:12 +02:00
|
|
|
margin-left: 6px;
|
2016-02-25 22:44:20 +01:00
|
|
|
opacity: 0.5;
|
2013-07-12 17:00:32 +02:00
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
#message_edit_tooltip:hover {
|
2017-03-18 23:49:11 +01:00
|
|
|
opacity: 1.0;
|
2016-06-13 22:06:12 +02:00
|
|
|
}
|
|
|
|
|
2016-07-08 02:25:55 +02:00
|
|
|
.message-edit-tooltip-inner {
|
|
|
|
width: 200px;
|
|
|
|
position: absolute;
|
|
|
|
right: 7px;
|
|
|
|
top: -18px;
|
|
|
|
}
|
|
|
|
|
2013-08-12 23:05:20 +02:00
|
|
|
.narrow-filter {
|
|
|
|
display: block;
|
2013-06-12 21:25:49 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
.message_header_stream a.message_label_clickable {
|
2013-02-22 04:39:54 +01:00
|
|
|
color: #333;
|
2013-02-06 19:48:26 +01:00
|
|
|
}
|
|
|
|
|
2013-08-16 21:08:43 +02:00
|
|
|
li.actual-dropdown-menu i {
|
|
|
|
/* In gear menu, make icons the same width so labels line up. */
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
2017-02-01 03:04:10 +01:00
|
|
|
text-align: center;
|
2017-02-01 03:09:43 +01:00
|
|
|
margin-right: 3px;
|
2013-02-12 20:41:01 +01:00
|
|
|
}
|
|
|
|
|
2013-02-28 19:04:58 +01:00
|
|
|
.message_area_padder {
|
2013-08-22 23:29:54 +02:00
|
|
|
/* The height of the header and the tabbar plus a small gap */
|
2017-01-05 01:03:14 +01:00
|
|
|
margin-top: 100px;
|
2013-02-28 19:04:58 +01:00
|
|
|
/* This is needed for the floating recipient bar
|
2017-03-18 23:49:11 +01:00
|
|
|
in Firefox only, for some reason; otherwise it gets
|
|
|
|
a scrollbar */
|
2013-02-28 19:04:58 +01:00
|
|
|
overflow: visible;
|
2012-09-25 22:18:25 +02:00
|
|
|
}
|
2013-06-22 00:21:55 +02:00
|
|
|
|
2012-09-10 21:14:01 +02:00
|
|
|
td.pointer {
|
|
|
|
vertical-align: top;
|
2012-09-10 21:16:17 +02:00
|
|
|
padding-top: 10px;
|
2013-05-10 22:48:02 +02:00
|
|
|
background-color: #fff;
|
2012-10-02 20:47:01 +02:00
|
|
|
}
|
|
|
|
|
2013-05-31 19:07:59 +02:00
|
|
|
.new_messages {
|
|
|
|
background-color: lightblue;
|
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
.new_messages,
|
|
|
|
.new_messages_fadeout {
|
2013-05-16 23:40:07 +02:00
|
|
|
-webkit-transition: all 3s ease-in-out;
|
|
|
|
-moz-transition: all 3s ease-in-out;
|
|
|
|
-o-transition: all 3s ease-in-out;
|
|
|
|
transition: all 3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2014-01-31 21:36:31 +01:00
|
|
|
.include-sender .message_edit_notice {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
line-height: 14px;
|
2014-02-06 07:21:27 +01:00
|
|
|
margin-left: 0px;
|
2014-01-31 21:36:31 +01:00
|
|
|
position: static;
|
|
|
|
padding: 0px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2016-06-01 19:57:04 +02:00
|
|
|
.sender-status .message_edit_notice {
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
2014-01-31 21:36:31 +01:00
|
|
|
.message_edit_notice {
|
|
|
|
font-size: 10px;
|
|
|
|
color: #a1a1a1;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 0px;
|
|
|
|
text-align: right;
|
|
|
|
width: 45px;
|
2014-03-12 19:08:03 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 16px;
|
2014-01-31 21:36:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.include-sender .message_edit_notice:before {
|
|
|
|
content: "(";
|
|
|
|
}
|
|
|
|
|
|
|
|
.include-sender .message_edit_notice:after {
|
|
|
|
content: ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
.include-sender .message_time {
|
2014-03-13 15:41:00 +01:00
|
|
|
top: -4px;
|
2014-01-31 21:36:31 +01:00
|
|
|
}
|
|
|
|
|
2013-05-24 00:03:39 +02:00
|
|
|
.message_time {
|
2014-03-10 16:11:34 +01:00
|
|
|
display: block;
|
2017-03-08 03:55:47 +01:00
|
|
|
font-size: 12px;
|
|
|
|
color: #b1b1b1;
|
2013-11-21 12:11:50 +01:00
|
|
|
vertical-align: middle;
|
2014-02-07 00:50:23 +01:00
|
|
|
padding: 1px;
|
2017-03-07 19:17:32 +01:00
|
|
|
font-weight: 400;
|
2014-01-31 21:36:31 +01:00
|
|
|
position: absolute;
|
2017-02-23 23:33:57 +01:00
|
|
|
right: -105px;
|
2014-03-10 16:11:34 +01:00
|
|
|
line-height: 20px;
|
2014-01-31 21:36:31 +01:00
|
|
|
text-align: right;
|
2014-02-07 00:50:23 +01:00
|
|
|
-webkit-transition: background-color 2.7s ease-in, color 2.7s ease-in;
|
|
|
|
-moz-transition: background-color 2.7s ease-in, color 2.7s ease-in;
|
|
|
|
-o-transition: background-color 2.7s ease-in, color 2.7s ease-in;
|
|
|
|
transition: background-color 2.7s ease-in, color 2.7s ease-in;
|
|
|
|
}
|
|
|
|
|
2014-03-10 16:11:34 +01:00
|
|
|
.status-time {
|
|
|
|
top: 8px !important;
|
2014-01-31 23:52:18 +01:00
|
|
|
}
|
|
|
|
|
2013-05-21 17:47:44 +02:00
|
|
|
.message_controls {
|
2013-05-24 00:03:39 +02:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
2017-03-08 03:55:47 +01:00
|
|
|
right: -56px;
|
2017-02-23 23:33:57 +01:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_controls > div {
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.messagebox:hover .message_controls > div {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_controls > div {
|
|
|
|
padding: 0px 1px;
|
2013-11-21 12:11:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.include-sender .message_controls {
|
2014-03-13 15:41:00 +01:00
|
|
|
top: -3px;
|
2013-05-21 17:47:44 +02:00
|
|
|
}
|
|
|
|
|
2013-05-10 22:48:02 +02:00
|
|
|
.message_data {
|
2012-09-10 20:31:53 +02:00
|
|
|
vertical-align: top;
|
2013-05-21 17:47:44 +02:00
|
|
|
text-align: left;
|
2013-05-24 00:03:39 +02:00
|
|
|
padding: 0px;
|
2013-05-10 22:48:02 +02:00
|
|
|
background-color: #fff;
|
2013-05-24 00:03:39 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2012-10-17 22:03:00 +02:00
|
|
|
.message_header {
|
2012-09-27 21:34:15 +02:00
|
|
|
vertical-align: middle;
|
2017-03-14 16:36:22 +01:00
|
|
|
text-align: left;
|
2013-02-13 23:23:26 +01:00
|
|
|
/* We can overflow-y if the font size gets big */
|
2017-03-14 16:36:22 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 14px;
|
2014-02-21 19:40:13 +01:00
|
|
|
position: relative;
|
|
|
|
z-index: 0;
|
2013-12-09 20:15:33 +01:00
|
|
|
}
|
|
|
|
|
2016-07-18 03:10:51 +02:00
|
|
|
.message_list .recipient_row {
|
2014-02-20 20:22:29 +01:00
|
|
|
background: #f1f1f1;
|
2014-02-21 19:40:13 +01:00
|
|
|
border-bottom: 1px solid #e2e2e2;
|
2016-08-23 05:37:49 +02:00
|
|
|
border-top: 1px solid #e2e2e2;
|
2014-02-20 20:22:29 +01:00
|
|
|
margin-bottom: 10px;
|
2014-02-13 21:04:26 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 17:11:37 +01:00
|
|
|
.stream_label {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 4px 2px 4px;
|
|
|
|
font-weight: normal;
|
2014-01-17 16:11:18 +01:00
|
|
|
height: 17px;
|
|
|
|
line-height: 17px;
|
2014-01-15 17:11:37 +01:00
|
|
|
border-top-color: rgba(0, 0, 0, 0);
|
|
|
|
border-right-color: rgba(0, 0, 0, 0);
|
|
|
|
border-bottom-color: rgba(0, 0, 0, 0);
|
|
|
|
background-color: #e2e2e2;
|
|
|
|
border-left-color: #e2e2e2;
|
|
|
|
border-width: 0px;
|
|
|
|
position: relative;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2014-01-17 16:11:18 +01:00
|
|
|
.stream_label .invite-stream-icon {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_list .stream_label {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
2014-01-15 17:11:37 +01:00
|
|
|
.stream_label:hover {
|
|
|
|
color: inherit !important;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream_label:after {
|
2017-03-18 23:49:11 +01:00
|
|
|
left: 100%;
|
|
|
|
top: 50%;
|
|
|
|
content: " ";
|
|
|
|
height: 0px;
|
|
|
|
width: 0px;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
margin-top: -11px;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 11px 0 11px 5px;
|
|
|
|
border-color: inherit;
|
|
|
|
z-index: 2;
|
|
|
|
-moz-transform: scale(.9999);
|
2014-01-15 17:11:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.stream_label:before {
|
2017-03-18 23:49:11 +01:00
|
|
|
left: 100%;
|
|
|
|
top: 50%;
|
|
|
|
content: " ";
|
|
|
|
height: 0px;
|
|
|
|
width: 0px;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
margin-top: -14px;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 14px 0 14px 6px;
|
|
|
|
border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffffff;
|
|
|
|
z-index: 1;
|
|
|
|
-moz-transform: scale(.9999);
|
2013-06-22 00:21:55 +02:00
|
|
|
}
|
|
|
|
|
2014-01-17 16:11:18 +01:00
|
|
|
.stream_topic {
|
|
|
|
display: inline-block;
|
2014-02-06 18:13:50 +01:00
|
|
|
padding: 3px 6px 2px 12px;
|
2014-01-17 16:11:18 +01:00
|
|
|
margin-left: -5px;
|
|
|
|
height: 17px;
|
|
|
|
line-height: 17px;
|
|
|
|
}
|
|
|
|
|
2016-08-18 22:18:33 +02:00
|
|
|
.recipient_row_date {
|
2016-12-14 23:13:55 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2016-08-18 22:18:33 +02:00
|
|
|
|
|
|
|
color: #888;
|
2017-03-08 03:55:47 +01:00
|
|
|
font-size: 12px;
|
2016-08-18 22:18:33 +02:00
|
|
|
font-weight: 600;
|
2017-03-08 03:55:47 +01:00
|
|
|
padding: 3px 11px 2px 10px;
|
2016-08-18 22:18:33 +02:00
|
|
|
height: 17px;
|
|
|
|
line-height: 17px;
|
|
|
|
}
|
|
|
|
|
2017-01-06 01:44:34 +01:00
|
|
|
.recipient_row_date.hide-date {
|
2016-08-18 22:18:33 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-01-06 01:44:34 +01:00
|
|
|
.floating_recipient .recipient_row_date.hide-date {
|
2016-08-18 22:18:33 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-07-11 02:29:36 +02:00
|
|
|
.summary_row .message_header {
|
2014-01-15 17:11:37 +01:00
|
|
|
padding: 5px 0px 4px 5px;
|
2013-08-07 23:50:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.summary_row .message_header {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookend_tr + .summary_row .message_header {
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookend_tr + .summary_row .summary_colorblock {
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.summary_row.last_message .message_header {
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
box-shadow: inset 0px 2px 1px -2px #333, inset -2px 0px 1px -2px #333, inset 0px -2px 1px -2px #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.summary_row.last_message .summary_colorblock {
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2013-06-22 00:21:55 +02:00
|
|
|
.message_header .icon-vector-narrow {
|
|
|
|
font-size: 0.6em;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
|
2013-07-17 22:53:07 +02:00
|
|
|
.copy-paste-text {
|
|
|
|
/* Hide the text that we want copy paste to capture */
|
|
|
|
position: absolute;
|
|
|
|
text-indent: -99999px;
|
|
|
|
float: left;
|
|
|
|
width: 0px;
|
|
|
|
}
|
|
|
|
|
2013-06-22 00:21:55 +02:00
|
|
|
.message_header_colorblock {
|
|
|
|
border-radius: 3px 0px 0px 0px;
|
|
|
|
/* box-shadow: 0px 2px 3px #ccc; */
|
2013-07-18 11:25:22 +02:00
|
|
|
box-shadow: inset 0px 2px 1px -2px #333, inset 2px 0px 1px -2px #333 !important;
|
2012-09-26 20:27:38 +02:00
|
|
|
}
|
|
|
|
|
2013-08-07 23:50:49 +02:00
|
|
|
.summary_row_private_message .summary_colorblock {
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
2013-09-11 20:42:25 +02:00
|
|
|
.messages-expand,
|
|
|
|
.messages-collapse {
|
2016-09-28 02:42:55 +02:00
|
|
|
cursor: pointer;
|
2013-09-11 18:47:45 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 21:43:40 +02:00
|
|
|
/*
|
2017-03-18 23:49:11 +01:00
|
|
|
We can't collapse the floating recipient bar yet, so this is
|
|
|
|
just a temporary hack.
|
2013-08-23 21:43:40 +02:00
|
|
|
*/
|
2013-09-11 20:42:25 +02:00
|
|
|
.floating_recipient .messages-collapse {
|
2013-08-23 21:43:40 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-01-03 20:39:12 +01:00
|
|
|
.message_failed .rotating {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
-webkit-animation: rotate 1s infinite linear;
|
|
|
|
-moz-animation: rotate 1s infinite linear;
|
|
|
|
-ms-animation: rotate 1s infinite linear;
|
|
|
|
-o-animation: rotate 1s infinite linear;
|
|
|
|
animation: rotate 1s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes rotate {
|
2017-03-18 23:49:11 +01:00
|
|
|
from {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: rotate(359deg);
|
|
|
|
}
|
2014-01-03 20:39:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes rotate {
|
2017-03-18 23:49:11 +01:00
|
|
|
from {
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-moz-transform: rotate(359deg);
|
|
|
|
}
|
2014-01-03 20:39:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@-ms-keyframes rotate {
|
2017-03-18 23:49:11 +01:00
|
|
|
from {
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-ms-transform: rotate(359deg);
|
|
|
|
}
|
2014-01-03 20:39:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes rotate {
|
2017-03-18 23:49:11 +01:00
|
|
|
from {
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-o-transform: rotate(359deg);
|
|
|
|
}
|
2014-01-03 20:39:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotate {
|
2017-03-18 23:49:11 +01:00
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
2014-01-03 20:39:12 +01:00
|
|
|
}
|
|
|
|
|
2013-09-02 21:47:00 +02:00
|
|
|
.messagebox-bottom {
|
|
|
|
height: 3px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 0px 0px 3px 0px;
|
|
|
|
/* box-shadow: 0px 2px 2px -1px #ccc; */
|
|
|
|
border: 1px solid #c1dbd5;
|
|
|
|
border-top: none;
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.messagebox-bottom-colorblock {
|
|
|
|
border-radius: 0px 0px 0px 3px;
|
|
|
|
/* box-shadow: 0px 2px 2px -1px #ccc; */
|
|
|
|
border: 1px solid #c1dbd5;
|
|
|
|
border-top: none;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
2014-02-20 20:22:29 +01:00
|
|
|
.floating_recipient .message_header_private_message {
|
|
|
|
border-bottom: 0px;
|
2014-02-24 19:30:22 +01:00
|
|
|
border-left: 0px;
|
2014-02-20 20:22:29 +01:00
|
|
|
}
|
|
|
|
|
2014-01-31 21:36:31 +01:00
|
|
|
.message_header_private_message .message_label_clickable {
|
2013-06-27 08:49:38 +02:00
|
|
|
background-color: #444444;
|
2014-01-31 21:36:31 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 4px 2px 4px;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 14px;
|
|
|
|
height: 17px;
|
|
|
|
line-height: 17px;
|
2016-08-18 22:18:33 +02:00
|
|
|
border-left-color: #444;
|
2013-06-27 08:49:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-17 20:52:19 +02:00
|
|
|
/* Base color backgrounds for messageboxes,
|
|
|
|
private messages, mentions, and unread messages */
|
2013-07-18 21:30:37 +02:00
|
|
|
|
2013-07-17 20:52:19 +02:00
|
|
|
.messagebox {
|
|
|
|
background-color: #ffffff;
|
2013-12-09 20:15:33 +01:00
|
|
|
position: relative;
|
2013-07-17 20:52:19 +02:00
|
|
|
}
|
|
|
|
|
2014-01-31 21:36:31 +01:00
|
|
|
.private-message .messagebox,
|
|
|
|
.message_header_private_message .message-header-contents {
|
2013-07-17 20:52:19 +02:00
|
|
|
background-color: #feffe0;
|
|
|
|
}
|
|
|
|
|
2016-08-18 22:18:33 +02:00
|
|
|
.floating_recipient .message-header-contents {
|
2014-02-24 19:30:22 +01:00
|
|
|
border-right: 1px solid #e2e2e2;
|
|
|
|
}
|
|
|
|
|
2014-02-13 21:04:26 +01:00
|
|
|
.mention .messagebox-content {
|
2013-07-08 23:25:07 +02:00
|
|
|
background-color: #ffe4e0;
|
2013-06-27 08:49:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-18 22:16:01 +02:00
|
|
|
.messagebox .message_top_line {
|
2013-07-08 23:25:07 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-02-21 19:40:13 +01:00
|
|
|
.recipient_row .message_row:first-child .unread_marker {
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
|
2014-01-06 18:01:21 +01:00
|
|
|
.unread_marker {
|
2013-07-18 22:16:01 +02:00
|
|
|
display: block;
|
2013-07-08 23:25:07 +02:00
|
|
|
position: absolute;
|
2014-02-24 19:30:22 +01:00
|
|
|
left: 2px;
|
|
|
|
top: 0px;
|
2014-02-21 19:40:13 +01:00
|
|
|
padding-bottom: 2px;
|
2014-02-24 19:30:22 +01:00
|
|
|
opacity: 0;
|
2014-02-18 17:05:27 +01:00
|
|
|
z-index: 1;
|
|
|
|
height: 100%;
|
2014-02-21 19:40:13 +01:00
|
|
|
-webkit-transition: all 0.3s ease-out;
|
|
|
|
-moz-transition: all 0.3s ease-out;
|
|
|
|
-o-transition: all 0.3s ease-out;
|
|
|
|
transition: all 0.3s ease-out;
|
2014-02-18 17:05:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.unread-marker-fill {
|
|
|
|
background: #2b8213;
|
2014-02-24 19:30:22 +01:00
|
|
|
width: 3px;
|
2014-02-18 17:05:27 +01:00
|
|
|
height: 100%;
|
2014-02-21 19:40:13 +01:00
|
|
|
box-shadow: inset 0px -1px 0px 0px #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.last_message .unread-marker-fill {
|
|
|
|
box-shadow: none;
|
2014-02-18 17:05:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.unread .unread_marker {
|
2014-02-21 19:40:13 +01:00
|
|
|
-webkit-transition: all 0.3s ease-out;
|
|
|
|
-moz-transition: all 0.3s ease-out;
|
|
|
|
-o-transition: all 0.3s ease-out;
|
|
|
|
transition: all 0.3s ease-out;
|
2014-02-18 17:05:27 +01:00
|
|
|
opacity: 1;
|
2013-07-26 17:19:13 +02:00
|
|
|
}
|
|
|
|
|
2014-01-10 17:21:00 +01:00
|
|
|
.unread_marker.slow_fade {
|
2014-02-26 20:55:47 +01:00
|
|
|
-webkit-transition: all 2s ease-out;
|
|
|
|
-moz-transition: all 2s ease-out;
|
|
|
|
-o-transition: all 2s ease-out;
|
|
|
|
transition: all 2s ease-out;
|
2013-07-26 17:19:13 +02:00
|
|
|
}
|
|
|
|
|
2014-01-10 17:21:00 +01:00
|
|
|
.unread_marker.fast_fade {
|
2014-02-21 19:40:13 +01:00
|
|
|
-webkit-transition: all 0.3s ease-out;
|
|
|
|
-moz-transition: all 0.3s ease-out;
|
|
|
|
-o-transition: all 0.3s ease-out;
|
|
|
|
transition: all 0.3s ease-out;
|
2013-07-01 23:28:27 +02:00
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
.selected_message .messagebox {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2013-07-22 20:08:53 +02:00
|
|
|
|
2014-01-31 21:36:31 +01:00
|
|
|
.selected_message .messagebox-content {
|
2014-02-28 01:23:23 +01:00
|
|
|
box-shadow: inset 0px 0px 0px 2px #4577bc,
|
|
|
|
-1px -1px 0px 0px #4577bc,
|
|
|
|
1px 1px 0px 0px #4577bc,
|
|
|
|
-1px 1px 0px 0px #4577bc,
|
|
|
|
1px -1px 0px 0px #4577bc;
|
2014-02-24 19:30:22 +01:00
|
|
|
}
|
2013-07-22 20:08:53 +02:00
|
|
|
|
2013-05-10 22:48:02 +02:00
|
|
|
.message_sender {
|
2013-05-21 17:47:44 +02:00
|
|
|
height: 0px;
|
2013-05-10 22:48:02 +02:00
|
|
|
vertical-align: top;
|
2013-05-21 17:47:44 +02:00
|
|
|
position: relative;
|
2013-05-10 22:48:02 +02:00
|
|
|
}
|
|
|
|
|
2012-10-09 23:58:24 +02:00
|
|
|
.sender_name {
|
2013-02-22 04:39:54 +01:00
|
|
|
color: #333;
|
2013-05-10 22:48:02 +02:00
|
|
|
display: inline-block;
|
2014-03-01 05:01:24 +01:00
|
|
|
font-weight: 700;
|
2013-06-28 01:35:19 +02:00
|
|
|
vertical-align: top;
|
2014-01-31 21:36:31 +01:00
|
|
|
line-height: 12px;
|
2014-02-13 21:04:26 +01:00
|
|
|
font-size: 14px;
|
2017-02-12 06:46:54 +01:00
|
|
|
margin-left: -3px;
|
2013-05-10 22:48:02 +02:00
|
|
|
}
|
|
|
|
|
2013-11-12 19:36:41 +01:00
|
|
|
.sender-status {
|
2014-06-10 22:34:36 +02:00
|
|
|
display: block;
|
2017-02-12 06:46:54 +01:00
|
|
|
left: 46px;
|
2014-06-10 22:34:36 +02:00
|
|
|
top: -26px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
padding-right: 35px;
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: 18px;
|
2014-03-12 19:09:57 +01:00
|
|
|
font-size: 14px;
|
2014-01-31 23:52:18 +01:00
|
|
|
position: relative;
|
2013-11-08 02:00:12 +01:00
|
|
|
}
|
|
|
|
|
2014-06-10 22:34:36 +02:00
|
|
|
.message_controls.sender-status-controls {
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sender_name-in-status {
|
2014-01-31 23:52:18 +01:00
|
|
|
margin-right: 3px;
|
2014-06-10 22:34:36 +02:00
|
|
|
font-weight: 700;
|
2013-11-12 17:21:58 +01:00
|
|
|
}
|
|
|
|
|
2014-06-10 22:34:36 +02:00
|
|
|
.sender_name_hovered .sender_name,
|
|
|
|
.sender_name_hovered .sender_name-in-status {
|
2013-05-10 22:48:02 +02:00
|
|
|
color: #0088CC;
|
2013-05-21 17:47:44 +02:00
|
|
|
}
|
|
|
|
|
2013-07-11 23:06:58 +02:00
|
|
|
.sender_name_hovered .inline_profile_picture {
|
2013-05-21 17:47:44 +02:00
|
|
|
border-color: #0088CC;
|
2013-02-11 19:21:58 +01:00
|
|
|
}
|
|
|
|
|
2017-01-11 16:45:06 +01:00
|
|
|
.message_sender .bot-icon {
|
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
|
|
|
top: -4px;
|
|
|
|
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_sender .sender-status .bot-icon {
|
|
|
|
top: -1px;
|
|
|
|
margin-left: -3px;
|
|
|
|
}
|
|
|
|
|
2013-07-11 23:06:58 +02:00
|
|
|
.actions_hover:hover {
|
|
|
|
color: #0088CC;
|
|
|
|
}
|
|
|
|
|
2013-12-19 17:03:08 +01:00
|
|
|
.message_failed,
|
|
|
|
.message_local {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_failed {
|
|
|
|
font-weight: bold;
|
|
|
|
color: red;
|
2016-11-22 07:26:38 +01:00
|
|
|
position: relative;
|
2013-12-19 17:03:08 +01:00
|
|
|
}
|
|
|
|
|
2013-10-03 23:05:46 +02:00
|
|
|
a.message_label_clickable:hover {
|
2012-09-11 17:32:04 +02:00
|
|
|
cursor: pointer;
|
2013-05-10 22:48:02 +02:00
|
|
|
color: #08C;
|
2012-09-11 17:32:04 +02:00
|
|
|
}
|
|
|
|
|
2013-11-07 00:20:14 +01:00
|
|
|
.on_hover_topic_edit {
|
|
|
|
opacity: .1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.always_visible_topic_edit {
|
2013-05-21 00:00:28 +02:00
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
|
2016-07-31 21:44:27 +02:00
|
|
|
.on_hover_topic_edit:hover,
|
|
|
|
.always_visible_topic_edit:hover {
|
2013-05-21 00:00:28 +02:00
|
|
|
cursor: pointer;
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
2016-11-22 09:20:20 +01:00
|
|
|
.on_hover_topic_mute {
|
|
|
|
opacity: .1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.on_hover_topic_mute:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:43:16 +02:00
|
|
|
.edit_content {
|
2017-02-23 23:33:57 +01:00
|
|
|
width: 12px;
|
2013-08-27 23:54:13 +02:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2016-11-11 00:41:00 +01:00
|
|
|
color: #bbb;
|
2013-08-27 23:54:13 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 23:43:16 +02:00
|
|
|
.edit_content:hover {
|
|
|
|
cursor: pointer;
|
2017-02-23 23:33:57 +01:00
|
|
|
color: #0088CC;
|
2016-12-31 06:38:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.reactions_hover {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
|
|
|
|
2017-02-23 23:33:57 +01:00
|
|
|
.reactions_hover:hover {
|
|
|
|
color: #0088CC;
|
2016-12-31 06:38:23 +01:00
|
|
|
}
|
|
|
|
|
2017-01-10 17:21:02 +01:00
|
|
|
.message_hovered .reactions_hover,
|
2017-02-23 23:33:57 +01:00
|
|
|
.has_reactions_popover .reactions_hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_hovered .info,
|
|
|
|
.has_actions_popover .info,
|
|
|
|
.message_hovered .empty-star {
|
|
|
|
opacity: 1;
|
2013-08-15 23:43:16 +02:00
|
|
|
}
|
|
|
|
|
2013-02-16 09:43:27 +01:00
|
|
|
/* Brighten text because of the dark background */
|
2013-10-03 23:05:46 +02:00
|
|
|
.dark_background a,
|
2014-02-21 19:40:13 +01:00
|
|
|
.dark_background a:hover,
|
|
|
|
a.dark_background:hover,
|
2013-02-16 09:43:27 +01:00
|
|
|
.dark_background {
|
2014-02-07 20:55:35 +01:00
|
|
|
color: #ffffff !important;
|
2013-02-16 09:43:27 +01:00
|
|
|
}
|
|
|
|
|
2013-10-03 23:05:46 +02:00
|
|
|
.dark_background a.message_label_clickable:hover {
|
2012-10-23 00:29:40 +02:00
|
|
|
color: #3BF;
|
|
|
|
}
|
|
|
|
|
2013-02-09 08:11:08 +01:00
|
|
|
.message_top_line {
|
2013-05-24 00:03:39 +02:00
|
|
|
position: relative;
|
2013-02-09 08:11:08 +01:00
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
.include-sender .message_top_line {
|
2014-01-31 21:36:31 +01:00
|
|
|
margin-top: 6px;
|
2013-12-09 20:15:33 +01:00
|
|
|
}
|
|
|
|
|
2013-05-21 17:47:44 +02:00
|
|
|
.message-right {
|
2013-02-09 08:11:08 +01:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-04-04 17:25:05 +02:00
|
|
|
.small {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
2013-07-15 23:50:53 +02:00
|
|
|
.tiny {
|
|
|
|
font-size: 60%;
|
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
.actions_hovered .message_time,
|
|
|
|
.actions_hovered .info {
|
2013-05-21 17:47:44 +02:00
|
|
|
color: #0088CC;
|
|
|
|
cursor: pointer;
|
2013-02-11 19:21:58 +01:00
|
|
|
}
|
|
|
|
|
2016-11-09 01:26:15 +01:00
|
|
|
.info {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
|
|
|
|
2013-02-09 08:11:08 +01:00
|
|
|
.actions_hovered .actions_link {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
div.message_table {
|
2013-06-22 00:21:55 +02:00
|
|
|
border-collapse: separate;
|
2012-09-11 19:42:06 +02:00
|
|
|
margin-left: auto;
|
2012-09-13 22:00:11 +02:00
|
|
|
display: none;
|
2012-10-02 20:47:01 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-01-06 18:01:21 +01:00
|
|
|
.message_row {
|
|
|
|
position: relative;
|
2014-02-21 19:40:13 +01:00
|
|
|
border-left: 1px solid #e2e2e2;
|
|
|
|
border-right: 1px solid #e2e2e2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_row.selected_message {
|
|
|
|
z-index: 2;
|
2014-01-06 18:01:21 +01:00
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
div.focused_table {
|
2014-01-06 16:24:26 +01:00
|
|
|
display: block;
|
2012-09-11 17:56:34 +02:00
|
|
|
}
|
|
|
|
|
2013-06-28 01:35:19 +02:00
|
|
|
.include-sender .message_content {
|
2014-01-31 21:36:31 +01:00
|
|
|
margin-top: -16px;
|
2013-06-28 01:35:19 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 00:02:28 +02:00
|
|
|
.message_content {
|
2014-01-31 21:36:31 +01:00
|
|
|
line-height: 17px;
|
2014-02-13 21:04:26 +01:00
|
|
|
font-size: 14px;
|
2014-01-31 21:36:31 +01:00
|
|
|
padding-left: 46px;
|
2013-12-09 20:15:33 +01:00
|
|
|
display: block;
|
2014-01-31 21:36:31 +01:00
|
|
|
position: relative;
|
2012-09-10 20:31:53 +02:00
|
|
|
}
|
2014-03-12 19:08:03 +01:00
|
|
|
|
2013-07-16 23:40:01 +02:00
|
|
|
.message_edit_content {
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
2014-01-17 16:11:18 +01:00
|
|
|
|
2016-07-08 02:25:55 +02:00
|
|
|
.message_edit_countdown_timer {
|
|
|
|
text-align: right;
|
|
|
|
display: inline;
|
|
|
|
color: #a1a1a1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_edit_tooltip {
|
|
|
|
display: inline;
|
|
|
|
color: #a1a1a1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-edit-timer-control-group {
|
|
|
|
float: right;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-01-17 16:11:18 +01:00
|
|
|
.topic_edit {
|
|
|
|
display: none;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
|
2016-10-25 23:19:43 +02:00
|
|
|
#inline_topic_edit,
|
2014-01-17 16:11:18 +01:00
|
|
|
#message_edit_topic {
|
2016-08-26 21:36:10 +02:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2016-10-25 23:19:43 +02:00
|
|
|
#inline_topic_edit.header-v {
|
2016-08-26 21:36:10 +02:00
|
|
|
height: 18px;
|
|
|
|
display: inline-block;
|
|
|
|
margin: -2px 0 0 0;
|
|
|
|
padding: 0px 3px;
|
|
|
|
|
2014-01-17 16:11:18 +01:00
|
|
|
line-height: 0px;
|
|
|
|
font-size: 14px;
|
2016-08-26 21:36:10 +02:00
|
|
|
|
2014-01-17 16:11:18 +01:00
|
|
|
border-radius: 0px;
|
|
|
|
border: 1px solid #afbfca;
|
2016-08-26 21:36:10 +02:00
|
|
|
box-shadow: none;
|
2014-01-17 16:11:18 +01:00
|
|
|
}
|
|
|
|
|
2016-10-25 23:19:43 +02:00
|
|
|
#inline_topic_edit:focus,
|
2014-01-17 16:11:18 +01:00
|
|
|
#message_edit_topic:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2016-07-11 02:29:36 +02:00
|
|
|
.message_edit_topic_propagate {
|
2013-09-03 22:07:59 +02:00
|
|
|
display: inline-block;
|
2016-08-26 21:36:10 +02:00
|
|
|
width: 300px;
|
|
|
|
margin-bottom: 5px !important;
|
|
|
|
max-width: 100%;
|
2013-09-03 22:07:59 +02:00
|
|
|
}
|
2012-09-11 19:06:07 +02:00
|
|
|
|
2017-02-20 02:37:58 +01:00
|
|
|
#message-edit-history .message_author {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-edit-history .author_details {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 1px;
|
|
|
|
font-weight: 300;
|
|
|
|
position: absolute;
|
|
|
|
right: -80px;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2013-05-01 23:21:45 +02:00
|
|
|
.message_content.condensed {
|
|
|
|
max-height: 8.5em;
|
|
|
|
overflow: hidden;
|
2013-03-13 22:47:38 +01:00
|
|
|
}
|
2013-05-08 23:17:49 +02:00
|
|
|
.message_content.collapsed {
|
|
|
|
max-height: 0em;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2013-03-13 22:47:38 +01:00
|
|
|
|
|
|
|
.message_length_controller {
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
color: #0088CC;
|
2013-03-20 23:08:39 +01:00
|
|
|
|
|
|
|
/* to match .message_content */
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 35px;
|
2017-02-05 12:14:43 +01:00
|
|
|
/* to make message-uncollapse easier */
|
|
|
|
margin-top: 10px;
|
2013-03-13 22:47:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_length_controller:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:05:12 +02:00
|
|
|
div.message_content table {
|
|
|
|
padding-right: 10px;
|
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.message_content thead {
|
|
|
|
background-color: #EFEFEF;
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
div.message_content div {
|
2013-10-10 22:05:12 +02:00
|
|
|
display: table-row;
|
|
|
|
vertical-align: inherit;
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
div.message_content div {
|
2013-10-10 22:05:12 +02:00
|
|
|
border: 1px solid #cccccc;
|
|
|
|
padding: 4px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
div.message_content div {
|
2013-10-10 22:05:12 +02:00
|
|
|
border: 1px solid #cccccc;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2012-09-17 21:57:58 +02:00
|
|
|
blockquote {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
2012-09-17 23:28:56 +02:00
|
|
|
blockquote p {
|
|
|
|
line-height: inherit;
|
2017-03-14 16:36:22 +01:00
|
|
|
font-size: inherit;
|
2012-09-17 23:28:56 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 22:28:02 +02:00
|
|
|
.messagebox {
|
2012-10-05 21:57:22 +02:00
|
|
|
word-wrap: break-word;
|
2012-11-06 19:46:28 +01:00
|
|
|
cursor: pointer;
|
2013-05-21 17:47:44 +02:00
|
|
|
vertical-align: top;
|
2013-07-18 11:25:22 +02:00
|
|
|
border: none;
|
2013-06-22 00:21:55 +02:00
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
.messagebox-content {
|
2017-02-23 23:33:57 +01:00
|
|
|
padding: 4px 115px 1px 10px;
|
2014-02-20 20:22:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.last_message .messagebox-content {
|
|
|
|
padding-bottom: 1px;
|
2013-05-21 17:47:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.messagebox p {
|
2013-06-28 01:35:19 +02:00
|
|
|
margin: 3px 0px 3px 0px;
|
2013-05-21 17:47:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.messagebox blockquote {
|
|
|
|
padding-left: 5px;
|
|
|
|
margin-left: 10px;
|
2013-08-01 01:18:32 +02:00
|
|
|
border-left-color: #ddd;
|
2012-09-18 23:19:29 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 22:28:02 +02:00
|
|
|
.bookend {
|
2012-09-26 20:27:38 +02:00
|
|
|
padding-top: 10px;
|
2013-06-22 00:21:55 +02:00
|
|
|
background-color: transparent;
|
2012-08-29 18:29:01 +02:00
|
|
|
}
|
|
|
|
|
2013-05-10 22:48:02 +02:00
|
|
|
.prev_is_same_sender.messagebox {
|
2012-09-13 22:00:11 +02:00
|
|
|
padding-top: 0px;
|
|
|
|
}
|
2012-09-24 22:28:02 +02:00
|
|
|
|
2013-05-10 22:48:02 +02:00
|
|
|
.prev_is_same_sender.message_data {
|
2013-05-21 17:47:44 +02:00
|
|
|
padding-top: 0px;
|
2013-05-10 22:48:02 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 22:28:02 +02:00
|
|
|
.next_is_same_sender {
|
2012-09-19 19:15:12 +02:00
|
|
|
border-bottom: 0px;
|
|
|
|
padding-bottom: 0px;
|
2012-09-13 22:00:11 +02:00
|
|
|
}
|
|
|
|
|
2013-05-10 22:48:02 +02:00
|
|
|
.inline_profile_picture {
|
|
|
|
display: inline-block;
|
2014-01-31 21:36:31 +01:00
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
margin-right: 11px;
|
|
|
|
background-size: 35px 35px;
|
2013-06-28 01:35:19 +02:00
|
|
|
vertical-align: top;
|
2013-01-07 23:41:36 +01:00
|
|
|
}
|
2012-08-29 18:29:01 +02:00
|
|
|
|
2012-10-17 20:43:20 +02:00
|
|
|
.home-error-bar {
|
2012-08-31 21:33:04 +02:00
|
|
|
margin-top: 5px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-10-10 23:34:52 +02:00
|
|
|
.streamname {
|
2012-09-05 23:38:20 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-02-21 21:34:13 +01:00
|
|
|
.alert {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-10-17 20:43:20 +02:00
|
|
|
.home-error-bar .alert {
|
2012-08-31 21:33:04 +02:00
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
2012-09-10 20:31:53 +02:00
|
|
|
|
2013-01-16 21:42:35 +01:00
|
|
|
.brand.skinny-user-gravatar {
|
2013-03-06 20:46:33 +01:00
|
|
|
display: table-cell;
|
2013-06-19 23:40:31 +02:00
|
|
|
padding-top: 0px;
|
2013-01-16 21:42:35 +01:00
|
|
|
padding-bottom: 0px;
|
2013-06-19 23:40:31 +02:00
|
|
|
margin-bottom: 0px;
|
2013-01-16 21:42:35 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2012-10-26 16:57:58 +02:00
|
|
|
#searchbox {
|
2013-06-19 23:40:31 +02:00
|
|
|
width: 100%;
|
2014-01-08 16:12:22 +01:00
|
|
|
height: 40px;
|
2012-10-26 19:55:39 +02:00
|
|
|
}
|
2012-11-02 22:19:12 +01:00
|
|
|
|
2013-05-09 21:12:53 +02:00
|
|
|
#tab_bar {
|
|
|
|
z-index: 2;
|
2013-07-04 23:01:38 +02:00
|
|
|
padding-top: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-04-09 05:50:24 +02:00
|
|
|
float: left;
|
2014-01-08 16:12:22 +01:00
|
|
|
letter-spacing: normal;
|
|
|
|
height: 40px;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0px 0px 0px 0px;
|
2014-01-08 16:12:22 +01:00
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
font-size: 16px;
|
2013-07-04 23:01:38 +02:00
|
|
|
border: none;
|
|
|
|
white-space: nowrap;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li {
|
2017-03-18 23:49:11 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
font-weight: 300;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
height: 40px;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
2014-01-08 16:12:22 +01:00
|
|
|
#tab_list li.inactive {
|
2017-03-18 23:49:11 +01:00
|
|
|
border-top-color: rgba(0, 0, 0, 0);
|
|
|
|
border-right-color: rgba(0, 0, 0, 0);
|
|
|
|
border-bottom-color: rgba(0, 0, 0, 0);
|
|
|
|
background-color: #e2e2e2;
|
|
|
|
border-left-color: #e2e2e2;
|
|
|
|
border-width: 0px;
|
2014-01-08 16:12:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.private_message a {
|
2017-03-18 23:49:11 +01:00
|
|
|
color: #ffffff;
|
2014-01-08 16:12:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.inactive:after {
|
2017-03-18 23:49:11 +01:00
|
|
|
left: 100%;
|
|
|
|
top: 50%;
|
|
|
|
content: " ";
|
|
|
|
height: 0px;
|
|
|
|
width: 0px;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
margin-top: -25px;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 25px 0 25px 12px;
|
|
|
|
border-color: inherit;
|
|
|
|
z-index: 2;
|
|
|
|
-moz-transform: scale(.9999);
|
2014-01-08 16:12:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.inactive:before {
|
2017-03-18 23:49:11 +01:00
|
|
|
left: 100%;
|
|
|
|
top: 50%;
|
|
|
|
content: " ";
|
|
|
|
height: 0px;
|
|
|
|
width: 0px;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
margin-top: -28px;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 28px 0 28px 14px;
|
|
|
|
border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffffff;
|
|
|
|
z-index: 1;
|
|
|
|
-moz-transform: scale(.9999);
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
2013-07-04 23:01:38 +02:00
|
|
|
border-color: inherit;
|
|
|
|
width: 100%;
|
|
|
|
display: inline-block;
|
2014-01-08 16:12:22 +01:00
|
|
|
padding: 0px 8px;
|
|
|
|
max-width: 120px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.active {
|
2014-01-08 16:12:22 +01:00
|
|
|
padding-left: 17px;
|
|
|
|
padding-right: 10px;
|
|
|
|
background-color: #e2e2e2;
|
|
|
|
max-width: 120px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.active.root {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.private_message {
|
2017-03-18 23:49:11 +01:00
|
|
|
border-top-color: rgba(0, 0, 0, 0);
|
|
|
|
border-right-color: rgba(0, 0, 0, 0);
|
|
|
|
border-bottom-color: rgba(0, 0, 0, 0);
|
|
|
|
background-color: #111111;
|
|
|
|
border-left-color: #111111;
|
|
|
|
color: #ffffff;
|
|
|
|
border-width: 0px;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list .root {
|
2014-01-08 16:12:22 +01:00
|
|
|
border-color: #e2e2e2;
|
|
|
|
background-color: #e2e2e2;
|
2013-07-04 23:01:38 +02:00
|
|
|
margin: 0px;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
2014-01-08 16:12:22 +01:00
|
|
|
#tab_list li.stream a,
|
|
|
|
#tab_list li.private_message a {
|
|
|
|
padding-left: 17px;
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tab_list li.root a {
|
|
|
|
color: #858585;
|
|
|
|
padding-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#tab_list .root a:hover {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2013-05-09 21:12:53 +02:00
|
|
|
#tab_bar_underpadding {
|
2014-01-09 16:58:51 +01:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
top: 40px;
|
|
|
|
height: 20px;
|
2016-04-09 05:50:24 +02:00
|
|
|
z-index: 99;
|
2013-05-09 21:12:53 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 21:42:35 +01:00
|
|
|
#navbar-buttons {
|
|
|
|
white-space: nowrap;
|
2013-08-13 12:52:26 +02:00
|
|
|
margin-left: 15px;
|
|
|
|
margin-top: 7px;
|
2014-01-08 16:12:22 +01:00
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
2013-01-16 21:42:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#navbar-buttons ul.nav {
|
2013-02-01 01:07:13 +01:00
|
|
|
margin: 0px;
|
2013-01-16 21:42:35 +01:00
|
|
|
}
|
|
|
|
|
2013-08-23 21:33:43 +02:00
|
|
|
#streamlist-toggle {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2014-01-08 16:12:22 +01:00
|
|
|
border-right: 2px solid #afbfca;
|
2013-08-23 21:33:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#streamlist-toggle-button {
|
|
|
|
text-decoration: none;
|
2014-01-08 16:12:22 +01:00
|
|
|
color: #858585;
|
2013-08-23 21:33:43 +02:00
|
|
|
display: block;
|
2013-09-03 17:40:34 +02:00
|
|
|
position: relative;
|
2014-01-08 16:12:22 +01:00
|
|
|
background-color: #e4e4e4;
|
2013-08-23 21:33:43 +02:00
|
|
|
width: 40px;
|
2014-01-09 16:58:51 +01:00
|
|
|
height: 19px;
|
2013-08-23 21:33:43 +02:00
|
|
|
padding-top: 12px;
|
|
|
|
padding-bottom: 9px;
|
|
|
|
}
|
|
|
|
|
2016-07-31 21:44:27 +02:00
|
|
|
#streamlist-toggle-unreadcount,
|
|
|
|
#userlist-toggle-unreadcount {
|
2013-09-03 17:40:34 +02:00
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
height: 12px;
|
|
|
|
min-width: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
background: #670000;
|
|
|
|
top: 4px;
|
|
|
|
right: 4px;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
box-shadow: 0px 0px 1px rgba(0,0,0,0.2);
|
|
|
|
border-radius: 12px;
|
|
|
|
padding: 1px 1px 1px 1px;
|
|
|
|
font-size: 9px;
|
|
|
|
z-index: 15;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2013-08-16 19:10:32 +02:00
|
|
|
.nav .dropdown-menu {
|
2014-01-09 16:58:51 +01:00
|
|
|
left: auto;
|
|
|
|
right: 0px;
|
2013-10-09 00:37:07 +02:00
|
|
|
top: 30px;
|
2013-08-15 23:03:28 +02:00
|
|
|
min-width: 180px;
|
|
|
|
-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
|
|
|
-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
|
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
2013-08-16 19:10:32 +02:00
|
|
|
.nav .dropdown-menu:after {
|
2013-08-15 23:03:28 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 0px;
|
|
|
|
height: 0px;
|
2014-01-08 16:12:22 +01:00
|
|
|
top: -7px;
|
2014-01-09 16:58:51 +01:00
|
|
|
right: 10px;
|
2013-08-15 23:03:28 +02:00
|
|
|
display: inline-block;
|
2013-08-16 19:10:32 +02:00
|
|
|
border-right: 7px solid transparent;
|
2014-01-08 16:12:22 +01:00
|
|
|
border-bottom: 7px solid #aaa;
|
2013-08-16 19:10:32 +02:00
|
|
|
border-left: 7px solid transparent;
|
2013-08-15 23:03:28 +02:00
|
|
|
content: '';
|
2013-08-16 19:10:32 +02:00
|
|
|
z-index: 10;
|
2013-08-15 23:03:28 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 23:46:12 +02:00
|
|
|
#navbar-buttons ul.nav .dropdown-toggle,
|
|
|
|
#navbar-buttons ul.nav li.active .dropdown-toggle {
|
2013-10-09 00:37:07 +02:00
|
|
|
font-size: 20px;
|
2014-01-08 16:12:22 +01:00
|
|
|
color: #858585;
|
2013-06-19 23:40:31 +02:00
|
|
|
text-shadow: none;
|
|
|
|
padding-left: 0px !important;
|
2013-07-26 23:46:12 +02:00
|
|
|
background-color: inherit;
|
|
|
|
box-shadow: inherit;
|
|
|
|
-webkit-box-shadow: inherit;
|
|
|
|
-moz-box-shadow: inherit;
|
2013-09-13 05:43:59 +02:00
|
|
|
display: block;
|
2013-10-09 00:37:07 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 3px;
|
2013-09-13 05:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#navbar-buttons ul.nav .dropdown-toggle,
|
|
|
|
#navbar-buttons ul.nav li.active .dropdown-toggle:hover {
|
2014-01-08 16:12:22 +01:00
|
|
|
color: #111111;
|
2013-06-19 23:40:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#navbar-buttons ul.nav li.dropdown.open .dropdown-toggle {
|
|
|
|
background: none;
|
2014-01-08 16:12:22 +01:00
|
|
|
color: #111111;
|
2013-06-19 23:40:31 +02:00
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchbox .input-append {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchbox .input-append .icon-vector-search {
|
|
|
|
padding: 0px;
|
2014-01-08 16:12:22 +01:00
|
|
|
font-size: 20px;
|
2013-06-19 23:40:31 +02:00
|
|
|
position: absolute;
|
2014-01-08 16:12:22 +01:00
|
|
|
left: 10px;
|
|
|
|
top: 10px;
|
2013-07-22 20:08:53 +02:00
|
|
|
z-index: 5;
|
2013-06-19 23:40:31 +02:00
|
|
|
}
|
|
|
|
|
2017-01-05 21:11:45 +01:00
|
|
|
|
2016-11-03 21:05:10 +01:00
|
|
|
nav .column-left {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a.no-style:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav .column-left .nav-logo {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
margin-top: 8px;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
background-image: url(../images/logo/zulip-icon-128x128.png);
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav .column-left .company-name {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-left: 8px;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 600;
|
|
|
|
color: #52c2af;
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a .no-style {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-08-13 12:52:26 +02:00
|
|
|
.navbar-search {
|
2014-01-08 16:12:22 +01:00
|
|
|
margin-top: 0px;
|
2013-08-13 12:52:26 +02:00
|
|
|
width: auto;
|
|
|
|
float: none;
|
2014-01-08 16:12:22 +01:00
|
|
|
overflow: hidden;
|
2014-01-31 23:52:18 +01:00
|
|
|
border-right: 1px solid #dadada;
|
2014-01-09 16:58:51 +01:00
|
|
|
height: 40px;
|
2012-10-26 16:57:58 +02:00
|
|
|
}
|
|
|
|
|
2012-11-14 21:08:49 +01:00
|
|
|
#search_query {
|
2014-01-08 16:12:22 +01:00
|
|
|
width: 100%;
|
|
|
|
font-size: 18px;
|
|
|
|
height: 40px;
|
2013-06-19 23:40:31 +02:00
|
|
|
padding: 0px;
|
|
|
|
color: #222;
|
2014-01-08 16:12:22 +01:00
|
|
|
box-shadow: inset 2px 0px 0px 0px #afbfca;
|
|
|
|
padding-left: 35px;
|
2013-06-19 23:40:31 +02:00
|
|
|
padding-right: 20px;
|
|
|
|
background: rgb(255,255,255); /* Old browsers */
|
|
|
|
border: none;
|
2014-01-08 16:12:22 +01:00
|
|
|
border-radius: 0px;
|
2013-06-19 23:40:31 +02:00
|
|
|
font-family: 'Humbug';
|
2014-01-08 16:12:22 +01:00
|
|
|
font-weight: 300;
|
|
|
|
line-height: 27px;
|
2013-06-19 23:40:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#search_query:focus {
|
2017-03-18 23:49:11 +01:00
|
|
|
box-shadow: inset 0px 0px 0px 2px #afbfca;
|
2013-06-19 23:40:31 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
#searchbox .search_button,
|
|
|
|
#searchbox .search_button[disabled]:hover {
|
2013-06-19 23:40:31 +02:00
|
|
|
position: absolute;
|
2014-01-08 16:12:22 +01:00
|
|
|
right: 2px;
|
|
|
|
top: 6px;
|
2013-06-19 23:40:31 +02:00
|
|
|
background: none;
|
|
|
|
border-radius: 0px;
|
|
|
|
border: none;
|
|
|
|
height: 30px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 4px;
|
|
|
|
color: #ccc;
|
2016-04-09 05:50:24 +02:00
|
|
|
font-size: 18px;
|
2013-06-19 23:40:31 +02:00
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
text-shadow: none;
|
2016-04-09 05:50:24 +02:00
|
|
|
z-index: 5;
|
2012-10-26 16:57:58 +02:00
|
|
|
}
|
2013-06-19 23:40:31 +02:00
|
|
|
|
|
|
|
#searchbox .search_button:hover {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchbox .search_button[disabled] {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2017-01-29 03:00:38 +01:00
|
|
|
#searchbox a.search_icon {
|
|
|
|
color: #ccc;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchbox a.search_icon:hover {
|
|
|
|
color: #000;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2012-10-26 16:57:58 +02:00
|
|
|
.highlight {
|
|
|
|
background-color: #FCEA81;
|
|
|
|
}
|
|
|
|
|
2013-05-31 21:06:05 +02:00
|
|
|
.highlight_text_inserted {
|
2013-06-05 19:38:35 +02:00
|
|
|
background-color: #E6EDFF;
|
2013-05-31 21:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight_text_deleted {
|
2013-06-05 19:38:35 +02:00
|
|
|
background-color: #FFE6E6;
|
2013-05-31 21:06:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight_text_replaced {
|
2013-06-05 19:38:35 +02:00
|
|
|
background-color: #F5E6FF;
|
2013-05-31 21:06:05 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 21:42:35 +01:00
|
|
|
#search_arrows {
|
|
|
|
margin-bottom: 5px;
|
2013-02-13 23:23:26 +01:00
|
|
|
|
|
|
|
/* Bootstrap wants font-size: 0 to eliminate space between
|
|
|
|
the buttons. We need to inherit the font size, so we
|
|
|
|
remove the button gap by adjusting "letter" spacing. */
|
|
|
|
font-size: 90%;
|
|
|
|
letter-spacing: -.3em;
|
2013-01-16 21:42:35 +01:00
|
|
|
}
|
|
|
|
|
2013-06-28 19:20:36 +02:00
|
|
|
#search_arrows input {
|
|
|
|
/* Chrome and Firefox do this already via default browser stylesheet;
|
|
|
|
but Opera needs this to avoid smushed letters in the search box. */
|
|
|
|
letter-spacing: normal;
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:15:33 +01:00
|
|
|
div.floating_recipient {
|
2013-06-22 00:21:55 +02:00
|
|
|
border-collapse: separate;
|
2012-10-15 16:53:48 +02:00
|
|
|
width: 100%;
|
2014-01-15 17:11:37 +01:00
|
|
|
position: relative;
|
2012-10-14 04:13:27 +02:00
|
|
|
}
|
|
|
|
|
2014-02-06 23:36:45 +01:00
|
|
|
#floating_recipient_bar {
|
|
|
|
top: 50px;
|
|
|
|
}
|
|
|
|
|
2014-02-14 19:56:46 +01:00
|
|
|
.message-header-contents {
|
|
|
|
background: #e2e2e2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.recipient_row.sticky {
|
|
|
|
margin-top: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sticky .message_header {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 99;
|
|
|
|
top: 50px;
|
|
|
|
width: 100%;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sticky .message-header-wrapper {
|
|
|
|
max-width: 1400px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sticky .message-header-contents {
|
|
|
|
margin-left: 250px;
|
|
|
|
margin-right: 251px;
|
|
|
|
}
|
|
|
|
|
2012-09-13 22:20:07 +02:00
|
|
|
#bottom_whitespace {
|
2016-07-18 03:10:51 +02:00
|
|
|
display: block;
|
|
|
|
height: 300px;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2012-09-11 20:12:39 +02:00
|
|
|
}
|
2012-09-11 23:37:46 +02:00
|
|
|
|
2012-10-01 21:32:09 +02:00
|
|
|
#home-error {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-01-16 19:50:18 +01:00
|
|
|
.loading_indicator_spinner {
|
2013-01-24 21:34:11 +01:00
|
|
|
/* If you change these, make sure to adjust the constants in
|
2017-03-18 23:49:11 +01:00
|
|
|
loading.make_indicator as well */
|
2013-01-15 21:41:16 +01:00
|
|
|
height: 38px;
|
|
|
|
width: 38px;
|
|
|
|
float: left;
|
2012-09-26 22:44:38 +02:00
|
|
|
}
|
|
|
|
|
2013-01-16 19:50:18 +01:00
|
|
|
.loading_indicator_text {
|
2013-01-24 21:34:11 +01:00
|
|
|
/* If you change these, make sure to adjust the constants in
|
2017-03-18 23:49:11 +01:00
|
|
|
loading.make_indicator as well */
|
2013-01-15 21:41:16 +01:00
|
|
|
margin-left: 20px;
|
2017-03-14 16:36:22 +01:00
|
|
|
font-size: 1.2em;
|
2017-01-05 01:03:14 +01:00
|
|
|
font-weight: 300;
|
2013-01-15 21:41:16 +01:00
|
|
|
line-height: 38px;
|
2012-09-26 22:44:38 +02:00
|
|
|
}
|
2012-09-27 22:54:27 +02:00
|
|
|
|
2017-01-31 02:40:35 +01:00
|
|
|
.settings-section #admin_page_users_loading_indicator,
|
|
|
|
.settings-section #admin_page_deactivated_users_loading_indicator,
|
|
|
|
.settings-section #admin_page_bots_loading_indicator,
|
|
|
|
.settings-section #admin_page_streams_loading_indicator {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2013-11-22 20:50:39 +01:00
|
|
|
.settings-section .loading_indicator_text {
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-section .loading_indicator_spinner {
|
2017-01-31 02:40:35 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2013-11-22 20:50:39 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2016-06-23 11:32:45 +02:00
|
|
|
.settings-section #default_language {
|
2016-08-02 15:03:42 +02:00
|
|
|
text-decoration: none;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-section #default_language_modal table {
|
|
|
|
width: 90%;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-section #default_language_modal td {
|
|
|
|
padding-left: 80px;
|
2016-06-23 11:32:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.settings-section .inline {
|
|
|
|
display: inline !important;
|
|
|
|
}
|
|
|
|
|
2016-07-31 21:44:27 +02:00
|
|
|
.twitter-image,
|
|
|
|
.message_inline_image {
|
2013-03-01 19:20:53 +01:00
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-left: 5px;
|
2017-01-07 02:14:08 +01:00
|
|
|
height: 100px;
|
2013-12-09 20:15:33 +01:00
|
|
|
display: block !important;
|
|
|
|
border: none !important;
|
2013-03-01 19:20:53 +01:00
|
|
|
}
|
|
|
|
|
2014-05-21 08:11:29 +02:00
|
|
|
.message_inline_ref {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
height: 50px;
|
|
|
|
display: block !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
|
2016-07-31 21:44:27 +02:00
|
|
|
.twitter-image img,
|
|
|
|
.message_inline_image img,
|
|
|
|
.message_inline_ref img {
|
2013-10-03 22:37:26 +02:00
|
|
|
height: auto;
|
2017-01-07 02:14:08 +01:00
|
|
|
max-height: 100%;
|
2014-05-21 08:11:29 +02:00
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_inline_image_title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-03-20 16:56:39 +01:00
|
|
|
.katex-html {
|
|
|
|
line-height: initial;
|
|
|
|
white-space: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tex-error {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2012-10-29 20:00:27 +01:00
|
|
|
.popover {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2012-10-24 02:13:36 +02:00
|
|
|
.popover-title {
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-02-09 04:09:52 +01:00
|
|
|
text-align: center;
|
2013-02-13 23:23:26 +01:00
|
|
|
|
2017-03-14 16:36:22 +01:00
|
|
|
font-size: inherit;
|
2013-02-13 23:23:26 +01:00
|
|
|
line-height: inherit;
|
2012-10-24 02:13:36 +02:00
|
|
|
}
|
2012-10-24 22:53:19 +02:00
|
|
|
|
2013-06-21 00:41:24 +02:00
|
|
|
.popover-title:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-02-09 03:29:40 +01:00
|
|
|
.popover_info {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popover hr {
|
2017-03-14 16:36:22 +01:00
|
|
|
margin-top: 5px;
|
2013-02-09 03:29:40 +01:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2016-07-31 21:44:27 +02:00
|
|
|
.popover-left,
|
|
|
|
.popover-right {
|
2016-06-21 20:30:34 +02:00
|
|
|
max-width: 200px;
|
2013-08-27 20:31:12 +02:00
|
|
|
}
|
|
|
|
|
2013-01-14 19:44:55 +01:00
|
|
|
.hotkeys_table {
|
2013-07-10 17:23:48 +02:00
|
|
|
width: 245px;
|
2013-01-14 19:44:55 +01:00
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 90%;
|
2014-02-18 17:40:18 +01:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hotkeys_table th {
|
|
|
|
width: 245px;
|
2013-01-14 19:44:55 +01:00
|
|
|
}
|
|
|
|
|
2012-10-24 22:53:19 +02:00
|
|
|
.hotkeys_table .hotkey {
|
2013-11-25 19:02:40 +01:00
|
|
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
2012-10-24 22:53:19 +02:00
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
2013-11-25 19:02:40 +01:00
|
|
|
font-size: 90%;
|
|
|
|
white-space: nowrap;
|
2012-10-24 22:53:19 +02:00
|
|
|
}
|
|
|
|
|
2013-12-02 22:51:03 +01:00
|
|
|
.operator_value {
|
|
|
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
2013-12-05 18:01:34 +01:00
|
|
|
color: maroon;
|
2013-12-02 22:51:03 +01:00
|
|
|
}
|
|
|
|
.operator {
|
|
|
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
|
|
|
}
|
|
|
|
|
2013-01-16 19:50:18 +01:00
|
|
|
#loading_more_messages_indicator {
|
2013-07-12 18:31:26 +02:00
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading_more_messages_indicator_box_container {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading_more_messages_indicator_box {
|
|
|
|
position: relative;
|
|
|
|
left: -50%;
|
2017-01-05 01:03:14 +01:00
|
|
|
top: -40px;
|
2013-07-12 18:31:26 +02:00
|
|
|
z-index: 1;
|
|
|
|
-webkit-border-radius: 6px;
|
2017-03-18 23:49:11 +01:00
|
|
|
-moz-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
2013-01-15 21:41:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#page_loading_indicator {
|
|
|
|
margin: 10px auto;
|
2012-11-28 22:17:57 +01:00
|
|
|
}
|
2012-11-29 17:22:00 +01:00
|
|
|
|
|
|
|
.table-striped thead th {
|
|
|
|
background-color: #444;
|
|
|
|
color: white;
|
|
|
|
}
|
2012-11-29 18:44:43 +01:00
|
|
|
|
2017-01-11 22:51:51 +01:00
|
|
|
.help-table {
|
2012-11-29 18:44:43 +01:00
|
|
|
table-layout: fixed;
|
|
|
|
}
|
2012-11-19 16:54:23 +01:00
|
|
|
|
2015-11-25 18:41:32 +01:00
|
|
|
.conversation-partners {
|
|
|
|
display: block;
|
|
|
|
line-height: 1.2em;
|
|
|
|
width: 90%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2016-08-23 22:23:56 +02:00
|
|
|
#user-checkboxes {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2016-07-07 00:58:11 +02:00
|
|
|
#user-checkboxes .checkbox {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-08-23 22:23:56 +02:00
|
|
|
#user-checkboxes .checkbox input[type=checkbox] {
|
|
|
|
margin: 5px 0px;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
2016-12-17 19:28:51 +01:00
|
|
|
#stream-checkboxes {
|
|
|
|
margin-top: 10px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stream-checkboxes .checkbox {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stream-checkboxes .checkbox input[type=checkbox] {
|
|
|
|
margin: 5px 0px;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#copy-from-stream-expand-collapse {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-05-17 21:35:17 +02:00
|
|
|
.streams_popover .sp-container {
|
|
|
|
background: white;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2016-08-09 12:10:19 +02:00
|
|
|
.sp-container {
|
2016-09-28 02:42:55 +02:00
|
|
|
z-index: 100;
|
2016-08-09 12:10:19 +02:00
|
|
|
}
|
|
|
|
|
2013-05-17 21:35:17 +02:00
|
|
|
.streams_popover .sp-palette-container {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.streams_popover .colorpicker-container {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2016-08-23 02:46:12 +02:00
|
|
|
.streams_popover .popover_sub_unsub_button {
|
|
|
|
margin-top: 0px;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.streams_popover .popover_sub_unsub_button::after {
|
|
|
|
content: " Unsubscribe";
|
|
|
|
}
|
|
|
|
|
2016-03-07 03:51:10 +01:00
|
|
|
.stream_sub_unsub_button {
|
|
|
|
min-width: 140px;
|
|
|
|
margin-top: 9px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2016-03-22 16:50:09 +01:00
|
|
|
.sub_button_row {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-01-17 16:11:18 +01:00
|
|
|
button.primary {
|
|
|
|
background-color: #89a0b3;
|
|
|
|
padding: 2px;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.primary:hover {
|
|
|
|
background-color: #91aabe;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.primary:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.topic_edit_save,
|
|
|
|
button.topic_edit_cancel {
|
|
|
|
font-size: 12px;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
2013-07-10 17:23:48 +02:00
|
|
|
.modal {
|
|
|
|
overflow: hidden;
|
|
|
|
margin-top: 0;
|
|
|
|
top: 5%;
|
2017-03-18 23:49:11 +01:00
|
|
|
/* Bootstrap uses tabindex=-1 on modals for focus and ESC handling,
|
|
|
|
so avoid the outline it causes */
|
|
|
|
outline: 0;
|
2013-07-10 17:23:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
max-height: 60vh;
|
|
|
|
}
|
|
|
|
|
2013-06-25 22:20:52 +02:00
|
|
|
.modal form {
|
2012-12-05 22:48:15 +01:00
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2017-03-14 22:06:56 +01:00
|
|
|
#invite-user {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
#invite-user .modal-header {
|
|
|
|
padding: 7px 15px;
|
|
|
|
border-color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#invite-user .modal-header .exit {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: 600;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 6px;
|
|
|
|
right: 5px;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
2012-12-05 22:48:15 +01:00
|
|
|
#invitee_emails {
|
|
|
|
min-height: 40px;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
|
2017-02-12 21:21:31 +01:00
|
|
|
#invite-user .custom_invite_body {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-03-14 23:22:46 +01:00
|
|
|
#invite-user .overlay-content {
|
|
|
|
position: relative;
|
|
|
|
width: 500px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#invite-user .modal-body {
|
|
|
|
margin-bottom: 58px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#invite-user .modal-footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
}
|
|
|
|
|
2012-12-05 22:48:15 +01:00
|
|
|
#invite_status {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-03-14 22:06:56 +01:00
|
|
|
#invite-user #invite-user-label {
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 700;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2013-10-09 00:37:07 +02:00
|
|
|
.settings-dropdown-caret {
|
|
|
|
margin-left: 8px;
|
2014-01-03 15:41:57 +01:00
|
|
|
margin-right: 8px;
|
2013-10-09 00:37:07 +02:00
|
|
|
font-size: 14px;
|
2013-01-22 21:03:29 +01:00
|
|
|
}
|
2013-01-30 21:49:56 +01:00
|
|
|
|
2013-01-31 21:09:23 +01:00
|
|
|
#notifications-area {
|
2013-01-30 21:49:56 +01:00
|
|
|
position: fixed;
|
2013-08-22 20:19:12 +02:00
|
|
|
z-index: 10;
|
2013-01-30 21:49:56 +01:00
|
|
|
bottom: 0px;
|
|
|
|
right: 20px;
|
|
|
|
width: 200px;
|
2013-09-05 17:51:01 +02:00
|
|
|
height: auto;
|
2013-01-31 21:09:23 +01:00
|
|
|
}
|
|
|
|
|
2013-08-05 20:43:57 +02:00
|
|
|
.notifications-gravatar img {
|
|
|
|
max-width: 25px;
|
|
|
|
max-height: 25px;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
2013-02-23 19:38:25 +01:00
|
|
|
.empty_feed_notice {
|
2013-05-22 21:23:42 +02:00
|
|
|
padding: 3em 4em;
|
2013-02-12 19:28:21 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-02-23 19:38:25 +01:00
|
|
|
.empty_feed_notice h4 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-01-03 01:42:04 +01:00
|
|
|
.notification {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2014-01-06 16:25:23 +01:00
|
|
|
#empty_narrow_private_message p,
|
2013-02-23 19:38:25 +01:00
|
|
|
#empty_narrow_message p {
|
2013-02-12 19:28:21 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
2013-02-13 21:30:17 +01:00
|
|
|
|
2017-03-16 19:26:26 +01:00
|
|
|
.message-fade,
|
2017-03-16 20:33:02 +01:00
|
|
|
.user_sidebar_entry.user-fade {
|
2013-07-24 22:32:20 +02:00
|
|
|
opacity: 0.4;
|
2013-02-13 21:30:17 +01:00
|
|
|
}
|
|
|
|
|
2013-03-01 22:07:27 +01:00
|
|
|
.emoji {
|
2014-03-06 22:10:45 +01:00
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
position: relative;
|
|
|
|
top: 3px;
|
|
|
|
margin-top: -7px;
|
2013-03-01 22:07:27 +01:00
|
|
|
}
|
2013-03-06 17:40:51 +01:00
|
|
|
|
2017-01-28 00:25:01 +01:00
|
|
|
.emoji.realm-emoji {
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
2013-03-08 06:27:16 +01:00
|
|
|
.twitter-tweet {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
padding: .5em .75em;
|
|
|
|
margin-bottom: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.twitter-avatar {
|
|
|
|
float: left;
|
2013-03-08 22:40:06 +01:00
|
|
|
width: 48px;
|
2013-03-08 06:27:16 +01:00
|
|
|
height: 48px;
|
2013-03-08 22:40:06 +01:00
|
|
|
margin-right: .75em;
|
2013-03-08 06:27:16 +01:00
|
|
|
}
|
2013-03-27 18:26:53 +01:00
|
|
|
|
|
|
|
.star {
|
2013-05-10 22:48:02 +02:00
|
|
|
display: inline-block;
|
2013-11-21 12:11:50 +01:00
|
|
|
font-size: 14px;
|
2013-04-22 00:50:18 +02:00
|
|
|
color: #2c8211;
|
2013-03-27 18:26:53 +01:00
|
|
|
}
|
|
|
|
|
2017-02-23 23:33:57 +01:00
|
|
|
.star:not(.empty-star) {
|
|
|
|
opacity: 1 !important;
|
|
|
|
pointer-events: all !important;
|
|
|
|
}
|
|
|
|
|
2013-05-21 17:47:44 +02:00
|
|
|
.empty-star {
|
2013-11-21 12:11:50 +01:00
|
|
|
color: #bbb;
|
2013-06-12 19:27:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.empty-star:hover {
|
|
|
|
cursor: pointer;
|
2013-05-21 17:47:44 +02:00
|
|
|
color: #565656;
|
|
|
|
}
|
|
|
|
|
2013-06-12 19:27:07 +02:00
|
|
|
.star:hover {
|
2017-03-14 16:36:22 +01:00
|
|
|
cursor: pointer;
|
2013-06-12 19:27:07 +02:00
|
|
|
color: #0d7245;
|
2013-03-27 18:26:53 +01:00
|
|
|
}
|
2013-03-29 19:55:28 +01:00
|
|
|
|
2013-04-04 00:55:36 +02:00
|
|
|
/* FIXME: Combine this rule with the one in portico.css somehow? */
|
2013-04-08 20:21:20 +02:00
|
|
|
#pw_strength {
|
2013-04-04 00:55:36 +02:00
|
|
|
width: 220px;
|
2013-10-21 01:04:25 +02:00
|
|
|
height: 25px;
|
|
|
|
margin-bottom: 0px;
|
2013-04-04 00:55:36 +02:00
|
|
|
}
|
2013-04-08 19:15:20 +02:00
|
|
|
|
|
|
|
/* Override padding-top on form labels when they label only text */
|
|
|
|
.form-horizontal .label_for_text {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2013-04-08 20:03:21 +02:00
|
|
|
|
|
|
|
#pw_change_controls {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-04-12 22:08:49 +02:00
|
|
|
|
2013-08-23 07:31:38 +02:00
|
|
|
.sub-unsub-message,
|
|
|
|
.date_row {
|
2013-04-17 05:52:20 +02:00
|
|
|
text-align: center;
|
2014-02-13 21:04:26 +01:00
|
|
|
padding-bottom: 10px;
|
2013-04-05 16:44:29 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 18:40:31 +02:00
|
|
|
.date_row .date-direction {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.date_row .date-line {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 33%;
|
2014-02-13 21:04:26 +01:00
|
|
|
border-top: 1px solid #e2e2e2;
|
2016-04-09 05:50:24 +02:00
|
|
|
border-bottom: 1px solid #fff;
|
2013-09-10 18:40:31 +02:00
|
|
|
margin: 0px 5px 0px 5px;
|
|
|
|
}
|
|
|
|
|
2013-08-29 01:34:10 +02:00
|
|
|
.date_row span {
|
2013-06-24 23:16:50 +02:00
|
|
|
display: block;
|
|
|
|
background: inherit;
|
|
|
|
padding: 4px;
|
|
|
|
overflow: hidden;
|
2013-07-02 20:41:10 +02:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #bbb;
|
|
|
|
text-shadow: 1px 1px 0px #fff;
|
2013-06-24 23:16:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.date_row span:before,
|
2013-08-29 01:34:10 +02:00
|
|
|
.date_row span:after {
|
2013-06-24 23:16:50 +02:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
content: " ";
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 50%;
|
|
|
|
height: 0px;
|
2014-02-13 21:04:26 +01:00
|
|
|
border-top: 1px solid #e2e2e2;
|
2013-07-02 20:41:10 +02:00
|
|
|
border-bottom: 1px solid #fff;
|
2013-06-24 23:16:50 +02:00
|
|
|
}
|
|
|
|
|
2013-08-29 01:34:10 +02:00
|
|
|
.date_row span:before {
|
2013-06-24 23:16:50 +02:00
|
|
|
right: 0.5em;
|
|
|
|
margin-left: -50%;
|
|
|
|
}
|
|
|
|
|
2013-08-29 01:34:10 +02:00
|
|
|
.date_row span:after {
|
2013-06-24 23:16:50 +02:00
|
|
|
left: 0.5em;
|
|
|
|
margin-right: -50%;
|
|
|
|
}
|
|
|
|
|
2017-01-31 22:01:49 +01:00
|
|
|
.include-sender .message_edit {
|
|
|
|
margin-top: -14px;
|
|
|
|
}
|
|
|
|
|
2013-05-15 00:22:16 +02:00
|
|
|
.message_edit {
|
|
|
|
display: none;
|
2013-07-22 20:19:35 +02:00
|
|
|
margin-top: 5px;
|
2014-01-31 23:52:18 +01:00
|
|
|
margin-left: 47px;
|
2013-05-15 00:22:16 +02:00
|
|
|
}
|
2013-05-21 19:12:27 +02:00
|
|
|
|
|
|
|
/* Reduce some of the heavy padding from Bootstrap. */
|
2017-01-31 22:01:49 +01:00
|
|
|
#message_edit_form {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2013-05-21 19:12:27 +02:00
|
|
|
#message_edit_form .edit-control-label {
|
2014-01-31 23:52:18 +01:00
|
|
|
vertical-align: top;
|
|
|
|
padding-top: 0px;
|
|
|
|
margin-right: 10px;
|
2017-01-31 22:01:49 +01:00
|
|
|
font-size: 80%;
|
2013-05-21 19:12:27 +02:00
|
|
|
}
|
|
|
|
#message_edit_form .edit-controls {
|
2017-01-31 22:01:49 +01:00
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
2013-05-21 19:12:27 +02:00
|
|
|
}
|
|
|
|
#message_edit_form textarea {
|
2013-07-16 23:40:01 +02:00
|
|
|
width: 100%;
|
2013-05-21 19:12:27 +02:00
|
|
|
min-width: 206px;
|
2013-07-22 20:19:35 +02:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2013-05-21 19:12:27 +02:00
|
|
|
}
|
2016-08-26 21:36:10 +02:00
|
|
|
#message_edit_form .control-group.no-margin {
|
|
|
|
margin-bottom: 0px;
|
2013-07-16 23:40:01 +02:00
|
|
|
}
|
2013-05-21 17:48:46 +02:00
|
|
|
|
2016-12-14 05:38:59 +01:00
|
|
|
#message_edit_form a.message-control-button {
|
|
|
|
display: inline;
|
|
|
|
color: #777;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 12px;
|
|
|
|
width: 12px;
|
|
|
|
height: 14px;
|
|
|
|
text-align: center;
|
|
|
|
float: right;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
|
2017-01-31 22:01:49 +01:00
|
|
|
#message_edit_form .action-buttons {
|
|
|
|
margin: 10px 0px;
|
|
|
|
}
|
|
|
|
|
2013-08-16 23:45:13 +02:00
|
|
|
#topic_edit_form {
|
2014-01-17 16:11:18 +01:00
|
|
|
display: inline-block;
|
2016-08-26 21:36:10 +02:00
|
|
|
margin: 0 0 0 0;
|
2014-01-17 16:11:18 +01:00
|
|
|
height: 22px;
|
|
|
|
background: #e2e2e2;
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 3px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-left: -15px;
|
2013-08-16 23:45:13 +02:00
|
|
|
}
|
|
|
|
|
2013-05-24 20:03:40 +02:00
|
|
|
.message_body_gravatar {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin: 2px 2px 2px 0px;
|
2014-03-06 23:33:51 +01:00
|
|
|
vertical-align: text-bottom;
|
2013-05-28 21:33:59 +02:00
|
|
|
}
|
|
|
|
|
2013-06-28 16:02:58 +02:00
|
|
|
.user-mention {
|
2013-07-08 20:44:03 +02:00
|
|
|
background-color: #eee;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 0 0.2em;
|
2014-01-31 21:36:31 +01:00
|
|
|
box-shadow: 0px 0px 0px 1px #ccc;
|
|
|
|
margin-right: 2px;
|
2013-07-08 20:44:03 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
|
|
|
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.1)), color-stop(100%,rgba(0,0,0,0)));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
|
|
|
|
background-image: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
|
|
|
|
background-image: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
|
|
|
|
background-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
|
2013-07-08 22:02:53 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 1px;
|
2013-06-28 16:02:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-mention-me {
|
2013-07-08 20:44:03 +02:00
|
|
|
background-color: #c9fcc1;
|
2013-08-29 21:33:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-word {
|
|
|
|
background-color: #c9fcc1;
|
2013-06-28 16:02:58 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 05:58:13 +01:00
|
|
|
#administration h1,
|
2016-10-26 06:13:39 +02:00
|
|
|
#settings h1 {
|
2013-10-21 01:04:25 +02:00
|
|
|
font-size: 25px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2015-11-17 05:58:13 +01:00
|
|
|
#administration .administration-icon,
|
2016-10-26 06:13:39 +02:00
|
|
|
#settings .settings-icon {
|
2013-10-21 01:04:25 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
2013-08-15 21:38:37 +02:00
|
|
|
#home {
|
2013-08-16 17:29:37 +02:00
|
|
|
margin-top: 41px;
|
2013-08-15 21:38:37 +02:00
|
|
|
}
|
|
|
|
|
2013-06-22 00:21:55 +02:00
|
|
|
.message-pane {
|
|
|
|
padding-left: 0.3em;
|
|
|
|
}
|
2013-06-14 00:22:26 +02:00
|
|
|
|
2013-06-27 20:32:08 +02:00
|
|
|
.screen {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
background: #000;
|
|
|
|
z-index: 20000;
|
|
|
|
}
|
2013-06-27 22:18:28 +02:00
|
|
|
|
|
|
|
#tutorial-stream {
|
|
|
|
width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tutorial-subject {
|
|
|
|
width: 250px;
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
|
2013-06-27 22:18:28 +02:00
|
|
|
.tutorial-done-button {
|
|
|
|
text-align: right;
|
2016-06-21 20:30:34 +02:00
|
|
|
margin-top: 9px;
|
|
|
|
margin-bottom: 8px;
|
2013-06-27 22:18:28 +02:00
|
|
|
}
|
2013-07-05 22:51:41 +02:00
|
|
|
|
2016-06-04 01:12:24 +02:00
|
|
|
.btn-skip {
|
2016-06-21 20:30:34 +02:00
|
|
|
position: relative;
|
|
|
|
left: -10px;
|
|
|
|
margin-right: 25px;
|
2016-06-04 01:12:24 +02:00
|
|
|
}
|
|
|
|
|
2016-12-25 22:46:25 +01:00
|
|
|
.deactivated_user .user_name,
|
|
|
|
.deactivated_user .email {
|
2013-11-16 16:26:40 +01:00
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
2013-11-13 19:40:02 +01:00
|
|
|
|
2014-01-22 01:43:11 +01:00
|
|
|
.admin-menu-item {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-10-27 12:06:44 +02:00
|
|
|
/* embed */
|
2016-12-17 01:41:23 +01:00
|
|
|
.message_content .message_embed {
|
2016-10-27 12:06:44 +02:00
|
|
|
display: block;
|
2017-01-06 02:56:32 +01:00
|
|
|
position: relative;
|
2016-12-17 01:41:23 +01:00
|
|
|
margin: 5px 0px;
|
|
|
|
border: none;
|
|
|
|
border-left: 3px solid #eee;
|
2017-01-06 02:56:32 +01:00
|
|
|
height: 70px;
|
2016-12-17 01:41:23 +01:00
|
|
|
padding: 5px;
|
2017-01-06 02:56:32 +01:00
|
|
|
z-index: 1;
|
2016-10-27 12:06:44 +02:00
|
|
|
}
|
2016-12-17 01:41:23 +01:00
|
|
|
|
|
|
|
.message_content .message_embed > * {
|
|
|
|
display: inherit;
|
|
|
|
padding: 5px;
|
|
|
|
border: none;
|
2016-10-27 12:06:44 +02:00
|
|
|
}
|
2016-12-17 01:41:23 +01:00
|
|
|
|
|
|
|
.message_embed .message_embed_title {
|
|
|
|
padding-top: 0px;
|
|
|
|
/* to remove the spacing that the font has from the top of the container. */
|
2017-01-06 02:56:32 +01:00
|
|
|
margin-top: -1px;
|
2016-12-17 01:41:23 +01:00
|
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_embed .message_embed_description {
|
2017-01-06 02:56:32 +01:00
|
|
|
position: relative;
|
2016-12-17 01:41:23 +01:00
|
|
|
margin-top: -5px;
|
|
|
|
max-width: 500px;
|
2017-01-06 02:56:32 +01:00
|
|
|
|
|
|
|
/* to put it below the container gradient. */
|
|
|
|
z-index: -1;
|
2016-12-17 01:41:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_embed .message_embed_image {
|
|
|
|
display: inline-block;
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_embed .data-container {
|
|
|
|
padding: 0px 5px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-02-23 23:33:57 +01:00
|
|
|
max-width: calc(100% - 115px);
|
2017-01-06 02:56:32 +01:00
|
|
|
max-height: 70px;
|
|
|
|
overflow: hidden;
|
2016-12-17 01:41:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_embed .data-container div {
|
|
|
|
display: block;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
2017-01-06 02:56:32 +01:00
|
|
|
.message_content .message_embed {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2016-12-17 01:41:23 +01:00
|
|
|
.message_embed .message_embed_image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_embed .data-container {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2016-10-27 12:06:44 +02:00
|
|
|
}
|
2017-03-03 21:18:55 +01:00
|
|
|
|
|
|
|
ul.sender_info_popover i {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
text-align: center;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2017-03-21 05:21:42 +01:00
|
|
|
|
|
|
|
ul.actions_popover i {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
text-align: center;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2017-03-03 21:57:06 +01:00
|
|
|
|
|
|
|
.user_popover {
|
|
|
|
top: 100px!important;
|
2017-03-04 13:43:21 +01:00
|
|
|
margin: -15px;
|
2017-03-03 21:57:06 +01:00
|
|
|
}
|
|
|
|
|
2017-03-23 00:44:14 +01:00
|
|
|
.popover-avatar .popover-inner {
|
2017-03-03 21:57:06 +01:00
|
|
|
width: 240px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popover-avatar {
|
|
|
|
height: 240px;
|
|
|
|
width: 240px;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
margin-top: -8px;
|
|
|
|
margin-left: -14px;
|
|
|
|
margin-right: -8px;
|
|
|
|
margin-bottom: -8px;
|
|
|
|
position: relative;
|
|
|
|
}
|