2018-03-11 11:07:57 +00:00
|
|
|
@charset "utf-8";
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2018-08-21 16:51:40 +01:00
|
|
|
word-break: break-word;
|
2018-03-11 11:07:57 +00:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
ul, ol {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
vertical-align: top;
|
|
|
|
border: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
.clear {
|
|
|
|
clear: both;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
[draggable] {
|
|
|
|
-moz-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
-khtml-user-drag: element;
|
|
|
|
-webkit-user-drag: element;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.red {
|
|
|
|
color: red!important;
|
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
display: none!important;
|
|
|
|
}
|
2018-05-01 17:51:00 +01:00
|
|
|
.ellipsis:after {
|
|
|
|
content:"...";
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.no-events {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
.disallow_select {
|
|
|
|
user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
}
|
|
|
|
.text_ellipsis {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: normal;
|
2018-07-10 18:12:22 +01:00
|
|
|
line-height: normal;
|
2018-03-11 11:07:57 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
blockquote, q {
|
|
|
|
quotes: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
blockquote * {
|
|
|
|
margin: 0;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
blockquote:before, blockquote:after,
|
|
|
|
q:before, q:after {
|
|
|
|
content:'';
|
|
|
|
content:none;
|
|
|
|
}
|
|
|
|
article,aside,details,figcaption,figure,
|
|
|
|
footer,header,hgroup,menu,nav,section {
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
button, input[type="submit"], input[type="button"]{
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
padding: 0;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
img.emoji {
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
margin: 0 .05em 0 .1em;
|
|
|
|
vertical-align: -0.1em;
|
|
|
|
}
|
|
|
|
.emoji_poss .auth_emoji {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
html {
|
2018-07-10 18:12:22 +01:00
|
|
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
|
|
font-size: 100%;
|
|
|
|
line-height: normal;
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #333;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
word-wrap:break-word;
|
|
|
|
background-color: #F5F8FA;
|
|
|
|
}
|
|
|
|
.status_form {
|
|
|
|
width: 100%;
|
|
|
|
padding: 12px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #E8F4FB;
|
|
|
|
}
|
|
|
|
.status_form.ready {
|
|
|
|
background-color: #F2FAFF!important;
|
|
|
|
}
|
|
|
|
.status_form.ready .status_bottom .submit_status_label {
|
|
|
|
background-color: #A3D8FF!important;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.status_form .status_bottom .disabled {
|
|
|
|
color: #A3D8FF!important;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.status_form .status_top {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-bottom: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.status_form .status_top .status_spoiler {
|
2019-05-07 18:19:29 +01:00
|
|
|
color: #000;
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 35px;
|
2019-05-07 18:19:29 +01:00
|
|
|
border-top-left-radius:4px;
|
|
|
|
border-top-right-radius:4px;
|
2018-03-11 11:07:57 +00:00
|
|
|
border: 1px solid #C7E7FB;
|
2019-05-07 18:19:29 +01:00
|
|
|
border-bottom:0 !important;
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 14px;
|
|
|
|
padding: 8px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.status_form .status_main {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
2019-05-07 18:19:29 +01:00
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
#autoCompleteDropDown .icon_box {
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 8px;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-left: 14px;
|
|
|
|
}
|
2019-08-30 15:58:17 +01:00
|
|
|
#autoCompleteDropDown .label_box {
|
|
|
|
width:200px;
|
|
|
|
}
|
2019-05-07 18:19:29 +01:00
|
|
|
#header_status_form .status_main,#reply_status_form .status_main,#header_status_form .status_top,#reply_status_form .status_top {
|
|
|
|
width: calc( 100% - 54px );
|
|
|
|
margin-left: 54px;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2019-05-07 18:19:29 +01:00
|
|
|
.status_form .status_left.icon_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 8px;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-left: 14px;
|
2019-05-07 18:19:29 +01:00
|
|
|
float:left
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
.status_form .status_main .status_textarea {
|
|
|
|
flex: 1;
|
|
|
|
padding: 8px;
|
2019-05-07 18:19:29 +01:00
|
|
|
border-radius:3px;
|
2018-03-11 11:07:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #C7E7FB;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2019-05-07 18:19:29 +01:00
|
|
|
.status_form .status_main .status_textarea.status_has_cw {
|
|
|
|
border-top-left-radius:0;
|
|
|
|
border-top-right-radius:0;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.status_form .status_main .status_textarea textarea {
|
2018-05-22 18:00:08 +01:00
|
|
|
color: #000;
|
2018-03-11 11:07:57 +00:00
|
|
|
resize: none;
|
|
|
|
height: 18px;
|
|
|
|
border: none;
|
|
|
|
max-width: 100%;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family : "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
|
|
line-height: normal;
|
2018-05-22 18:00:08 +01:00
|
|
|
outline: 0;
|
|
|
|
overflow: hidden;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2019-05-07 18:19:29 +01:00
|
|
|
.status_form .status_textarea textarea:not(:last-of-type) {
|
|
|
|
border-bottom:1px solid #C7E7FB;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.status_form .status_textarea textarea.focus {
|
|
|
|
height: 68px;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.status_form .status_textarea .media_attachments_preview_area,
|
|
|
|
.status_form .status_textarea .status_poll_editor {
|
2018-03-11 11:07:57 +00:00
|
|
|
margin: 8px -8px -8px -8px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
background-color: #F1F1F1;
|
|
|
|
border-top: 1px solid #C7E7FB;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.status_form .status_textarea.closed .media_attachments_preview_area,
|
|
|
|
.status_form .status_textarea.closed .status_poll_editor {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
.status_form .status_textarea .media_attachments_preview_area {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.status_form .status_textarea .media_attachments_preview {
|
|
|
|
position: relative;
|
|
|
|
flex-shrink: 0;
|
|
|
|
max-width: 113px;
|
|
|
|
height: 113px;
|
|
|
|
margin-right: 8px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #C7E7FB;
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 1;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.status_form .status_textarea .media_attachments_preview:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.status_form .status_textarea .media_attachments_preview_area.nsfw .media_attachments_preview::after {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
font-weight: 300;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
background-color: rgba(0, 0, 0, 1);
|
|
|
|
transition: 0.13s;
|
|
|
|
}
|
|
|
|
.status_form .status_textarea .media_attachments_preview_area.nsfw .media_attachments_preview:hover::after {
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
transition: 0.13s;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
.status_form .status_textarea .media_attachments_preview .media_element {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.status_form .status_textarea .media_attachments_preview .remove_button {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
color: #fff;
|
|
|
|
background-color: rgba(0, 0, 0, .8);
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 19px;
|
|
|
|
height: 19px;
|
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 4px 4px 0 0;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.status_form .status_textarea .status_poll_editor .poll_field {
|
|
|
|
margin:5px;
|
|
|
|
width:calc(100% - 29px);
|
|
|
|
}
|
|
|
|
input[type='number'] {
|
|
|
|
-moz-appearance:textfield;
|
|
|
|
}
|
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance:none;
|
|
|
|
}
|
|
|
|
.poll_time {
|
|
|
|
margin-top:5px;
|
|
|
|
padding-right:10px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #66757F;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height:30px;
|
|
|
|
border:1px solid #AAB8C2;
|
|
|
|
border-radius:2px;
|
|
|
|
background-color:#FFFFFF;
|
|
|
|
display:inline-block;
|
|
|
|
}
|
|
|
|
.poll_time:focus-within {
|
|
|
|
border:1px solid #189EFC;
|
|
|
|
background-color:#FFFFFF;
|
|
|
|
}
|
|
|
|
.poll_time.redborder {
|
|
|
|
border:1px solid #FF0000;
|
|
|
|
}
|
|
|
|
.poll_time input {
|
|
|
|
outline:0;
|
|
|
|
border:0;
|
|
|
|
height:28px;
|
|
|
|
max-width:60px;
|
|
|
|
border-radius:2px;
|
|
|
|
padding-left:5px;
|
|
|
|
text-align:center;
|
|
|
|
color: #66757F;
|
|
|
|
}
|
|
|
|
.poll_time input:focus {
|
|
|
|
outline:0;
|
|
|
|
}
|
|
|
|
.poll_time input:invalid {
|
|
|
|
box-shadow:none;
|
|
|
|
}
|
2019-07-17 16:52:20 +01:00
|
|
|
.poll_time_warning {
|
|
|
|
width:100%;
|
|
|
|
text-align:center;
|
|
|
|
color:#FF0000;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.poll_mc_switch {
|
|
|
|
margin:0 !important;
|
|
|
|
display:inline-block;
|
|
|
|
vertical-align:middle;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.status_form .status_bottom {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: calc( 100% - 52px );
|
|
|
|
padding: 8px 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 0;
|
|
|
|
margin-left: 52px;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_option_button {
|
|
|
|
cursor: pointer;
|
|
|
|
color: #43A7E5;
|
|
|
|
font-size: 21px;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid transparent;;
|
|
|
|
height: 39px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_option_button:hover {
|
|
|
|
border: 1px solid #C7E7FB
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_option_button.active {
|
|
|
|
animation-name: status_action_active;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_CW > span,
|
|
|
|
.status_form .status_bottom .status_NSFW > span {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 22px;
|
|
|
|
padding: 4px;
|
|
|
|
color: #E8F4FB;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #43A7E5;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_CW > span {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_NSFW > span {
|
|
|
|
font-size: 8px;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy .expand_privacy_menu {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 32px;
|
|
|
|
right: -122px;
|
|
|
|
width: 160px;
|
|
|
|
padding: 18px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy .expand_privacy_menu::before {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
z-index: -1;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
top: -5px;
|
|
|
|
left: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy {
|
|
|
|
display: block;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
color: rgb(101, 119, 134);
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy:hover {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label_wrap {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
height: 39px;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .character_count {
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 0 12px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label {
|
|
|
|
height: 100%;
|
|
|
|
padding: 6px 24px;
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #2588D0;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label:hover {
|
|
|
|
background-color: #2571D0;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label:active {
|
|
|
|
background-color: #255ED0;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label .toot_button_label {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label .toot_button_label i {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 21px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
.status_form .status_bottom .submit_status_label .toot_button_label span {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
.overlay_status{
|
|
|
|
/*! width: 628px; */
|
|
|
|
/*! margin: auto; */
|
|
|
|
/*! z-index: 1000; */
|
|
|
|
/*! top: 20%; */
|
|
|
|
/*! left: 0; */
|
|
|
|
/*! position: absolute; */
|
|
|
|
/*! right: 0; */
|
|
|
|
/*! bottom: 0; */
|
|
|
|
margin-top: 20%;
|
|
|
|
}
|
|
|
|
.overlay_status_header {
|
|
|
|
width: 600px;
|
|
|
|
padding: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
#overlay_status_form.status_form {
|
|
|
|
width: 600px;
|
|
|
|
padding: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #E8F4FB;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
#overlay_status_form.status_form .status_top {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
#overlay_status_form.status_form .status_main {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
#overlay_status_form.status_form .status_main .status_textarea {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
#overlay_status_form.status_form .status_main .status_textarea textarea {
|
|
|
|
color: #000;
|
|
|
|
resize: none;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
min-height: 72px;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-family : "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 4px;
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#overlay_status_form.status_form .status_bottom {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: auto;
|
|
|
|
padding: 8px 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
#reply_status_form.status_form:last-child {
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
.single_reply_status,.report_status,.caption_status {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 600px;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 20%;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
.single_reply_status_header,.report_status_header,.caption_status_header {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 600px;
|
|
|
|
padding: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
2018-07-25 16:31:54 +01:00
|
|
|
.single_reply_status .status_preview,.report_status .status_preview {
|
2018-03-11 11:07:57 +00:00
|
|
|
border-top: 1px solid #E1E8ED;
|
|
|
|
}
|
2019-08-21 17:25:27 +01:00
|
|
|
.single_reply_status .status_preview .toot_entry .toot_footer,.report_status .status_preview .toot_entry .toot_footer {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: none!important;
|
|
|
|
}
|
2019-08-21 17:25:27 +01:00
|
|
|
.single_reply_status .status_preview .toot_entry .link_preview,.report_status .status_preview .toot_entry .link_preview {
|
2019-06-06 18:13:53 +01:00
|
|
|
display: none!important;
|
|
|
|
}
|
2018-07-25 16:31:54 +01:00
|
|
|
.single_reply_status .status_form .status_bottom,.report_status .status_form .status_bottom {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
#single_reply_status_form.status_form,#report_status_form.status_form,#caption_status_form.status_form {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 600px;
|
|
|
|
padding: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #E8F4FB;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
#single_reply_status_form.status_form .status_bottom .submit_status_label .toot_button_label i,
|
|
|
|
#report_status_form.status_form .status_bottom .submit_status_label .toot_button_label i,
|
|
|
|
#caption_status_form.status_form .status_bottom .submit_status_label .toot_button_label i {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 18px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.overlay_simple {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 600px;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 20%;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.overlay_simple_header {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 600px;
|
|
|
|
padding: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 300;
|
|
|
|
border-bottom: 1px solid #E6ECF0;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.overlay_simple .overlay_simple_body {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 600px;
|
|
|
|
padding: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.copy_link_input {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 36px;
|
|
|
|
padding: 4px 16px;
|
|
|
|
border: 1px solid #E6ECF0;
|
|
|
|
background-color: #F5F8FA;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 14px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2018-11-25 18:14:16 +00:00
|
|
|
.overlay_simple_controls {
|
2018-09-23 15:14:28 +01:00
|
|
|
height:31px;
|
|
|
|
}
|
|
|
|
.overlay_addlist_item {
|
|
|
|
padding-top:10px;
|
|
|
|
padding-bottom:10px;
|
|
|
|
border-bottom:1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.overlay_addlist_item:first-child {
|
|
|
|
padding-top:0;
|
|
|
|
}
|
|
|
|
.overlay_addlist_item:last-child {
|
|
|
|
padding-bottom:0;
|
|
|
|
border-bottom-width:0;
|
|
|
|
}
|
|
|
|
.overlay_addlist_item > .halcyon_button {
|
|
|
|
float:right;
|
|
|
|
margin-top:-3px;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.relationship_button {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 6px 13px;
|
|
|
|
margin-top: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid #189EFC;
|
|
|
|
}
|
|
|
|
.relationship_button i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.relationship_button span {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2018-05-19 18:52:19 +01:00
|
|
|
.follow_button,.halcyon_button {border: 1px solid #189EFC; color: #189EFC;}
|
|
|
|
.follow_button i,.halcyon_button i {color: #189EFC}
|
|
|
|
.follow_button:hover,.follow_button:hover i,.halcyon_button:hover,.halcyon_button:hover i {background-color: #189EFC;color: #fff;}
|
2018-03-11 11:07:57 +00:00
|
|
|
.following_button,
|
|
|
|
.following_button i {background-color: #189EFC;color: #fff;}
|
|
|
|
.following_button:hover,
|
|
|
|
.following_button:hover i {background-color: #E20055;color: #fff;}
|
|
|
|
.muting_button {background-color: #E20055;color: #fff;}
|
|
|
|
.muting_button i {color: #fff;}
|
|
|
|
.muting_button:hover,
|
|
|
|
.muting_button:hover i {background-color: #B82424;color: #fff;}
|
|
|
|
.blocking_button{background-color: #fff;color: #E20055}
|
|
|
|
.blocking_button i {color: #E20055;}
|
|
|
|
.blocking_button:hover,
|
|
|
|
.blocking_button:hover i {background-color: #B82424;}
|
|
|
|
.profile_edit_button{background-color: #FFF;color: #66757F;border: 1px solid #66757F;}
|
|
|
|
.profile_edit_button:hover,
|
|
|
|
.profile_edit_button:hover i {background-color: #F5F8FA;}
|
|
|
|
.timeline_header {
|
|
|
|
background-color: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #ECF1F4;
|
|
|
|
border-bottom: none;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
}
|
2018-09-03 16:04:14 +01:00
|
|
|
.timeline_header form {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.timeline_header .header_items {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.timeline_header .header_items .item {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 300;
|
|
|
|
padding: 15px;
|
|
|
|
color: #189EFC;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.timeline_header .header_items .item.view {
|
|
|
|
font-weight: 600;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.timeline {
|
|
|
|
background-color: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #ECF1F4;
|
|
|
|
}
|
|
|
|
.timeline .boost_author_box {
|
|
|
|
margin-left: 46px;
|
|
|
|
margin-bottom: -12px;
|
|
|
|
padding: 8px 0;
|
|
|
|
font-size: 12px;
|
|
|
|
color: rgb(101, 119, 134);
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
.timeline .boost_author_box i {
|
|
|
|
display: inline-block;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
padding: 2px;
|
|
|
|
margin-right: 11px;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #17BF63;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-size: 10px;
|
|
|
|
/*! height: 14px; */
|
|
|
|
}
|
2018-07-13 18:37:22 +01:00
|
|
|
.timeline .pinned_notice_box {
|
|
|
|
margin-left: 46px;
|
|
|
|
margin-bottom: -12px;
|
|
|
|
padding: 8px 0;
|
|
|
|
font-size: 12px;
|
|
|
|
color: rgb(101, 119, 134);
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
.timeline .pinned_notice_box i {
|
|
|
|
display: inline-block;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
padding: 2px;
|
|
|
|
margin-right: 11px;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #1DA1F2;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-size: 10px;
|
|
|
|
/*! height: 14px; */
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_entry {
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: #fff;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.toot_entry:hover {
|
|
|
|
background-color: #F5F8FA;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
padding: 12px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 1px solid #ECF1F4;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body > a {
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .icon_box {
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
margin-right: 12px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .icon_box img {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content {
|
|
|
|
flex-grow: 1;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 504px;
|
|
|
|
/*! z-index: 1; */
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header {
|
|
|
|
color: rgb(101, 119, 134);
|
|
|
|
position: relative;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .text_ellipsis a {
|
2018-07-10 18:12:22 +01:00
|
|
|
line-height: normal;
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 16.5px;
|
|
|
|
margin-bottom: -4.5px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .displayname {
|
|
|
|
color: rgb(20, 23, 26);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .displayname:hover {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .right-top_button {
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_button {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
color: #AAB8C2;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_button:hover {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 36px;
|
|
|
|
right: -152px;
|
|
|
|
width: 180px;
|
|
|
|
padding: 8px 21px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
|
2019-07-17 16:52:20 +01:00
|
|
|
z-index: 9;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu::before {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
z-index: -1;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
top: -5px;
|
|
|
|
left: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul {
|
|
|
|
margin: 0 -21px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 8px;
|
|
|
|
border-bottom: 1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul:last-child::after {
|
|
|
|
border-bottom: 0px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul li {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul:last-child li {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu a {
|
|
|
|
display: block;
|
|
|
|
padding: 8px 21px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu a:hover {
|
|
|
|
background-color: #189EFC;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .cw_button {
|
|
|
|
background-color: #6D768C;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 4px;
|
|
|
|
margin: auto 4px;
|
|
|
|
font-size: 8px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_article {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_article a,
|
|
|
|
.announcement .announcement_content .announcement_text a,
|
|
|
|
.halcyon_link {
|
2018-09-23 15:14:28 +01:00
|
|
|
color: #2588D0;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_article.content_warning .status_content {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_footer {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
2020-03-29 19:17:40 +01:00
|
|
|
width: 320px;
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 21px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction {
|
|
|
|
height: 21px;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction button {
|
|
|
|
margin: auto;
|
|
|
|
color: #AAB8C2;
|
|
|
|
font-size: 18px;
|
|
|
|
height: 21px;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction button.active {
|
|
|
|
animation-name: status_action_active;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction button .reaction_count {
|
|
|
|
color: #AAB8C2;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
@keyframes status_action_active {
|
|
|
|
0% { transform: scale(1); }
|
|
|
|
50% { transform: scale(2); }
|
|
|
|
100% { transform: scale(1); }
|
|
|
|
}
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .reply_button:hover {
|
|
|
|
color: #1DA1F2;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="false"]:hover,
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="true"],
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="false"]:hover .reaction_count,
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="true"] .reaction_count {
|
|
|
|
color: #17BF63;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="false"]:hover,
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="true"],
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="false"]:hover .reaction_count,
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="true"] .reaction_count {
|
|
|
|
color: #FFAD1A;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .bookmark_button[bookmarked="false"]:hover,
|
|
|
|
.toot_entry .toot_entry_body .toot_content .toot_reaction .bookmark_button[bookmarked="true"] {
|
|
|
|
color: #FF5050;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.media_views {
|
|
|
|
margin: 8px 0;
|
|
|
|
height: 336px;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #DCDFE1;
|
|
|
|
}
|
2019-08-21 17:25:27 +01:00
|
|
|
.media_views.link_preview {
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
2019-03-01 15:17:03 +00:00
|
|
|
.media_views.media_full_height {
|
|
|
|
height:auto;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.media_views .media_attachment {
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.media_views .media_attachment > * {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.media_views .media_attachment > iframe {
|
|
|
|
object-fit: fill;
|
|
|
|
}
|
2019-07-17 16:52:20 +01:00
|
|
|
.media_attachment .sensitive_alert {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
.media_attachment.sensitive .sensitive_alert {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
z-index: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2019-07-17 16:52:20 +01:00
|
|
|
position: relative;
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-07-17 16:52:20 +01:00
|
|
|
top:-100%;
|
|
|
|
overflow:hidden;
|
2018-03-11 11:07:57 +00:00
|
|
|
background-color: #000;
|
2019-06-06 18:13:53 +01:00
|
|
|
background-size:cover;
|
|
|
|
background-position:center;
|
|
|
|
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2019-07-17 16:52:20 +01:00
|
|
|
.media_attachment.sensitive .sensitive_alert .text1 {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 26px;
|
2019-07-17 16:52:20 +01:00
|
|
|
line-height:20px;
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 200;
|
|
|
|
padding: 8px 16px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-07-17 16:52:20 +01:00
|
|
|
.media_attachment.sensitive .sensitive_alert .text2 {
|
|
|
|
font-size:15px;
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 200;
|
|
|
|
padding: 2px 4px;
|
|
|
|
margin-top: 3px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-07-17 16:52:20 +01:00
|
|
|
.media_attachment.sensitive iframe+.sensitive_alert {
|
|
|
|
top:calc(-100% - 7px);
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.media_views[media_length="2"] {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.media_views[media_length="2"] .media_attachment {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.media_views[media_length="2"] .media_attachment[mediacount="0"] {
|
|
|
|
padding-right: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.media_views[media_length="3"],
|
|
|
|
.media_views[media_length="4"] {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.media_views[media_length="3"] .media_attachment[mediacount="0"],
|
|
|
|
.media_views[media_length="4"] .media_attachment[mediacount="0"] {
|
|
|
|
flex-grow: 2;
|
|
|
|
padding-right: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.media_views[media_length="3"] .media_attachments_right,
|
|
|
|
.media_views[media_length="4"] .media_attachments_right {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 2;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.media_views[media_length="3"] .media_attachments_right .media_attachment {
|
|
|
|
padding-bottom: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 50%;
|
|
|
|
}
|
|
|
|
.media_views[media_length="3"] .media_attachments_right .media_attachment[mediacount="2"] {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.media_views[media_length="4"] .media_attachments_right .media_attachment {
|
|
|
|
padding-bottom: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: calc( 100% / 3 );
|
|
|
|
}
|
|
|
|
.media_views[media_length="4"] .media_attachments_right .media_attachment[mediacount="3"] {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2019-03-01 15:17:03 +00:00
|
|
|
.media_backward,.media_forward {
|
|
|
|
color:#CCCCCC;
|
|
|
|
position:absolute;
|
|
|
|
top:50%;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
.media_backward {
|
|
|
|
left:-50px;
|
|
|
|
}
|
|
|
|
.media_forward {
|
|
|
|
right:-50px;
|
|
|
|
}
|
|
|
|
.media_backward:hover,.media_forward:hover {
|
|
|
|
color:#FFFFFF;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.timeline .notice_entry {
|
|
|
|
padding: 10px 12px 10px 70px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
border-bottom: 1px solid #E6ECF0;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .poll_notify_header {
|
|
|
|
padding: 10px 0 0 70px !important;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.timeline .notice_entry .notice_entry_body {
|
|
|
|
width: 480px;
|
|
|
|
border: 1px solid #E6ECF0;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.timeline .notice_entry .notice_entry_body .notice_emoji {
|
|
|
|
float:left;
|
|
|
|
margin-left:-3px;
|
|
|
|
margin-right:5px;
|
|
|
|
}
|
|
|
|
.timeline .notice_entry .notice_entry_body .notice_emoji img {
|
|
|
|
height:34px;
|
|
|
|
width:unset;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.timeline .notice_entry .notice_entry_body .toot_header {
|
|
|
|
height: 17px;
|
|
|
|
}
|
|
|
|
.timeline .notice_entry .notice_entry_body .toot_article p {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.timeline .notice_entry .icon_box {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
border-radius: 3px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.timeline .notice_entry .icon_box img {
|
|
|
|
width: 24px;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .font-icon {
|
2018-03-11 11:07:57 +00:00
|
|
|
position: relative;
|
|
|
|
padding: 3px;
|
|
|
|
left: -23px;
|
|
|
|
top: -26px;
|
|
|
|
width: 10px;
|
|
|
|
font-size: 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .font-icon.follow {
|
2018-03-11 11:07:57 +00:00
|
|
|
background: #1DA1F2;;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .font-icon.boost {
|
2018-03-11 11:07:57 +00:00
|
|
|
background: #17BF63;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .font-icon.favourite {
|
2018-03-11 11:07:57 +00:00
|
|
|
background: #FFAD1A;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.timeline .toot_entry .font-icon.reaction {
|
|
|
|
background: #FBA457;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .font-icon.poll {
|
|
|
|
background: #FF4040;
|
|
|
|
top:0;
|
|
|
|
}
|
|
|
|
.timeline .toot_entry .notice_author_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
padding: 3px 0;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .notice_author_box > a.notice_author {
|
2018-03-11 11:07:57 +00:00
|
|
|
margin-left: -18px;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .notice_author_box > a.notice_author span {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .toot_content .toot_header a .displayname {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.timeline .toot_entry .toot_content .toot_header a .username {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #66757F;
|
|
|
|
}
|
2019-01-31 16:53:40 +00:00
|
|
|
.timeline .toot_entry .toot_content .toot_article .status_content p:not(:last-child) {
|
|
|
|
margin-bottom:20px;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.timeline_footer {
|
|
|
|
padding: 24px;
|
|
|
|
background-color: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #ECF1F4;
|
|
|
|
border-top: none;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
color: #AAB8C2;
|
|
|
|
font-size: 36px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#js-follows_profile{
|
|
|
|
display: flex;
|
|
|
|
width: 900px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: auto;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 290px;
|
|
|
|
margin: 0 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #fff;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 1px solid #E6ECF0;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box.user_popup {
|
|
|
|
position:absolute;
|
|
|
|
z-index:999;
|
|
|
|
box-shadow:1px 1px 3px rgba(0,0,0,0.26);
|
|
|
|
border:0;
|
|
|
|
cursor:auto;
|
|
|
|
}
|
|
|
|
.follows_profile_box .follows_profile_header {
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 96px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #189EFC;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile_header img {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile {
|
2018-03-11 11:07:57 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_icon {
|
2018-03-11 11:07:57 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 74px;
|
|
|
|
height: 74px;
|
|
|
|
padding: 3px;
|
|
|
|
margin-left: 16px;
|
|
|
|
border-radius: 8px;
|
|
|
|
top: -76px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_icon img {
|
2018-03-11 11:07:57 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_name_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: auto;
|
|
|
|
/*! margin-left: 15px; */
|
|
|
|
padding-bottom: 2px;
|
|
|
|
padding-top: 4px;
|
|
|
|
margin: 0 16px;
|
|
|
|
margin-top: 36px;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_name_box a {
|
|
|
|
text-decoration-color:#333;
|
|
|
|
}
|
|
|
|
.follows_profile_box .follows_profile .follows_profile_name_box h2 {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 25px;
|
2019-06-20 15:50:42 +01:00
|
|
|
color:#333;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_name_box span {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: block;
|
|
|
|
width: 180px;
|
|
|
|
color: #657786;
|
|
|
|
font-size: 14px;
|
|
|
|
/*! overflow: hidden; */
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_name_box span::before {
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_bio {
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 58px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #66757f;
|
|
|
|
margin: 0 16px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
line-height: 1.3;
|
|
|
|
overflow: hidden;
|
|
|
|
/*! width: 100%; */
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_bio p {
|
2018-03-11 11:07:57 +00:00
|
|
|
/*! white-space: nowrap; */
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-all;
|
|
|
|
height: auto;
|
|
|
|
/*! max-width: 100%; */
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .follows_profile .follows_profile_bio p a {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #189EFC
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .halcyon_button {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 6px 18px;
|
|
|
|
margin-top: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid #189EFC;
|
|
|
|
position: absolute;
|
|
|
|
right: 16px;
|
|
|
|
top: -32px;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .halcyon_button i {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #189EFC;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .halcyon_button span {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .halcyon_button:hover,
|
|
|
|
.follows_profile_box .halcyon_button:hover i {
|
2018-03-11 11:07:57 +00:00
|
|
|
background-color: #189EFC;
|
|
|
|
color: #fff!important;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .following_button {
|
2018-03-11 11:07:57 +00:00
|
|
|
border: 1px solid #2B94DA;
|
|
|
|
background-color: #189EFC;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .following_button i {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #fff;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .following_button span {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 600;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.follows_profile_box .following_button:hover,
|
|
|
|
.follows_profile_box .following_button:hover i {
|
2018-03-11 11:07:57 +00:00
|
|
|
background-color: #E20055;
|
|
|
|
color: #fff!important;
|
|
|
|
}
|
|
|
|
#js-follows_footer {
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 36px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
#js-stream_update {
|
|
|
|
height: 0;
|
|
|
|
padding: 0px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 13px;
|
|
|
|
background-color: #F5F8FA;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: 0.3s;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#js-stream_update:hover {
|
|
|
|
background-color: #E6ECF0;
|
|
|
|
}
|
|
|
|
#js-stream_update button {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.current_profile_box {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #fff;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile_header {
|
|
|
|
height: 96px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #189EFC;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile_header img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_icon {
|
|
|
|
position: absolute;
|
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
|
|
|
padding: 3px;
|
|
|
|
margin-left: 8px;
|
|
|
|
border-radius: 8px;
|
|
|
|
top: -30px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_icon img {
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_name_box {
|
|
|
|
width: 180px;
|
|
|
|
margin-left: 90px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_name_box h2 {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_name_box span {
|
|
|
|
display: block;
|
|
|
|
width: 180px;
|
|
|
|
color: #657786;
|
|
|
|
font-size: 14px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_name_box span::before {
|
|
|
|
content: "@";
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.current_profile_box .current_profile .current_profile_counts,
|
|
|
|
.follows_profile_box .follows_profile .follows_profile_counts {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.current_profile_box .current_profile .current_profile_counts .current_profile_count,
|
|
|
|
.follows_profile_box .follows_profile .follows_profile_counts .follows_profile_count {
|
2018-03-11 11:07:57 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.current_profile_box .current_profile .current_profile_counts .current_profile_count a,
|
|
|
|
.follows_profile_box .follows_profile .follows_profile_counts .follows_profile_count a {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.current_profile_box .current_profile .current_profile_counts .current_profile_count a .title,
|
|
|
|
.follows_profile_box .follows_profile .follows_profile_counts .follows_profile_count a .title {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #657786;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
.current_profile_box .current_profile .current_profile_counts .current_profile_count a:hover .title {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
2019-06-20 15:50:42 +01:00
|
|
|
.current_profile_box .current_profile .current_profile_counts .current_profile_count a .count,
|
|
|
|
.follows_profile_box .follows_profile .follows_profile_counts .follows_profile_count a .count {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 400;
|
|
|
|
padding-top: 3px;
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.side_widget {
|
|
|
|
padding: 15px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.side_widgets_footer {
|
|
|
|
color: rgb(101, 119, 134);
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 16px 8px;
|
|
|
|
}
|
|
|
|
.side_widgets_footer ul li {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 12px 8px 0;
|
|
|
|
}
|
|
|
|
.side_widget h2 {
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 300;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.side_widget h3 {
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
2018-06-23 15:58:06 +01:00
|
|
|
.side_widget.with_button .form_title{
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
2018-06-23 15:58:06 +01:00
|
|
|
.side_widget.with_button .form_title h2 {
|
2018-03-11 11:07:57 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2018-06-23 15:58:06 +01:00
|
|
|
.side_widget.with_button .form_title .headerbtn {
|
2018-03-11 11:07:57 +00:00
|
|
|
cursor: pointer;
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #189EFC;
|
|
|
|
text-align: right;
|
2018-06-23 15:58:06 +01:00
|
|
|
text-decoration:none;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
.side_widget form.pulldown_form {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
margin-top: 0px;
|
|
|
|
transition: 0.13s ease-out;
|
|
|
|
}
|
|
|
|
.side_widget form.pulldown_form.view {
|
2018-03-27 18:26:03 +01:00
|
|
|
height: auto;
|
2018-03-11 11:07:57 +00:00
|
|
|
opacity: 1;
|
|
|
|
margin-top: 16px;
|
|
|
|
transition: 0.13s ease-out;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
.textfield {
|
|
|
|
margin: 10px;
|
2018-03-27 18:26:03 +01:00
|
|
|
padding-left:5px;
|
2018-08-04 14:52:34 +01:00
|
|
|
width: 75%;
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #66757F;
|
|
|
|
box-sizing: border-box;
|
2018-03-27 18:26:03 +01:00
|
|
|
height:30px;
|
2018-06-09 16:29:25 +01:00
|
|
|
border:1px solid #AAB8C2;
|
2018-03-27 18:26:03 +01:00
|
|
|
border-radius:2px;
|
2019-04-15 15:40:57 +01:00
|
|
|
background-color:#FFFFFF;
|
2018-03-27 18:26:03 +01:00
|
|
|
outline:0;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
.textfield:focus {
|
2018-03-27 18:26:03 +01:00
|
|
|
outline:0;
|
|
|
|
border:1px solid #189EFC;
|
2019-04-15 15:40:57 +01:00
|
|
|
background-color:#FFFFFF;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .icon_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-right: 8px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2019-08-21 17:25:27 +01:00
|
|
|
.what_to_follow .account_box .label_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 200px;
|
|
|
|
}
|
2019-08-21 17:25:27 +01:00
|
|
|
.trending_hashtags .account_box .label_box {
|
|
|
|
width:100%;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box h3 {
|
2018-03-11 11:07:57 +00:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: #333;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box h3 .dn {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box h3 .un {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #66757F;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box .follow_button {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 16px;
|
|
|
|
margin-top: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box .follow_button i {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #189EFC;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box .follow_button span {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.account_box .label_box .follow_button:hover,
|
|
|
|
.account_box .label_box .follow_button:hover i {
|
2018-03-11 11:07:57 +00:00
|
|
|
background-color: #189EFC;
|
|
|
|
color: #fff!important;
|
|
|
|
}
|
2018-05-19 18:52:19 +01:00
|
|
|
.halcyon_button {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 16px;
|
|
|
|
margin-top: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.halcyon_button i {
|
|
|
|
color: #189EFC;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.halcyon_button span {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.halcyon_button:hover,
|
|
|
|
.halcyon_button:hover i {
|
|
|
|
background-color: #189EFC;
|
|
|
|
color: #fff!important;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.side_widget .account_box .label_box .following_button {
|
|
|
|
display: flex;
|
|
|
|
color: #fff;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 18px;
|
|
|
|
margin-top: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #189EFC;
|
|
|
|
border: 1px solid #189EFC;
|
|
|
|
}
|
|
|
|
.side_widget .account_box .label_box .following_button:hover {
|
|
|
|
background-color: #E20055;
|
|
|
|
}
|
|
|
|
.side_widget .account_box .label_box .following_button i {
|
|
|
|
color: #FFF;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.side_widget .account_box .label_box .following_button span {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
#header {
|
|
|
|
display: flex;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 999;
|
|
|
|
width: 100%;
|
|
|
|
height: 47px;
|
|
|
|
color: #66757F;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0 1px 1px rgba(0,0,0,0.26);
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
width: 1190px;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item .nav_badge {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
background-color: #1B95E0;
|
|
|
|
border-radius: 50%;
|
|
|
|
position: absolute;
|
|
|
|
left: 6px;
|
|
|
|
top: 8px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item .nav_badge.notification_badge {
|
|
|
|
position: absolute;
|
|
|
|
background-color: #189EFC;
|
|
|
|
border-radius: 40%;
|
|
|
|
font-size: 10px;
|
|
|
|
top: 8px;
|
|
|
|
left: 20px;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
color: #fff;
|
|
|
|
padding: 2px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
color: #66757F;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 18px;
|
|
|
|
padding-left: 9px;
|
|
|
|
border-top: 0px solid transparent;
|
|
|
|
border-bottom: 0px solid #189EFC;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a:hover {
|
|
|
|
color: #189EFC;
|
|
|
|
text-decoration: none;
|
|
|
|
border-top: 5px solid transparent;
|
|
|
|
border-bottom: 5px solid #189EFC;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a.view {
|
|
|
|
text-decoration: none;
|
|
|
|
border-top: 5px solid transparent;
|
|
|
|
border-bottom: 5px solid #189EFC;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > i,
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > span {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > i {
|
|
|
|
margin-right: 4px;
|
|
|
|
font-size: 21px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > span {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box {
|
|
|
|
flex: 2;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 8px 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box ul.header_nav_list {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box ul.header_nav_list li.header_nav_item {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form {
|
|
|
|
width: 221px;
|
|
|
|
height: 95%;
|
|
|
|
outline: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form .search_form_input {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 5px 12px;
|
|
|
|
font-size: 12px;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 16px;
|
|
|
|
border: 1px solid #E8EEF1;
|
|
|
|
background-color: #F5F8FA;
|
|
|
|
height: 100%;
|
2018-03-27 18:26:03 +01:00
|
|
|
transition: 0.15s ease-out;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form .search_form_input:focus {
|
|
|
|
background-color: transparent;
|
2018-03-27 18:26:03 +01:00
|
|
|
transition: 0.15s ease-out;
|
|
|
|
outline:0;
|
|
|
|
border:2px solid #189EFC;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form .search_form_submit {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 14px;
|
|
|
|
font-size: 14px;
|
|
|
|
top: 5px;
|
|
|
|
right: 12px;
|
|
|
|
margin: 2px -4px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form .search_form_submit button,
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form .search_form_submit i {
|
|
|
|
display: block;
|
|
|
|
color: #66757F;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .my_account {
|
|
|
|
height: 35px;
|
|
|
|
width: 35px;
|
|
|
|
margin: auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .my_account img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 42px;
|
|
|
|
right: 14px;
|
|
|
|
width: 180px;
|
|
|
|
padding: 8px 21px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav::before {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
z-index: -1;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
top: -5px;
|
|
|
|
right: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 0.5px solid rgba(0,0,0,.26);
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul {
|
|
|
|
margin: 0 -21px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 8px;
|
|
|
|
border-bottom: 1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul:last-child::after {
|
|
|
|
border-bottom: 0px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul li {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul li a .display_name {
|
|
|
|
display: block;
|
|
|
|
color: #000;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav a {
|
|
|
|
display: block;
|
|
|
|
padding: 8px 21px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav a:hover,
|
|
|
|
#header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul li a:hover .display_name {
|
|
|
|
background-color: #189EFC;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2018-12-02 14:01:21 +00:00
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 50px;
|
|
|
|
width: 320px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
|
|
|
|
margin-left:50px
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions::before {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
z-index: -1;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
top: -5px;
|
|
|
|
left: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 0.5px solid rgba(0,0,0,.26);
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li.account_box {
|
|
|
|
margin-bottom:0;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li.account_box:hover {
|
|
|
|
background-color:#189EFC;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li.account_box:hover h3,
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li.account_box:hover .un {
|
|
|
|
color:#FFFFFF !important;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li.account_box:first-child {
|
|
|
|
border-top-left-radius:3px;
|
|
|
|
border-top-right-radius:3px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li.account_box:last-child {
|
|
|
|
border-bottom-left-radius:3px;
|
|
|
|
border-bottom-right-radius:3px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li .icon_box img {
|
|
|
|
margin-left:12px;
|
|
|
|
margin-top:8px;
|
|
|
|
width:32px;
|
|
|
|
height:32px;
|
|
|
|
border-radius:5px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li .icon_box img.emoji {
|
|
|
|
border-radius:0;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box .search_form_wrap .header_search_suggestions ul li h3 {
|
|
|
|
font-size:16px;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.toot_button {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 90px;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #2588D0;
|
|
|
|
transition: 0.15s ease-out;;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.toot_button:hover {
|
2018-03-11 11:07:57 +00:00
|
|
|
background-color: #2571D0;
|
|
|
|
transition: 0.15s ease-out;;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.toot_button:active {
|
2018-03-11 11:07:57 +00:00
|
|
|
background-color: #255ED0;
|
|
|
|
transition: 0.15s ease-out;;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.toot_button .toot_button_label {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.toot_button i {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 21px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.toot_button span {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
#main {
|
|
|
|
padding-top: 47px;
|
|
|
|
}
|
|
|
|
#main > .header_image_box {
|
|
|
|
width: 100%;
|
|
|
|
height: 460px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#main > .header_image_box img {
|
|
|
|
min-width: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap {
|
|
|
|
height: 60px;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.25);
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 1200px;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_left {
|
|
|
|
width: 300px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right {
|
|
|
|
width: 900px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item {
|
|
|
|
height: 100%;
|
|
|
|
color: #66757F;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 0px solid transparent;
|
|
|
|
border-bottom: 0px solid #189EFC;
|
|
|
|
transition: 0.15s;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item:hover {
|
|
|
|
color: #189EFC;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
border-bottom: 4px solid #189EFC;
|
|
|
|
transition: 0.15s;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item.view {
|
|
|
|
color: #189EFC;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
border-bottom: 4px solid #189EFC;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a h2 {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a span {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_button_box {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_button_box button {
|
|
|
|
float: right;
|
|
|
|
padding: 9px 16px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#js-header_title_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
padding: 16px 0;
|
2018-06-09 16:29:25 +01:00
|
|
|
overflow: hidden;
|
2018-03-11 11:07:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #189EFC;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#js-header_title_box h1 {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: block;
|
|
|
|
width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 16px;
|
|
|
|
font-size: 27px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 32px;
|
|
|
|
color: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap {
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 50px;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.25);
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 1200px;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left {
|
2018-03-11 11:07:57 +00:00
|
|
|
width: 900px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item {
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 100%;
|
|
|
|
color: #66757F;
|
|
|
|
/*! font-size: 13px; */
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav_item.view a {
|
|
|
|
border-top: 4px solid transparent !important;
|
|
|
|
border-bottom: 4px solid #189EFC !important;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 0px solid transparent;
|
|
|
|
border-bottom: 0px solid #189EFC;
|
|
|
|
transition: 0.15s;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a:hover {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #189EFC;
|
|
|
|
text-decoration: none;
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
border-bottom: 4px solid #189EFC;
|
|
|
|
transition: 0.15s;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a.view {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #189EFC;
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
border-bottom: 4px solid #189EFC;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a h2 {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a span {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_button_box {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
#main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_button_box button {
|
2018-03-11 11:07:57 +00:00
|
|
|
float: right;
|
|
|
|
padding: 9px 16px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
#main .article_wrap {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 1200px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column {
|
|
|
|
position: relative;
|
|
|
|
width: 300px;
|
|
|
|
padding: 10px 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column > .profile_icon_box {
|
|
|
|
position: absolute;
|
|
|
|
top: -185px;
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
margin-left: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 14px;
|
|
|
|
border: 1px solid #FBFBFC;
|
|
|
|
box-shadow: 0 0.1px 0.3px rgba(0,0,0,0.26);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column .profile_icon_box img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap {
|
|
|
|
padding: 36px 16px 0 15px;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap > .profile_displayname {
|
|
|
|
font-size: 22px;
|
|
|
|
font-weight: 700;
|
2018-07-10 18:12:22 +01:00
|
|
|
line-height: normal;
|
2018-03-11 11:07:57 +00:00
|
|
|
color: rgb(20, 23, 26);
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2018-11-16 18:14:32 +00:00
|
|
|
#main .article_wrap .left_column .profile_section_wrap > .profile_username,
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap .profile_field_header {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: rgb(101, 119, 134);
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 300;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap > .profile_username .profile_followed_by {
|
|
|
|
font-size: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2018-11-16 18:14:32 +00:00
|
|
|
#main .article_wrap .left_column .profile_section_wrap > .profile_bio,
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap .profile_field_value {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2018-11-16 18:14:32 +00:00
|
|
|
#main .article_wrap .left_column .profile_section_wrap > .profile_bio a,
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap .profile_field_value a {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #2588D0;
|
|
|
|
}
|
2018-11-16 18:14:32 +00:00
|
|
|
#main .article_wrap .left_column .profile_section_wrap .profile_field:last-child {
|
|
|
|
margin-bottom:15px;
|
|
|
|
}
|
|
|
|
#main .article_wrap .left_column .profile_section_wrap .profile_field_verified {
|
|
|
|
margin-right:2px;
|
|
|
|
color:#1DA1F2;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.profile_with_icon > a,.profile_with_icon > span {
|
2018-03-11 11:07:57 +00:00
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
2018-09-23 15:14:28 +01:00
|
|
|
.profile_with_icon > a {
|
|
|
|
color: #2588D0;
|
|
|
|
}
|
|
|
|
.profile_with_icon i {
|
2018-03-11 11:07:57 +00:00
|
|
|
color: #657786;
|
|
|
|
margin-right: 8px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
#js_profile_recent_images_box {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 14px;
|
|
|
|
display: flex;
|
|
|
|
margin-top: 8px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
#js_profile_recent_images_box .profile_recent_images_item {
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
margin: 0 5px 5px 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-shrink: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#js_profile_recent_images_box .profile_recent_images_item img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
max-width: none;
|
|
|
|
max-height: none;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
#main .article_wrap .center_column {
|
|
|
|
width: auto;
|
|
|
|
flex: 1;
|
|
|
|
padding: 10px 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#main .article_wrap .right_column {
|
|
|
|
width: 300px;
|
|
|
|
padding: 10px 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#js-overlay_content_wrap {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
#js-overlay_content_wrap.view {
|
|
|
|
display: block;
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
@keyframes fadein_05 {
|
|
|
|
0% { background-color: rgba(0, 0, 0, 0); }
|
|
|
|
100% {background-color: rgba(0, 0, 0, 0.5);}
|
|
|
|
}
|
|
|
|
@keyframes fadein_08 {
|
|
|
|
0% { background-color: rgba(0, 0, 0, 0); }
|
|
|
|
100% {background-color: rgba(0, 0, 0, 0.8);}
|
|
|
|
}
|
|
|
|
#js-overlay_content_wrap.view.black_05 {
|
|
|
|
animation-name: fadein_05;
|
|
|
|
animation-duration: 0.35s;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
#js-overlay_content_wrap.view.black_08 {
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
|
|
}
|
|
|
|
#js-overlay_content_wrap #js-overlay_content {
|
|
|
|
width: 628px;
|
|
|
|
height: auto;
|
|
|
|
margin: 56px auto;
|
|
|
|
position: relative;
|
2018-07-01 16:07:18 +01:00
|
|
|
margin-bottom: 300px;
|
2018-03-11 11:07:57 +00:00
|
|
|
}
|
|
|
|
#js-overlay_content_wrap #js-overlay_content .close_button {
|
|
|
|
color: #fff;
|
|
|
|
position: absolute;
|
|
|
|
right: -32px;
|
|
|
|
top: 0;
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
#js-overlay_content_wrap .temporary_object .thumb_box {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#overlay_message {
|
|
|
|
position: fixed;
|
|
|
|
top: -47px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 658px;
|
|
|
|
height: 58px;
|
|
|
|
border-bottom-left-radius: 8px;
|
|
|
|
border-bottom-right-radius: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 1px 1px 3px rgba(0,0,0,0.35);
|
|
|
|
z-index: 998;
|
|
|
|
}
|
|
|
|
@keyframes overlay_message_active {
|
|
|
|
0% { top: -47px }
|
|
|
|
10% { top: 47px; }
|
|
|
|
85% { top: 47px; }
|
|
|
|
100% { top: -47px }
|
|
|
|
}
|
|
|
|
#overlay_message.view {
|
|
|
|
animation-name: overlay_message_active;
|
|
|
|
animation-duration: 3s;
|
|
|
|
}
|
|
|
|
#overlay_message section {
|
|
|
|
color: #999;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 16px;
|
|
|
|
margin: auto;
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.toot_detail_wrap {
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.toot_detail_wrap .toot_detail:first-child,
|
|
|
|
.toot_detail_wrap .toot_entry:first-child {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
}
|
|
|
|
.toot_detail_wrap .toot_detail:last-child,
|
|
|
|
.toot_detail_wrap .toot_entry:last-child {
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
}
|
|
|
|
.toot_detail {
|
|
|
|
width: 628px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.toot_entry.ancestors_status .toot_entry_body,
|
|
|
|
.toot_entry.descendants_status .toot_entry_body {
|
|
|
|
padding: 18px 40px;
|
|
|
|
border-bottom: none;
|
|
|
|
position: relative;
|
|
|
|
/*! padding-bottom: 8px; */
|
|
|
|
}
|
|
|
|
.toot_entry.ancestors_status.default_padding .toot_entry_body,
|
|
|
|
.toot_entry.descendants_status.default_padding .toot_entry_body {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
.toot_entry.ancestors_status .toot_entry_body::after,
|
|
|
|
.toot_entry.descendants_status .toot_entry_body::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 2px;
|
|
|
|
position: absolute;
|
|
|
|
left: 62px;
|
|
|
|
height: calc(100% - 57px);
|
|
|
|
top: 68px;
|
|
|
|
}
|
2019-03-01 15:17:03 +00:00
|
|
|
.toot_entry.ancestors_status .toot_entry_body::after,
|
|
|
|
.toot_entry.descendants_status.direct_answer .toot_entry_body::after {
|
|
|
|
border: 2px solid #76BFEC;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_entry.ancestors_status.default_padding .toot_entry_body::after,
|
|
|
|
.toot_entry.descendants_status.default_padding .toot_entry_body::after {
|
|
|
|
left: 35px;
|
|
|
|
height: calc(100% - 60px);
|
|
|
|
top: 64px;
|
|
|
|
}
|
|
|
|
.toot_entry.descendants_status:last-child .toot_entry_body::after {
|
|
|
|
border: 0px solid #76BFEC;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .icon_box {
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 3px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header a {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header a .displayname {
|
|
|
|
color: #000;
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 1.35;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header a .username {
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header a:hover .displayname {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap {
|
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_button {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
color: #AAB8C2;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_button:hover {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 36px;
|
|
|
|
right: -152px;
|
|
|
|
width: 180px;
|
|
|
|
padding: 8px 21px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu::before {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
z-index: -1;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
top: -5px;
|
|
|
|
left: 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu ul {
|
|
|
|
margin: 0 -21px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu ul::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 8px;
|
|
|
|
border-bottom: 1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu ul:last-child::after {
|
|
|
|
border-bottom: 0px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu ul li {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu a {
|
|
|
|
display: block;
|
|
|
|
padding: 8px 21px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_header .expand_button_wrap .expand_menu a:hover {
|
|
|
|
background-color: #189EFC;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_detail_body {
|
|
|
|
padding: 30px 40px;
|
|
|
|
/*! border-radius: 4px; */
|
|
|
|
}
|
|
|
|
.toot_detail .toot_content .toot_article {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin: 16px auto;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .toot_content .toot_article {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1.35;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .toot_content .toot_article .cw_button {
|
|
|
|
background-color: #6D768C;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 4px;
|
|
|
|
margin: auto 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .toot_content .toot_article.content_warning .status_content {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-01-31 16:53:40 +00:00
|
|
|
.toot_detail.main_status .toot_content .toot_article .status_content p:not(:last-child) {
|
|
|
|
margin-bottom:30px;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_detail.main_status .toot_content a {
|
|
|
|
color: #189EFC;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .toot_content time {
|
|
|
|
color: #66757F;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
2020-03-29 19:17:40 +01:00
|
|
|
width: 320px;
|
2018-03-11 11:07:57 +00:00
|
|
|
height: 21px;
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction {
|
|
|
|
height: 21px;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction button {
|
|
|
|
margin: auto;
|
|
|
|
color: #AAB8C2;
|
|
|
|
font-size: 18px;
|
|
|
|
height: 21px;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction button.active {
|
|
|
|
animation-name: status_action_active;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction button .reaction_count {
|
|
|
|
color: #AAB8C2;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
@keyframes status_action_active {
|
|
|
|
0% { transform: scale(1); }
|
|
|
|
50% { transform: scale(2); }
|
|
|
|
100% { transform: scale(1); }
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction .reply_button:hover {
|
|
|
|
color: #1DA1F2;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction .boost_button[reblogged="false"]:hover,
|
|
|
|
.toot_detail .toot_footer .toot_reaction .boost_button[reblogged="true"],
|
|
|
|
.toot_detail .toot_footer .toot_reaction .boost_button[reblogged="false"]:hover .reaction_count,
|
|
|
|
.toot_detail .toot_footer .toot_reaction .boost_button[reblogged="true"] .reaction_count {
|
|
|
|
color: #17BF63;
|
|
|
|
}
|
|
|
|
.toot_detail .toot_footer .toot_reaction .fav_button[favourited="false"]:hover,
|
|
|
|
.toot_detail .toot_footer .toot_reaction .fav_button[favourited="true"],
|
|
|
|
.toot_detail .toot_footer .toot_reaction .fav_button[favourited="false"]:hover .reaction_count,
|
|
|
|
.toot_detail .toot_footer .toot_reaction .fav_button[favourited="true"] .reaction_count {
|
|
|
|
color: #FFAD1A;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.toot_detail .toot_footer .toot_reaction .bookmark_button[bookmarked="false"]:hover,
|
|
|
|
.toot_detail .toot_footer .toot_reaction .bookmark_button[bookmarked="true"] {
|
|
|
|
color: #FF5050;
|
|
|
|
}
|
2018-03-11 11:07:57 +00:00
|
|
|
.toot_detail .status_form {
|
|
|
|
border-top: 1px solid #E6ECF0;
|
|
|
|
border-bottom: 1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.media_detail {
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
.media_detail .media_box {
|
|
|
|
background-color: #000;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.media_detail .toot_entry {
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
}
|
|
|
|
.media_detail .toot_entry .toot_entry_body {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2019-07-17 16:52:20 +01:00
|
|
|
.media_detail .toot_entry .media_views,
|
|
|
|
.media_detail .toot_entry .player {
|
2018-03-11 11:07:57 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-04-27 14:32:45 +01:00
|
|
|
.switch {
|
2018-06-09 16:29:25 +01:00
|
|
|
width:60px;
|
|
|
|
height:30px;
|
|
|
|
margin:10px;
|
2018-04-27 14:32:45 +01:00
|
|
|
}
|
|
|
|
.switch input {
|
|
|
|
width: 60px;
|
|
|
|
height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
opacity: 0;
|
|
|
|
outline: none;
|
|
|
|
z-index: 9;
|
|
|
|
}
|
|
|
|
.switch input:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.switch-btn {
|
|
|
|
background: #AAB8C2;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 20px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.switch-btn span {
|
|
|
|
background: #fff;
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
display: block;
|
|
|
|
border-radius: 50%;
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 2px;
|
|
|
|
-webkit-transition: all .5s;
|
|
|
|
-moz-transition: all .5s;
|
|
|
|
-o-transition: all .5s;
|
|
|
|
transition: all .5s;
|
|
|
|
}
|
|
|
|
.switch input:checked + .switch-btn span {
|
|
|
|
left: 32px;
|
|
|
|
}
|
|
|
|
.switch input:checked + .switch-btn {
|
|
|
|
background: #189EFC;
|
|
|
|
}
|
2018-06-09 16:29:25 +01:00
|
|
|
.radiobox {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
.radiobox input[type="radio"] {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.radiobox input[type="radio"] + .radiotext:before {
|
|
|
|
content: '';
|
2019-04-15 15:40:57 +01:00
|
|
|
background: transparent;
|
2018-06-09 16:29:25 +01:00
|
|
|
border-radius: 100%;
|
|
|
|
border: 1px solid #AAB8C2;
|
|
|
|
display: inline-block;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin-right: 3px;
|
|
|
|
vertical-align: top;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
transition: all 250ms ease;
|
|
|
|
position: relative;
|
|
|
|
top: -8px;
|
|
|
|
}
|
|
|
|
.radiobox input[type="radio"]:checked + .radiotext:before {
|
|
|
|
background-color: #189EFC;
|
2019-04-15 15:40:57 +01:00
|
|
|
box-shadow: inset 0 0 0 4px #FFF;
|
2018-06-09 16:29:25 +01:00
|
|
|
outline: none;
|
|
|
|
border-color: #189EFC;
|
|
|
|
}
|
2018-11-25 18:14:16 +00:00
|
|
|
input.checkbox[type=checkbox] {display:none}
|
|
|
|
input.checkbox[type=checkbox] + label:before {
|
|
|
|
font-family: FontAwesome;
|
|
|
|
display: inline-block;
|
|
|
|
letter-spacing: 5px;
|
|
|
|
color: #189EFC;
|
|
|
|
font-size:30px;
|
|
|
|
vertical-align:sub;
|
|
|
|
margin-bottom:5px;
|
|
|
|
}
|
|
|
|
input.checkbox[type=checkbox] + label:before {content: "\f0c8"}
|
|
|
|
input.checkbox[type=checkbox]:checked + label:before {content: "\f14a"}
|
2018-08-04 14:52:34 +01:00
|
|
|
.uploadbtn:before {
|
|
|
|
position:absolute;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
|
|
|
text-align:center;
|
|
|
|
font-size:12px;
|
|
|
|
font-weight:600;
|
|
|
|
content:"Select file and upload";
|
|
|
|
}
|
|
|
|
.s-hidden {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
.select {
|
|
|
|
cursor:pointer;
|
|
|
|
display:inline-block;
|
|
|
|
position:relative;
|
|
|
|
width:calc(75% - 2px);
|
|
|
|
}
|
|
|
|
.styledselect {
|
|
|
|
width:100%;
|
|
|
|
margin:10px;
|
|
|
|
padding:0;
|
|
|
|
height:28px;
|
|
|
|
position:relative;
|
|
|
|
text-align:center;
|
|
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
.styledselect.active {
|
|
|
|
border-bottom-left-radius:0;
|
|
|
|
border-bottom-right-radius:0;
|
|
|
|
}
|
|
|
|
.options {
|
|
|
|
display:none;
|
|
|
|
position:absolute;
|
|
|
|
top:100%;
|
|
|
|
right:0;
|
|
|
|
left:0;
|
|
|
|
z-index:999;
|
|
|
|
margin:-10px -12px 0 10px !important;
|
|
|
|
padding:0 0;
|
|
|
|
list-style:none;
|
|
|
|
border:1px solid #189EFC;
|
|
|
|
border-top-width:0;
|
|
|
|
background-color:white;
|
|
|
|
border-bottom-left-radius:4px;
|
|
|
|
border-bottom-right-radius:4px;
|
|
|
|
}
|
|
|
|
.options li {
|
|
|
|
text-align:center;
|
|
|
|
padding:5px;
|
|
|
|
transition:0.15s ease-out;
|
2018-09-03 16:04:14 +01:00
|
|
|
border:0 solid #189EFC;
|
2018-08-04 14:52:34 +01:00
|
|
|
}
|
|
|
|
.options li:hover {
|
|
|
|
border:0 solid #189EFC;
|
|
|
|
border-left-width:5px;
|
|
|
|
border-right-width:5px;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
.announcement_wrap {
|
|
|
|
display:flex;
|
|
|
|
flex-wrap:wrap;
|
|
|
|
width:1200px;
|
|
|
|
margin:auto;
|
|
|
|
margin-top:2px;
|
|
|
|
}
|
|
|
|
.announcement {
|
|
|
|
margin-left:5px;
|
|
|
|
margin-right:5px;
|
|
|
|
margin-top:10px;
|
|
|
|
width:100%;
|
|
|
|
padding:15px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color:#fff;
|
|
|
|
border:1px solid #E6ECF0;
|
|
|
|
}
|
|
|
|
.announcement_icon {
|
|
|
|
float:left;
|
|
|
|
color:rgb(101,119,134);
|
|
|
|
}
|
|
|
|
.announcement_content {
|
|
|
|
float:left;
|
|
|
|
margin-left:10px;
|
|
|
|
width:calc(100% - 58px);
|
|
|
|
}
|
|
|
|
.announcement_text {
|
|
|
|
color:#333;
|
|
|
|
font-size:14px;
|
|
|
|
padding:5px;
|
|
|
|
}
|
|
|
|
.announcement_reactions {
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
.announcement_date {
|
|
|
|
float:right;
|
|
|
|
}
|
|
|
|
.emoreact {
|
|
|
|
margin:3px;
|
|
|
|
padding:3px;
|
|
|
|
border-radius:3px;
|
|
|
|
border:1px solid #189EFC;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
.emoreact .emoji {
|
|
|
|
vertical-align:-4px;
|
|
|
|
}
|
|
|
|
.emoreact .emoreact_count {
|
|
|
|
margin-left:3px;
|
|
|
|
vertical-align:-2px;
|
|
|
|
color:#189EFC;
|
|
|
|
}
|
|
|
|
.emoreact.active,
|
|
|
|
.emoreact:hover {
|
|
|
|
background-color:#189EFC;
|
|
|
|
}
|
|
|
|
.emoreact.active .emoreact_count,
|
|
|
|
.emoreact:hover .emoreact_count {
|
|
|
|
color:#FFFFFF;
|
|
|
|
}
|
|
|
|
.emoreact_add {
|
|
|
|
margin:3px;
|
|
|
|
border-radius:3px;
|
|
|
|
border:1px solid #189EFC;
|
|
|
|
cursor:pointer;
|
|
|
|
color:#189EFC;
|
|
|
|
font-size:18px;
|
|
|
|
padding-left:5px;
|
|
|
|
padding-right:5px;
|
|
|
|
padding-top:4px;
|
|
|
|
vertical-align:-3px;
|
|
|
|
}
|
|
|
|
.emoreact_add:hover {
|
|
|
|
background-color:#189EFC;
|
|
|
|
color:#FFFFFF;
|
|
|
|
}
|
|
|
|
.emoreact_add .lsx-emojipicker-appender {
|
|
|
|
display:inline-block;
|
|
|
|
left:15px;
|
|
|
|
}
|
|
|
|
.status_reactions {
|
|
|
|
margin-left:-3px;
|
|
|
|
margin-top:5px;
|
|
|
|
}
|
2018-09-03 16:04:14 +01:00
|
|
|
@media(max-width:1199px) {
|
|
|
|
#main .profile_nav_wrap .profile_nav {
|
|
|
|
width:900px;
|
|
|
|
}
|
|
|
|
#main .profile_nav_wrap .profile_nav .profile_nav_right {
|
|
|
|
width:590px;
|
|
|
|
}
|
|
|
|
#js-follows_profile {
|
|
|
|
width:600px;
|
|
|
|
}
|
2020-03-29 19:17:40 +01:00
|
|
|
#main .article_wrap,
|
|
|
|
#main .announcement {
|
2018-09-03 16:04:14 +01:00
|
|
|
width:900px;
|
|
|
|
}
|
|
|
|
}
|
2018-11-01 17:45:46 +00:00
|
|
|
.dropDown {
|
|
|
|
display:inline;
|
|
|
|
position:absolute;
|
|
|
|
background-color:#FFF;
|
|
|
|
list-style:none;
|
|
|
|
padding:0;
|
|
|
|
z-index:1000;
|
|
|
|
box-shadow:0.5px 0.5px 3px rgba(0,0,0,0.26);
|
|
|
|
box-sizing:border-box;
|
|
|
|
cursor:pointer;
|
|
|
|
border-radius:3px;
|
|
|
|
}
|
|
|
|
.dropDown li {
|
|
|
|
margin:0;
|
|
|
|
padding-top:5px;
|
|
|
|
padding-bottom:5px;
|
|
|
|
}
|
|
|
|
.dropDown li .un {
|
|
|
|
color:#66757F;
|
|
|
|
overflow:hidden;
|
|
|
|
white-space:nowrap;
|
|
|
|
text-overflow:ellipsis;
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
.dropDown .icon_box .emoji {
|
|
|
|
margin:0;
|
|
|
|
vertical-align:0;
|
|
|
|
}
|
|
|
|
.hoverLi {
|
|
|
|
background-color:#189EFC;
|
|
|
|
color:#FFF;
|
|
|
|
}
|
|
|
|
.hoverLi h3,.hoverLi .un {
|
|
|
|
color:#FFF !important;
|
|
|
|
}
|
|
|
|
.showDropDown{
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
.hideDropDown {
|
|
|
|
display:none;
|
|
|
|
}
|
2018-12-02 14:01:21 +00:00
|
|
|
.instance_field {
|
|
|
|
width:100%;
|
|
|
|
text-align:center;
|
|
|
|
font-size:40px;
|
|
|
|
font-weight:bold;
|
|
|
|
border:1px solid #E6ECF0;
|
|
|
|
border-radius:5px;
|
|
|
|
padding-top:34px;
|
|
|
|
padding-bottom:35px;
|
|
|
|
}
|
2019-01-13 18:02:16 +00:00
|
|
|
.player,
|
|
|
|
.player * {
|
|
|
|
overflow: visible;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.player {
|
|
|
|
width: 100%;
|
|
|
|
height: 33px;
|
|
|
|
margin: 0px 0px 10px 0px;
|
|
|
|
padding: 5px 15px;
|
|
|
|
border: 1px solid #DCDFE1;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 21px;
|
|
|
|
color: #333;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.player > div {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.player .play {
|
|
|
|
width: 21px;
|
|
|
|
height: 21px;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
.player .time-left {
|
|
|
|
width: 50px;
|
|
|
|
height: 21px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.player .time-right {
|
|
|
|
width: 50px;
|
|
|
|
height: 21px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.player .progress {
|
|
|
|
width: calc(100% - 252px);
|
|
|
|
height: 9px;
|
|
|
|
margin-top: 6px;
|
|
|
|
background: #AAB8C2;
|
|
|
|
border-radius:9px;
|
|
|
|
}
|
|
|
|
.player .loaded {
|
|
|
|
width: 0px;
|
|
|
|
height: 9px;
|
|
|
|
border-radius:9px;
|
|
|
|
background: rgb(101, 119, 134);
|
|
|
|
}
|
|
|
|
.player .progress .pointer {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
margin: -12px 0px 0px -3px;
|
|
|
|
background: #189EFC;
|
|
|
|
-webkit-border-radius: 50%;
|
|
|
|
-moz-border-radius: 50%;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
.player .mute {
|
|
|
|
width: 21px;
|
|
|
|
height: 21px;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
.player .volume {
|
|
|
|
width: 60px;
|
|
|
|
height: 9px;
|
|
|
|
margin-top:6px;
|
|
|
|
margin-right: 0px;
|
|
|
|
background: #AAB8C2;
|
|
|
|
border-radius:9px;
|
|
|
|
}
|
|
|
|
.player .volume .pointer {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
margin: -3px 0px 0px 27px;
|
|
|
|
background: #189EFC;
|
|
|
|
-webkit-border-radius: 50%;
|
|
|
|
-moz-border-radius: 50%;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2019-04-15 15:40:57 +01:00
|
|
|
.poll_box {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
.poll_box_form {
|
|
|
|
line-height:20px;
|
|
|
|
}
|
|
|
|
.poll_box .radiobox {
|
|
|
|
margin:0;
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
|
|
|
.poll_checkbox_label {
|
|
|
|
line-height:30px;
|
|
|
|
}
|
|
|
|
.poll_checkbox_label:before {
|
|
|
|
vertical-align:top !important;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .poll_checkbox_label:before {
|
|
|
|
vertical-align:middle !important;
|
|
|
|
}
|
|
|
|
.poll_vote {
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .poll_vote {
|
|
|
|
vertical-align:text-bottom;
|
|
|
|
}
|
|
|
|
.poll_bar {
|
|
|
|
position:absolute;
|
|
|
|
background-color:#CCCCCC;
|
|
|
|
border-radius:4px;
|
|
|
|
height:25px;
|
|
|
|
}
|
|
|
|
.poll_winner {
|
|
|
|
background-color:#189EFC;
|
|
|
|
}
|
|
|
|
.toot_detail.main_status .poll_bar {
|
|
|
|
height:35px;
|
|
|
|
}
|
|
|
|
.poll_result_label {
|
|
|
|
position:relative;
|
|
|
|
display:inline-block;
|
|
|
|
padding:5px;
|
|
|
|
}
|
|
|
|
.poll_footer {
|
|
|
|
color:#66757F;
|
|
|
|
}
|
2019-05-29 15:18:32 +01:00
|
|
|
.media_attachments_preview_area .media_attachments_preview {
|
|
|
|
-webkit-transition:-webkit-transform 0.2s ease-out;
|
|
|
|
-moz-transition:-moz-transform 0.2s ease-out;
|
|
|
|
-o-transition:-o-transform 0.2s ease-out;
|
|
|
|
-ms-transition:-ms-transform 0.2s ease-out;
|
|
|
|
}
|
|
|
|
.media_attachments_preview_area .media_attachments_preview.over {
|
|
|
|
border:2px dashed #000;
|
|
|
|
height:111px;
|
|
|
|
max-width:111px;
|
|
|
|
}
|
|
|
|
.media_attachments_preview_area .media_attachments_preview.moving {
|
|
|
|
opacity:0.25;
|
|
|
|
-webkit-transform:scale(0.8);
|
|
|
|
-moz-transform:scale(0.8);
|
|
|
|
-ms-transform:scale(0.8);
|
|
|
|
-o-transform:scale(0.8);
|
|
|
|
}
|
|
|
|
.media_attachments_delete_button {
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
right:0;
|
|
|
|
border-bottom-left-radius:5px;
|
|
|
|
background-color:#FFFFFF;
|
|
|
|
color:#FF0000;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
.media_attachments_delete_button:hover {
|
|
|
|
background-color:#FF0000;
|
|
|
|
color:#FFFFFF;
|
|
|
|
}
|
|
|
|
.media_attachments_caption_button {
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
border-bottom-right-radius:5px;
|
|
|
|
background-color:#FFFFFF;
|
|
|
|
color:#189EFC;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
.media_attachments_caption_button:hover {
|
|
|
|
background-color:#189EFC;
|
|
|
|
color:#FFFFFF;
|
|
|
|
}
|
|
|
|
.media_attachments_caption_button i,
|
|
|
|
.media_attachments_delete_button i{
|
|
|
|
margin:5px;
|
|
|
|
}
|
2019-12-23 13:58:06 +00:00
|
|
|
@media(max-width:899px) {
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > span,
|
|
|
|
#header .header_nav_wrap .header_right_box ul.header_nav_list li.search_form_wrap,
|
|
|
|
#header .header_nav_wrap .header_right_box ul.header_nav_list li.toot_button_wrap .toot_button_label > span {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_right_box ul.header_nav_list li.toot_button_wrap .toot_button {
|
|
|
|
width:40px;
|
|
|
|
}
|
|
|
|
#header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a {
|
|
|
|
padding-right:4px;
|
|
|
|
}
|
|
|
|
}
|