2017-04-22 07:50:02 -04:00
|
|
|
body {
|
|
|
|
font-family: Roboto, sans-serif;
|
2017-05-18 09:31:59 -04:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
|
|
html, body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-04-27 13:40:45 -04:00
|
|
|
}
|
|
|
|
|
2017-05-05 17:36:16 -04:00
|
|
|
/* Alert messages */
|
|
|
|
|
|
|
|
.error-list {
|
|
|
|
position: fixed;
|
|
|
|
top: 12px;
|
|
|
|
left: 25%;
|
|
|
|
right: 25%;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-list .alert {
|
|
|
|
margin: 0 0 4px 0;
|
|
|
|
padding: 8.5px 10px;
|
|
|
|
border-radius: 2px;
|
|
|
|
opacity: .95;
|
|
|
|
z-index: 9999;
|
2017-05-07 04:01:11 -04:00
|
|
|
animation: 11s ease 0s normal forwards 1 fadeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeout {
|
|
|
|
0% { opacity: 1; }
|
|
|
|
66% { opacity: 1; }
|
|
|
|
100% { opacity: 0; display: none; visibility: hidden}
|
2017-05-05 17:36:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.error-list .alert .close {
|
|
|
|
color: #fff;
|
|
|
|
opacity: .7;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Columns */
|
|
|
|
|
2017-05-14 06:00:27 -04:00
|
|
|
.column {
|
2017-05-18 09:31:59 -04:00
|
|
|
padding: 0;
|
2017-05-14 06:00:27 -04:00
|
|
|
}
|
|
|
|
|
2017-04-30 06:33:27 -04:00
|
|
|
.column .panel {
|
2017-05-18 09:31:59 -04:00
|
|
|
height: 100vh;
|
|
|
|
margin-bottom: 0;
|
2017-04-30 06:33:27 -04:00
|
|
|
}
|
|
|
|
|
2017-05-03 14:53:12 -04:00
|
|
|
.column .panel.draft, .column .panel.options {
|
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-13 09:55:46 -04:00
|
|
|
.panel-default .panel-heading {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2017-04-27 13:40:45 -04:00
|
|
|
.timeline {
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2017-05-18 09:31:59 -04:00
|
|
|
max-height: calc(100vh - 45px);
|
2017-04-30 06:33:27 -04:00
|
|
|
overflow: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
2017-05-14 06:00:27 -04:00
|
|
|
.timeline > .list-group-item {
|
|
|
|
padding: 8px 12px;
|
|
|
|
}
|
|
|
|
|
2017-05-13 09:55:46 -04:00
|
|
|
#favorite-timeline,
|
|
|
|
#local-timeline,
|
|
|
|
#global-timeline {
|
2017-05-18 09:31:59 -04:00
|
|
|
max-height: calc(100vh - 80px);
|
2017-05-13 09:55:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-07 08:31:51 -04:00
|
|
|
li.load-more {
|
|
|
|
cursor: wait;
|
|
|
|
}
|
2017-05-05 17:36:16 -04:00
|
|
|
|
2017-04-30 06:33:27 -04:00
|
|
|
.notifications-panel .timeline {
|
2017-05-18 09:31:59 -04:00
|
|
|
max-height: calc(100vh - 80px);
|
2017-04-22 07:50:02 -04:00
|
|
|
}
|
|
|
|
|
2017-04-30 05:20:57 -04:00
|
|
|
.panel a {
|
2017-04-28 08:06:00 -04:00
|
|
|
text-decoration: none;
|
|
|
|
color: #c8c8c8;
|
|
|
|
}
|
|
|
|
|
2017-04-30 05:20:57 -04:00
|
|
|
.panel a:hover {
|
2017-04-28 08:06:00 -04:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-04-28 13:33:38 -04:00
|
|
|
.timeline .list-group {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:21:54 -04:00
|
|
|
.status, .follow-profile, .current-user {
|
2017-04-22 10:39:19 -04:00
|
|
|
min-height: 50px;
|
2017-04-20 05:00:15 -04:00
|
|
|
clear: both;
|
2017-04-20 03:33:32 -04:00
|
|
|
}
|
|
|
|
|
2017-04-28 05:21:54 -04:00
|
|
|
.current-user {
|
|
|
|
min-height: 55px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.current-user .status-text {
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
2017-04-24 05:46:14 -04:00
|
|
|
.follow-profile .status-text {
|
|
|
|
opacity: .8;
|
|
|
|
}
|
|
|
|
|
2017-04-22 07:50:02 -04:00
|
|
|
.nsfw {
|
|
|
|
background: #493438;
|
|
|
|
}
|
|
|
|
|
2017-04-22 10:39:19 -04:00
|
|
|
.reblog > p:first-of-type,
|
|
|
|
.notification > p:first-of-type {
|
2017-04-20 03:33:32 -04:00
|
|
|
color: #999;
|
2017-04-23 04:18:47 -04:00
|
|
|
margin-bottom: 8px;
|
2017-04-20 03:33:32 -04:00
|
|
|
}
|
2017-04-23 15:49:04 -04:00
|
|
|
|
|
|
|
.status-info, .status-info a {
|
2017-04-22 10:39:19 -04:00
|
|
|
color: #ccc;
|
2017-04-23 15:49:04 -04:00
|
|
|
line-height: 1.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-info > .avatars img {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
2017-04-24 05:46:14 -04:00
|
|
|
.status-info-text {
|
|
|
|
clear: left;
|
|
|
|
padding-top: 6px;
|
|
|
|
}
|
|
|
|
|
2017-05-14 05:30:38 -04:00
|
|
|
.btn-group-justified.column-menu .btn {
|
2017-04-30 05:40:32 -04:00
|
|
|
border-radius: 0;
|
|
|
|
border-bottom: 0;
|
2017-04-30 06:15:33 -04:00
|
|
|
outline: 0;
|
2017-04-30 05:40:32 -04:00
|
|
|
}
|
|
|
|
|
2017-04-23 15:49:04 -04:00
|
|
|
.notification.reblog,
|
|
|
|
.notification.favourite {
|
|
|
|
opacity: .75;
|
2017-04-22 10:39:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.notification.follow > p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2017-04-20 03:33:32 -04:00
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-04-22 11:03:35 -04:00
|
|
|
.panel-heading > .glyphicon,
|
2017-04-30 05:20:57 -04:00
|
|
|
.panel-heading > .row .heading > .glyphicon {
|
2017-04-21 04:41:46 -04:00
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2017-04-20 03:33:32 -04:00
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
2017-04-20 05:00:15 -04:00
|
|
|
width: 50px;
|
|
|
|
border-radius: 5%;
|
2017-04-21 04:41:46 -04:00
|
|
|
margin-top: 2px;
|
2017-04-20 03:33:32 -04:00
|
|
|
}
|
|
|
|
|
2017-04-29 12:05:06 -04:00
|
|
|
.status .username,
|
|
|
|
.current-user .username {
|
2017-04-20 03:33:32 -04:00
|
|
|
font-weight: bold;
|
2017-05-14 06:00:27 -04:00
|
|
|
margin-left: 60px;
|
2017-04-21 04:41:46 -04:00
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2017-05-09 12:43:12 -04:00
|
|
|
.current-user .username > span {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2017-04-29 12:05:06 -04:00
|
|
|
.follow-entry {
|
2017-04-29 16:48:55 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-content: stretch;
|
|
|
|
align-items: flex-start;
|
2017-04-29 12:05:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.follow-entry .avatar {
|
2017-04-29 16:48:55 -04:00
|
|
|
order: 0;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
align-self: auto;
|
2017-04-29 12:05:06 -04:00
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
2017-04-29 16:48:55 -04:00
|
|
|
margin-right: 10px;
|
2017-04-29 12:05:06 -04:00
|
|
|
}
|
2017-04-29 16:48:55 -04:00
|
|
|
|
|
|
|
.follow-entry .userinfo {
|
|
|
|
order: 0;
|
|
|
|
flex: 10 1 auto;
|
|
|
|
align-self: auto;
|
2017-04-29 12:05:06 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2017-04-29 16:48:55 -04:00
|
|
|
.follow-entry button {
|
|
|
|
order: 0;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
align-self: auto;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
2017-04-21 04:41:46 -04:00
|
|
|
.acct {
|
|
|
|
font-size: 97%;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #a0a0a0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reblogger {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-text {
|
2017-05-14 06:00:27 -04:00
|
|
|
margin-left: 60px;
|
2017-04-21 04:41:46 -04:00
|
|
|
color: #efefef;
|
2017-04-28 03:19:55 -04:00
|
|
|
cursor: pointer;
|
2017-05-18 09:31:59 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-21 04:41:46 -04:00
|
|
|
}
|
|
|
|
|
2017-04-22 10:39:19 -04:00
|
|
|
.status-text a, .u-url, .status .mention, .hashtag, .tag {
|
2017-04-21 04:41:46 -04:00
|
|
|
color: #9baec8;
|
2017-05-12 06:42:18 -04:00
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-21 04:41:46 -04:00
|
|
|
}
|
|
|
|
|
2017-04-27 12:39:14 -04:00
|
|
|
/* Thread */
|
|
|
|
|
|
|
|
.thread-target {
|
|
|
|
background: #3c444c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thread-target .status-text {
|
|
|
|
font-size: 1.3em;
|
2017-04-28 03:19:55 -04:00
|
|
|
cursor: default;
|
2017-04-27 12:39:14 -04:00
|
|
|
}
|
|
|
|
|
2017-04-23 04:18:47 -04:00
|
|
|
/* Status actions */
|
|
|
|
|
|
|
|
.actions {
|
2017-05-14 06:00:27 -04:00
|
|
|
margin-left: 60px;
|
|
|
|
width: calc(100% - 60px);
|
2017-04-23 04:18:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.actions > .btn {
|
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
color: #aaa;
|
2017-04-25 06:15:45 -04:00
|
|
|
padding: 0 1.2em 0 0;
|
2017-04-23 04:18:47 -04:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions > .btn > .glyphicon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2017-05-07 08:48:37 -04:00
|
|
|
.actions > .btn:active:hover {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2017-05-07 13:41:29 -04:00
|
|
|
.actions > .btn:hover > .glyphicon-star,
|
2017-04-23 04:18:47 -04:00
|
|
|
.actions .favourited {
|
|
|
|
color: #d1ac0e;
|
|
|
|
}
|
2017-05-07 13:41:29 -04:00
|
|
|
.actions > .btn:hover > .glyphicon-fire,
|
2017-04-23 04:18:47 -04:00
|
|
|
.actions .reblogged {
|
|
|
|
color: #d56344;
|
|
|
|
}
|
|
|
|
|
2017-05-07 13:41:29 -04:00
|
|
|
.actions > .btn:hover > .glyphicon-share-alt,
|
|
|
|
.actions > .btn-delete:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2017-04-29 03:20:26 -04:00
|
|
|
.btn-delete .glyphicon {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
2017-04-22 07:50:02 -04:00
|
|
|
/* Attachments */
|
|
|
|
|
|
|
|
.attachments {
|
2017-04-23 04:18:47 -04:00
|
|
|
margin: 0 0 15px 0;
|
2017-04-22 07:50:02 -04:00
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-entry {
|
|
|
|
margin-top: 5px;
|
2017-04-24 15:21:43 -04:00
|
|
|
transition: 0.3s;
|
|
|
|
opacity: .9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-entry:hover {
|
|
|
|
opacity: 1;
|
2017-04-22 07:50:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-entry input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-entry label {
|
|
|
|
display: block;
|
|
|
|
background: #111;
|
|
|
|
opacity: .95;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 95%;
|
|
|
|
height: 10vh;
|
|
|
|
margin-bottom: -10vh;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 2rem;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-entry input:checked + label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-image {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10vh;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: zoom-in;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
2017-04-21 08:07:55 -04:00
|
|
|
/* Spoiler */
|
|
|
|
|
|
|
|
.spoiled input[type=checkbox] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spoiled input[type=checkbox] + label {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: .5em;
|
|
|
|
font-weight: normal;
|
2017-04-23 16:17:44 -04:00
|
|
|
background: #252525;
|
2017-04-21 08:07:55 -04:00
|
|
|
color: #fff;
|
|
|
|
padding: .3em;
|
2017-04-23 16:17:44 -04:00
|
|
|
border: 1px solid #363636;
|
2017-04-21 08:07:55 -04:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-23 16:17:44 -04:00
|
|
|
.spoiled input[type=checkbox] + label + .spoiled-content {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-04-21 08:07:55 -04:00
|
|
|
.spoiled input[type=checkbox]:checked + label + .spoiled-content {
|
2017-04-23 16:17:44 -04:00
|
|
|
display: block;
|
2017-04-21 08:07:55 -04:00
|
|
|
height: auto;
|
|
|
|
opacity: 1;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spoiled .spoiled-content {
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
padding: 10px;
|
|
|
|
background: #333;
|
2017-04-23 16:17:44 -04:00
|
|
|
border: 1px solid #444;
|
2017-04-21 08:07:55 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
transition: all .6s;
|
2017-04-23 16:17:44 -04:00
|
|
|
margin-bottom: 5px;
|
2017-04-21 08:07:55 -04:00
|
|
|
}
|
|
|
|
|
2017-04-23 04:18:47 -04:00
|
|
|
/* Draft form */
|
|
|
|
|
2017-05-14 06:53:13 -04:00
|
|
|
.draft .panel-body {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:21:54 -04:00
|
|
|
.form {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2017-05-03 11:11:18 -04:00
|
|
|
.charcount {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2017-05-03 11:24:31 -04:00
|
|
|
.draft-actions .btn-group:nth-child(2) {
|
2017-05-03 11:20:03 -04:00
|
|
|
width: .5%;
|
|
|
|
min-width: 30px;
|
|
|
|
}
|
|
|
|
|
2017-04-28 09:12:21 -04:00
|
|
|
.in-reply-to .well {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.in-reply-to .status-text {
|
|
|
|
max-height: 92px;
|
|
|
|
font-size: 95%;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:18:47 -04:00
|
|
|
.in-reply-to .attachments {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.in-reply-to .attachments li {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.in-reply-to .attachments:after {
|
|
|
|
content: "[attachments hidden]";
|
|
|
|
font-size: .9em;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2017-05-05 13:18:20 -04:00
|
|
|
.btn-vis {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-vis > span {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
2017-05-11 04:55:15 -04:00
|
|
|
.draft-attachments-field {
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-attachments {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 2px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-attachment-entry {
|
|
|
|
display: table-cell;
|
|
|
|
width: 25%;
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-attachment-entry a {
|
|
|
|
display: block;
|
|
|
|
height: 60px;
|
|
|
|
opacity: 0;
|
|
|
|
background: transparent;
|
|
|
|
font-size: 45px;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-attachment-entry a:hover {
|
|
|
|
transition: 150ms all ease;
|
|
|
|
opacity: 1;
|
|
|
|
background: rgba(0, 0, 0, 0.85);
|
|
|
|
}
|
|
|
|
|
2017-05-12 05:41:53 -04:00
|
|
|
#draft-attachment {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
.draft-attachment-input-label {
|
2017-05-11 04:55:15 -04:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
2017-05-11 06:23:10 -04:00
|
|
|
height: 38px;
|
2017-05-11 04:55:15 -04:00
|
|
|
outline: 0;
|
2017-05-12 05:41:53 -04:00
|
|
|
background-color: transparent;
|
|
|
|
font-weight: normal;
|
2017-05-11 04:55:15 -04:00
|
|
|
}
|
|
|
|
|
2017-05-12 05:41:53 -04:00
|
|
|
.draft-attachment-input-label:after {
|
2017-05-11 04:55:15 -04:00
|
|
|
background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
|
|
|
|
color: #c8c8c8;
|
2017-05-11 06:23:10 -04:00
|
|
|
line-height: 34px;
|
2017-05-11 04:55:15 -04:00
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
content: 'Attach a media';
|
2017-05-11 06:13:56 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.form-control[type=file] {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2017-05-12 05:41:53 -04:00
|
|
|
.draft-attachment-input-label:focus {
|
2017-05-11 04:55:15 -04:00
|
|
|
outline: 0;
|
2017-05-11 06:13:56 -04:00
|
|
|
outline-offset: 0;
|
|
|
|
border-color: #000;
|
|
|
|
box-shadow: none;
|
2017-05-11 04:55:15 -04:00
|
|
|
}
|
|
|
|
|
2017-05-12 05:41:53 -04:00
|
|
|
.draft-attachment-input-label:hover:after {
|
2017-05-11 04:55:15 -04:00
|
|
|
background-image: linear-gradient(#020202, #101112 40%, #141618);
|
|
|
|
}
|
|
|
|
|
2017-05-11 06:23:10 -04:00
|
|
|
.btn-loading {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-04-21 08:07:55 -04:00
|
|
|
/* Status text content rules */
|
|
|
|
|
2017-04-27 06:31:22 -04:00
|
|
|
.attachment, .hashtag, .ellipsis {
|
2017-04-21 04:41:46 -04:00
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2017-04-27 06:31:22 -04:00
|
|
|
.ellipsis:after {
|
|
|
|
content:"…"
|
2017-04-20 03:33:32 -04:00
|
|
|
}
|
2017-04-20 06:41:23 -04:00
|
|
|
|
|
|
|
.invisible {
|
2017-04-27 06:31:22 -04:00
|
|
|
display: none;
|
2017-04-20 06:41:23 -04:00
|
|
|
}
|
2017-04-22 04:16:14 -04:00
|
|
|
|
|
|
|
/* Account rules */
|
|
|
|
.account-detail {
|
2017-04-29 16:48:55 -04:00
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
2017-04-29 16:48:55 -04:00
|
|
|
|
2017-04-22 04:16:14 -04:00
|
|
|
.account-detail .opacity-layer{
|
2017-04-27 06:31:22 -04:00
|
|
|
background: rgba(49,53,67,0.9);
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-detail img {
|
2017-04-27 06:31:22 -04:00
|
|
|
border-radius: 90px;
|
|
|
|
padding:20px;
|
|
|
|
display: block;
|
|
|
|
margin:0 auto 0;
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
|
|
|
|
2017-04-29 16:48:55 -04:00
|
|
|
.account-detail .btn {
|
|
|
|
position: absolute;
|
|
|
|
top: 1em;
|
|
|
|
left: 1em;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
opacity: .8;
|
|
|
|
}
|
2017-04-22 04:16:14 -04:00
|
|
|
|
|
|
|
.account-detail .account-display-name {
|
2017-04-27 06:31:22 -04:00
|
|
|
display: block;
|
|
|
|
font-size: 130%;
|
|
|
|
font-weight: bold;
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-detail .account-username {
|
2017-04-27 06:31:22 -04:00
|
|
|
display: block;
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-detail .account-note {
|
2017-04-27 06:31:22 -04:00
|
|
|
display: block;
|
|
|
|
padding: 5px 15px 15px 15px;
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-infos {
|
2017-04-27 06:31:22 -04:00
|
|
|
text-align:center;
|
|
|
|
padding: 15px;
|
2017-04-22 04:16:14 -04:00
|
|
|
}
|
2017-04-24 15:21:43 -04:00
|
|
|
|
2017-05-09 12:43:12 -04:00
|
|
|
.account-infos.row {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-29 12:05:06 -04:00
|
|
|
.account-infos a {
|
|
|
|
color: #c8c8c8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-infos a:hover,
|
|
|
|
.account-infos a:focus,
|
|
|
|
.account-infos a:active {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2017-05-05 18:06:32 -04:00
|
|
|
.followed-by {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
2017-04-24 15:21:43 -04:00
|
|
|
/* Viewer */
|
|
|
|
|
|
|
|
.viewer {
|
|
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 1;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
background-color: rgba(0,0,0,0.9);
|
2017-05-04 05:24:42 -04:00
|
|
|
z-index: 2;
|
2017-04-24 15:21:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Modal Content (Image) */
|
|
|
|
.viewer-content {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
2017-05-18 09:35:16 -04:00
|
|
|
min-width: 30vw;
|
|
|
|
min-height: 30vh;
|
2017-04-24 15:21:43 -04:00
|
|
|
max-width: 80vw;
|
|
|
|
max-height: 90vh;
|
|
|
|
animation-name: zoom;
|
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoom {
|
|
|
|
from { transform: scale(.9) }
|
|
|
|
to { transform: scale(1) }
|
|
|
|
}
|
|
|
|
|
|
|
|
.viewer > .close {
|
|
|
|
position: absolute;
|
|
|
|
top: 15px;
|
|
|
|
right: 35px;
|
|
|
|
color: #eee;
|
|
|
|
font-size: 40px;
|
|
|
|
font-weight: bold;
|
|
|
|
transition: 0.3s;
|
|
|
|
text-shadow: initial;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.viewer > .close:hover,
|
|
|
|
.viewer > .close:focus {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prev, .next {
|
|
|
|
font-size: 72px;
|
|
|
|
opacity: .5;
|
|
|
|
transition: opacity .5s;
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prev:hover,
|
|
|
|
.next:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prev:active, .prev:focus, .prev:hover,
|
|
|
|
.next:active, .next:focus, .next:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 100% image width on smaller screens */
|
|
|
|
@media only screen and (max-width: 700px) {
|
|
|
|
.viewer-content {
|
2017-04-27 06:31:22 -04:00
|
|
|
width: 100%;
|
2017-04-24 15:21:43 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-29 03:20:26 -04:00
|
|
|
|
|
|
|
/* Scrollbars */
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
2017-05-09 12:43:12 -04:00
|
|
|
width: 10px;
|
|
|
|
height: 8px
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2017-05-09 12:43:12 -04:00
|
|
|
background: #444;
|
|
|
|
border: 0px none #ffffff;
|
|
|
|
border-radius: 50px;
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2017-05-09 12:43:12 -04:00
|
|
|
background: #777;
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
2017-05-09 12:43:12 -04:00
|
|
|
background: #777;
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2017-05-09 12:43:12 -04:00
|
|
|
border: 0px none #ffffff;
|
|
|
|
border-radius: 0;
|
|
|
|
background: rgba(0,0,0,0.1);
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track:hover {
|
2017-05-09 12:43:12 -04:00
|
|
|
background: #2a2e31;
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track:active {
|
2017-05-09 12:43:12 -04:00
|
|
|
background: #2a2e31;
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
2017-05-09 12:43:12 -04:00
|
|
|
background: transparent;
|
2017-04-29 03:20:26 -04:00
|
|
|
}
|
2017-05-01 16:10:34 -04:00
|
|
|
|
|
|
|
/* Autocomplete */
|
|
|
|
|
|
|
|
.autocomplete-menu {
|
2017-05-09 12:43:12 -04:00
|
|
|
position: relative;
|
|
|
|
margin-top: -10px;
|
|
|
|
min-width: 120px;
|
2017-05-01 16:10:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-list {
|
2017-05-09 12:43:12 -04:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: auto;
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto;
|
2017-05-01 16:10:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-item {
|
2017-05-09 12:43:12 -04:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-content: stretch;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 8px;
|
|
|
|
cursor: pointer;
|
|
|
|
background: #fff;
|
|
|
|
color: #777;
|
|
|
|
border-color: #bbb;
|
|
|
|
border-left-color: #272b30;
|
|
|
|
border-right-color: #272b30;
|
2017-05-01 16:10:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-item:hover,
|
|
|
|
.autocomplete-item.active,
|
|
|
|
.autocomplete-item.active:hover {
|
|
|
|
background: #ddd;
|
|
|
|
color: #777;
|
|
|
|
border-color: #bbb;
|
|
|
|
border-left-color: #272b30;
|
|
|
|
border-right-color: #272b30;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-item:first-child {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-item > img {
|
2017-05-09 12:43:12 -04:00
|
|
|
flex: 1 1 auto;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
margin-right: 10px;
|
|
|
|
border-radius: 2px;
|
2017-05-01 16:10:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-item > strong {
|
|
|
|
flex: 100 1 auto;
|
|
|
|
align-self: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-item > span {
|
|
|
|
flex: 100 1 auto;
|
|
|
|
text-align: right;
|
|
|
|
align-self: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2017-05-09 12:43:12 -04:00
|
|
|
|
|
|
|
/* Account selector */
|
|
|
|
|
|
|
|
.account-selector-item {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-content: stretch;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-selector-item > img {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
height: 42px;
|
|
|
|
width: 42px;
|
|
|
|
margin-right: 10px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-selector-item > span {
|
|
|
|
flex: 100 1 auto;
|
|
|
|
align-self: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-selector-item > button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: right;
|
|
|
|
align-self: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-05-12 16:03:52 -04:00
|
|
|
margin-left: 3px;
|
2017-05-09 12:43:12 -04:00
|
|
|
}
|
2017-05-13 04:27:32 -04:00
|
|
|
|
|
|
|
/* Modal confirm window */
|
|
|
|
|
|
|
|
.modal-dialog {
|
2017-05-13 09:42:24 -04:00
|
|
|
height: 80%;
|
2017-05-13 04:27:32 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-05-13 05:21:29 -04:00
|
|
|
|
|
|
|
/* Emojis */
|
|
|
|
|
|
|
|
.elmoji-img {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2017-05-13 09:42:24 -04:00
|
|
|
margin: 0 1px;
|
2017-05-13 05:21:29 -04:00
|
|
|
}
|