thedesk/app/css/tl.css

835 lines
13 KiB
CSS
Raw Normal View History

2018-01-28 23:22:43 +11:00
/*TL CSS(ただしBBCode pulse:master.css/spin:font-awesome*/
2019-05-19 17:39:30 +10:00
#main {
2019-11-09 16:19:18 +11:00
width: 100vw;
height: calc(100vh - 40px);
2018-03-14 17:52:55 +11:00
}
2018-01-28 23:22:43 +11:00
#timeline-container {
2019-11-09 16:19:18 +11:00
overflow-x: scroll;
overflow-y: hidden;
display: flex;
height: 100%;
2019-05-19 17:39:30 +10:00
}
#bottom {
2019-11-09 16:19:18 +11:00
position: absolute;
bottom: 0;
width: 100vw;
height: 40px;
padding: 3px;
padding-right: 0;
padding-left: 40px;
background-color: var(--sidebar);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
z-index: 500;
box-shadow: 10px 0 10px 10px rgba(0, 0, 0, 0.2);
2018-03-13 04:41:38 +11:00
}
2019-09-13 00:25:27 +10:00
#demobottom {
2019-11-09 16:19:18 +11:00
width: 500px;
display: flex;
2019-09-13 00:25:27 +10:00
}
2019-05-19 17:39:30 +10:00
#bottom.reverse {
2019-11-09 16:19:18 +11:00
padding-left: 0;
padding-right: 40px;
2018-09-11 04:59:44 +10:00
}
2019-05-19 17:39:30 +10:00
.reverse {
2019-11-09 16:19:18 +11:00
flex-direction: row-reverse;
2018-09-11 04:59:44 +10:00
}
2019-05-19 17:39:30 +10:00
#bottom #dambox {
2019-11-09 16:19:18 +11:00
width: 300px;
margin-right: 10px;
2018-09-11 04:59:44 +10:00
}
2019-05-19 17:39:30 +10:00
#bottom.reverse #dambox {
2019-11-09 16:19:18 +11:00
margin-right: 0;
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
#bottom .trendtag {
2019-11-09 16:19:18 +11:00
height: 40px;
2018-03-13 04:41:38 +11:00
}
2019-10-03 02:37:33 +10:00
#bottom #group,
#demogroup {
2019-11-09 16:19:18 +11:00
margin-right: 40px;
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
#bottom .leftside {
2019-11-09 16:19:18 +11:00
display: flex;
2018-03-13 04:41:38 +11:00
}
2019-09-08 02:33:01 +10:00
#tips {
2019-11-09 16:19:18 +11:00
display: flex;
align-items: center;
2019-08-26 22:06:07 +10:00
}
2019-05-19 17:39:30 +10:00
#bottom #tips img {
2019-11-09 16:19:18 +11:00
vertical-align: -3px;
2018-03-13 04:41:38 +11:00
}
2019-10-03 02:37:33 +10:00
#bottom a,
#demogroup a {
2019-11-09 16:19:18 +11:00
color: var(--color);
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
#bottom i {
2019-11-09 16:19:18 +11:00
font-size: 30px;
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
.exc-icons {
2019-11-09 16:19:18 +11:00
font-size: 20px;
2019-01-26 14:23:53 +11:00
}
2019-05-19 17:39:30 +10:00
.exc-chb {
2019-11-09 16:19:18 +11:00
padding-left: 24px !important;
2019-01-26 14:23:53 +11:00
}
2019-09-13 00:25:27 +10:00
.btnsgroup {
2019-11-09 16:19:18 +11:00
border: 1px solid;
padding-top: 1px;
padding-left: 5px;
padding-right: 5px;
margin-right: 15px;
border-radius: 5px;
2019-11-27 22:53:46 +11:00
height: 35px;
}
.bgReport {
height: 34px;
padding-top: 0.45rem;
text-decoration: underline;
padding-left: 5px;
padding-right: 5px;
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
#spot-box {
2019-11-09 16:19:18 +11:00
display: grid;
grid-template-columns: 40px 30px 2.5fr 1fr 60px;
grid-template-rows: 22px 20px;
grid-template-areas: 'cover name name artist refresh' 'cover progress progress progress time';
}
#spot-refresh {
grid-area: refresh;
}
#spot-cover {
grid-area: cover;
}
#spot-name {
grid-area: name;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
line-height: 25px;
}
#spot-artist {
grid-area: artist;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
line-height: 25px;
2018-07-29 17:37:54 +10:00
}
2019-05-19 17:39:30 +10:00
#spot-img {
2019-11-09 16:19:18 +11:00
width: 90%;
2018-07-29 17:37:54 +10:00
}
2019-11-09 16:19:18 +11:00
#spot-time {
grid-area: time;
}
.progress {
grid-area: progress;
width: 100%;
2018-07-29 17:37:54 +10:00
}
2019-05-19 17:39:30 +10:00
.btnsgroup .grouptitle {
2019-11-09 16:19:18 +11:00
font-family: Open Sans;
font-size: 15px;
2018-07-28 07:25:12 +10:00
}
@media screen and (max-width: 890px) {
2019-11-09 16:19:18 +11:00
.btnsgroup .grouptitle {
display: none;
}
#tips,
#tips-menu {
display: none;
}
2018-01-28 23:22:43 +11:00
}
2019-08-21 01:02:29 +10:00
iframe,
.cvo video {
2019-11-09 16:19:18 +11:00
max-width: 100%;
max-height: 300px;
2018-01-29 00:29:23 +11:00
}
2018-02-18 05:44:20 +11:00
@media screen and (max-width: 600px) {
2019-11-09 16:19:18 +11:00
.mobile #timeline-container {
display: block;
overflow-x: hidden;
}
.mobile .box {
width: 100vw;
}
.mobile .fixed-action-btn {
position: absolute;
}
2018-02-18 05:44:20 +11:00
}
2018-01-28 23:22:43 +11:00
.box {
2019-11-09 16:19:18 +11:00
overflow: hidden;
min-width: 300px;
flex: 1;
border-top: none;
display: flex;
flex-direction: column;
margin-bottom: -10px;
2019-03-21 06:42:47 +11:00
}
2019-05-19 17:39:30 +10:00
.img_FTL {
2019-11-09 16:19:18 +11:00
display: none;
2019-04-03 01:42:25 +11:00
}
2019-05-19 17:39:30 +10:00
.bbcode_FTL {
2019-11-09 16:19:18 +11:00
display: none;
2019-04-03 01:42:25 +11:00
}
2019-05-19 19:31:47 +10:00
.marquee {
2019-11-09 16:19:18 +11:00
width: 100%;
padding: 0.5em 0;
overflow: hidden;
margin-bottom: 0;
position: relative;
2019-05-19 19:31:47 +10:00
}
.marquee .bbcode-marq-lateral {
2019-11-09 16:19:18 +11:00
margin: 0;
padding-left: 100%;
display: inline-block;
white-space: nowrap;
animation-name: marquee;
animation-timing-function: linear;
animation-duration: 10s;
animation-iteration-count: infinite;
2019-05-19 19:31:47 +10:00
}
@keyframes marquee {
2019-11-09 16:19:18 +11:00
0% {
-webkit-transform: translate(0);
transform: translate(0);
}
99%,
100% {
-webkit-transform: translate(-100%);
transform: translate(-100%);
}
2019-05-19 19:31:47 +10:00
}
2019-05-19 17:39:30 +10:00
.boxIn {
2019-11-09 16:19:18 +11:00
display: flex;
flex-direction: column;
height: 100%;
border: thin solid gray;
overflow: hidden;
border-top: none;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
.box .pin,
#his-data .pin {
2019-11-09 16:19:18 +11:00
display: none;
2018-03-11 01:22:59 +11:00
}
2019-05-19 17:39:30 +10:00
.user {
2019-11-09 16:19:18 +11:00
cursor: text;
font-size: 1.1rem;
2018-03-14 17:52:55 +11:00
}
2019-05-19 17:39:30 +10:00
.emoji,
.emoji-img {
2019-11-09 16:19:18 +11:00
width: 15px;
2018-05-26 02:37:35 +10:00
}
2019-05-19 17:39:30 +10:00
.area-toot .emoji,
.area-toot .emoji-img {
2019-11-09 16:19:18 +11:00
width: 20px;
vertical-align: middle;
margin: -1px 0;
2019-05-19 17:39:30 +10:00
}
2019-10-03 02:37:33 +10:00
.bigemoji {
2019-11-09 16:19:18 +11:00
width: 60px !important;
2019-10-03 02:37:33 +10:00
}
2019-05-19 17:39:30 +10:00
.faicon_FTL {
2019-11-09 16:19:18 +11:00
display: none;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
.tl-box {
2019-11-09 16:19:18 +11:00
position: relative;
flex: 1;
overflow-y: scroll;
overflow-x: hidden;
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
.additional {
2019-11-09 16:19:18 +11:00
overflow-x: scroll;
width: 100%;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
.media-filter .nomedia {
2019-11-09 16:19:18 +11:00
display: none;
2018-02-18 03:44:03 +11:00
}
2019-05-19 17:39:30 +10:00
.bt-filter .shared {
2019-11-09 16:19:18 +11:00
display: none;
2019-02-28 04:02:23 +11:00
}
2019-05-19 17:39:30 +10:00
.except-bt-filter .unshared {
2019-11-09 16:19:18 +11:00
display: none;
2019-03-06 19:08:48 +11:00
}
2018-01-28 23:22:43 +11:00
.cvo {
2019-11-09 16:19:18 +11:00
user-select: text;
padding-left: 5px;
border-bottom: 0.5px solid;
padding-right: 2px;
word-break: break-word;
width: 100%;
display: grid;
grid-template-columns: 43px 2fr 1fr;
grid-template-rows: auto 1.6rem 1fr auto 2.5rem;
grid-template-areas: 'notice notice notice' 'icon display_name display_name' 'space toot toot' 'space additional additional' 'vis actions side';
2019-05-19 17:39:30 +10:00
}
2019-11-09 16:19:18 +11:00
.hide-actions {
grid-template-rows: auto 1.6rem 1fr auto 0;
2019-10-20 15:27:19 +11:00
}
2019-11-09 16:19:18 +11:00
.hide-actions .area-actions {
display: none;
2019-10-20 15:27:19 +11:00
}
2019-11-09 16:19:18 +11:00
.hide-actions .area-vis {
display: none;
2019-10-20 15:27:19 +11:00
}
2019-11-09 16:19:18 +11:00
.hide-actions .area-side {
display: none;
2019-10-20 15:27:19 +11:00
}
2019-05-19 17:39:30 +10:00
.cvo h1,
.cvo h2,
.cvo h3,
.cvo h4,
.cvo h5,
.cvo h6 {
2019-11-09 16:19:18 +11:00
margin: 0;
2018-09-12 02:49:41 +10:00
}
2018-02-18 16:43:11 +11:00
.area-notice {
2019-11-09 16:19:18 +11:00
margin: 2px;
grid-area: notice;
2018-02-18 16:43:11 +11:00
}
.area-icon {
2019-11-09 16:19:18 +11:00
width: 40px;
margin: 2px;
grid-area: icon;
2018-02-18 16:43:11 +11:00
}
.area-display_name {
2019-11-09 16:19:18 +11:00
user-select: text;
height: 1.5em;
margin: 2px;
margin-left: 5px;
overflow: hidden;
grid-area: display_name;
white-space: nowrap;
text-overflow: ellipsis;
display: flex;
justify-content: space-between;
width: 100%;
flex-wrap: nowrap;
2019-05-19 17:39:30 +10:00
}
.flex-name {
2019-11-09 16:19:18 +11:00
max-width: calc(100% - 60px);
overflow: hidden;
text-overflow: ellipsis;
2018-05-26 02:37:35 +10:00
}
2018-02-18 16:43:11 +11:00
.area-toot {
2019-11-09 16:19:18 +11:00
cursor: text;
user-select: auto;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
grid-area: toot;
2018-02-18 16:43:11 +11:00
}
.area-date_via {
2019-11-09 16:19:18 +11:00
text-align: right;
grid-area: date_via;
2018-02-18 16:43:11 +11:00
}
2018-02-24 03:02:44 +11:00
.area-additional {
2019-11-09 16:19:18 +11:00
cursor: text;
user-select: auto;
grid-area: additional;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
2019-09-08 02:33:01 +10:00
.acct-note p {
2019-11-09 16:19:18 +11:00
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
2019-08-31 01:09:37 +10:00
}
2019-09-01 00:35:18 +10:00
.area-toot.acct-note p:not(:first-child) {
2019-11-09 16:19:18 +11:00
display: none;
2019-08-31 01:09:37 +10:00
}
2019-09-01 00:35:18 +10:00
.area-toot.acct-note p:first-child:after {
2019-11-09 16:19:18 +11:00
content: '...';
color: var(--gray);
2019-08-31 01:09:37 +10:00
}
2018-02-24 03:02:44 +11:00
2018-02-18 16:43:11 +11:00
.area-actions {
2019-11-09 16:19:18 +11:00
padding: 0;
margin: 0;
top: -5px;
position: relative;
display: flex;
justify-content: space-around;
max-width: 100%;
grid-area: actions;
2018-02-18 16:43:11 +11:00
}
2018-05-02 14:14:03 +10:00
.area-vis {
2019-11-09 16:19:18 +11:00
margin: 2px;
grid-area: vis;
text-align: center;
2019-05-19 17:39:30 +10:00
}
2018-07-28 07:25:12 +10:00
.area-side {
2019-11-09 16:19:18 +11:00
display: flex;
top: -5px;
position: relative;
justify-content: flex-end;
margin: 2px;
grid-area: side;
2018-07-28 07:25:12 +10:00
}
2019-10-20 15:27:19 +11:00
2019-09-08 02:33:01 +10:00
.quote-inline {
2019-11-09 16:19:18 +11:00
display: none;
2019-09-08 02:33:01 +10:00
}
2019-05-19 17:39:30 +10:00
.quote-renote {
2019-11-09 16:19:18 +11:00
display: grid;
grid-template-columns: 43px 2fr 25px;
grid-template-areas: 'ricon ruser rdet' 'ricon rtext rdet';
border: 1px solid;
margin-top: 3px;
padding: 1px;
border-radius: 3px;
2019-04-15 01:45:04 +10:00
}
2019-05-19 17:39:30 +10:00
.renote-icon {
2019-11-09 16:19:18 +11:00
grid-area: ricon;
padding: 5px;
2019-09-08 02:33:01 +10:00
}
.renote-details {
2019-11-09 16:19:18 +11:00
grid-area: rdet;
2019-04-15 01:45:04 +10:00
}
2019-05-19 17:39:30 +10:00
.renote-icon img {
2019-11-09 16:19:18 +11:00
width: 100%;
2019-04-15 01:45:04 +10:00
}
2019-05-19 17:39:30 +10:00
.renote-user {
2019-11-09 16:19:18 +11:00
grid-area: ruser;
2019-04-15 01:45:04 +10:00
}
2019-05-19 17:39:30 +10:00
.renote-text {
2019-11-09 16:19:18 +11:00
grid-area: rtext;
2019-04-15 01:45:04 +10:00
}
2019-05-19 17:39:30 +10:00
.btn-flat {
2019-11-09 16:19:18 +11:00
color: var(--color);
2019-03-06 22:56:39 +11:00
}
2019-05-19 17:39:30 +10:00
.area-side i {
2019-11-09 16:19:18 +11:00
margin-left: 10px;
2018-07-28 07:25:12 +10:00
}
2019-05-19 17:39:30 +10:00
.viabadge {
2019-11-09 16:19:18 +11:00
margin-top: 10px;
2018-07-28 07:25:12 +10:00
}
2019-05-19 17:39:30 +10:00
.action i {
2019-11-09 16:19:18 +11:00
font-size: 1.2rem;
margin-right: 2px;
2019-03-06 22:56:39 +11:00
}
2019-05-19 17:39:30 +10:00
.action .fa-quote-right {
2019-11-09 16:19:18 +11:00
margin-top: 2px;
2019-03-13 02:51:07 +11:00
}
2019-05-19 17:39:30 +10:00
.actct {
2019-11-09 16:19:18 +11:00
color: var(--beforehover);
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
.actct:hover {
2019-11-09 16:19:18 +11:00
color: var(--color);
transition: 0.5s;
2018-12-09 05:46:01 +11:00
}
2019-11-16 05:42:23 +11:00
#contextWrap {
position: fixed;
width: 199vw;
height: 100vh;
2019-11-16 15:36:16 +11:00
z-index: 100;
2019-11-16 05:42:23 +11:00
}
.contextMenu {
position: fixed;
background-color: var(--box);
z-index: 9999;
border-radius: 5px;
padding: 5px;
}
.contextMenu.bottom:before {
content: '';
position: absolute;
top: 100%;
right: 27px;
border: 15px solid transparent;
border-top: 15px solid var(--box);
}
.contextMenu.top:before {
content: '';
position: absolute;
top: -30px;
right: 27px;
border: 15px solid transparent;
border-bottom: 15px solid var(--box);
}
.contextMenu .btn-flat {
text-transform: none !important;
2019-11-16 06:58:37 +11:00
width: 100%;
2019-11-16 15:36:16 +11:00
text-align: left;
2019-11-16 05:42:23 +11:00
}
2018-12-09 05:46:01 +11:00
2018-01-28 23:22:43 +11:00
.gray {
2019-11-09 16:19:18 +11:00
color: var(--gray);
2018-01-28 23:22:43 +11:00
}
.sml {
2019-11-09 16:19:18 +11:00
font-size: 0.8em;
2018-01-28 23:22:43 +11:00
}
.toot {
2019-11-09 16:19:18 +11:00
overflow: hide;
2018-01-28 23:22:43 +11:00
}
.toot-img {
2019-11-09 16:19:18 +11:00
object-fit: cover;
width: 100%;
2018-01-28 23:22:43 +11:00
}
.toot img:not(.emoji-img) {
2019-11-09 16:19:18 +11:00
max-width: 100%;
max-height: 300px;
2018-01-28 23:22:43 +11:00
}
.cbadge {
2019-11-09 16:19:18 +11:00
display: inline-block;
min-width: 10px;
max-width: 100px;
padding: 3px 7px;
font-size: 0.8em;
margin-right: 5px;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #777;
border-radius: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
height: calc(0.8em + 8px);
user-select: none;
2018-01-28 23:22:43 +11:00
}
2018-05-26 02:37:35 +10:00
.cbadge-hover {
2019-11-09 16:19:18 +11:00
color: var(--color);
background-color: transparent;
2018-05-26 02:37:35 +10:00
}
.cbadge-hover:hover {
2019-11-09 16:19:18 +11:00
color: #fff;
background-color: #777;
2018-05-26 02:37:35 +10:00
}
2018-01-28 23:22:43 +11:00
p {
2019-11-09 16:19:18 +11:00
margin: 0;
margin-bottom: 0px;
line-height: 20px;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
p:not(:last-child) {
2019-11-09 16:19:18 +11:00
margin-bottom: 10px;
2018-03-14 05:31:31 +11:00
}
2018-01-28 23:22:43 +11:00
.shared {
2019-11-09 16:19:18 +11:00
background-color: var(--shared);
2018-01-28 23:22:43 +11:00
}
2018-03-11 01:22:59 +11:00
.emphasized {
2019-11-09 16:19:18 +11:00
background-color: var(--emphasized);
2018-03-11 01:22:59 +11:00
}
2018-01-28 23:22:43 +11:00
.udg {
2019-11-09 16:19:18 +11:00
cursor: pointer;
2018-01-28 23:22:43 +11:00
}
2018-01-31 03:43:01 +11:00
.notice-box {
2019-11-09 16:19:18 +11:00
top: 0;
background-color: var(--notfbox);
filter: brightness(110%);
position: relative;
margin-right: 10px;
width: 100%;
min-height: 60px;
z-index: 500;
padding: 5px;
display: grid;
grid-template-columns: 40px 1fr 1fr 24px;
grid-template-rows: 30px 30px;
grid-template-areas: 'notice notice_name notice_name a2' 'notice a1 sta a3' 'notf-box notf-box notf-box notf-box';
2018-02-25 02:59:53 +11:00
}
2019-05-19 17:39:30 +10:00
.emp {
2019-11-09 16:19:18 +11:00
font-weight: bold;
text-decoration: underline;
2018-03-11 01:22:59 +11:00
}
2018-02-25 02:59:53 +11:00
.area-notice {
2019-11-09 16:19:18 +11:00
grid-area: notice;
2018-02-25 02:59:53 +11:00
}
.area-notice_name {
2019-11-09 16:19:18 +11:00
grid-area: notice_name;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2018-02-25 02:59:53 +11:00
}
.area-notice_acct {
2019-11-09 16:19:18 +11:00
grid-area: notice_acct;
2018-02-25 02:59:53 +11:00
}
.area-a1 {
2019-11-09 16:19:18 +11:00
grid-area: a1;
2018-02-25 02:59:53 +11:00
}
2018-07-28 07:25:12 +10:00
.area-sta {
2019-11-09 16:19:18 +11:00
text-align: center;
grid-area: sta;
2018-07-28 07:25:12 +10:00
}
2018-02-25 02:59:53 +11:00
.area-a2 {
2019-11-09 16:19:18 +11:00
text-align: center;
grid-area: a2;
2018-02-25 02:59:53 +11:00
}
.area-a3 {
2019-11-09 16:19:18 +11:00
text-align: center;
grid-area: a3;
2018-02-25 02:59:53 +11:00
}
2018-02-13 06:16:46 +11:00
.tl-title {
2019-11-09 16:19:18 +11:00
font-family: Open Sans;
2018-02-13 06:16:46 +11:00
}
2018-01-28 23:22:43 +11:00
#tools {
2019-11-09 16:19:18 +11:00
position: fixed;
top: 10px;
right: 10px;
float: right;
2018-01-28 23:22:43 +11:00
}
.setting {
2019-11-09 16:19:18 +11:00
font-size: 0.6rem;
color: gray;
cursor: pointer;
2018-01-28 23:22:43 +11:00
}
#toot-this .details {
2019-11-09 16:19:18 +11:00
display: none;
2018-01-28 23:22:43 +11:00
}
.notf-box {
2019-11-09 16:19:18 +11:00
position: fixed;
right: 70px;
background-color: var(--box);
border: thin solid gray;
z-index: 501;
width: 400px;
padding: 5px;
min-height: 100px;
max-height: 500px;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
.column-hide {
2019-11-09 16:19:18 +11:00
display: none;
overflow: hidden;
height: 0;
2018-08-10 01:18:35 +10:00
}
2019-05-19 17:39:30 +10:00
.prof-img {
2019-11-09 16:19:18 +11:00
border-radius: 3px;
2018-08-21 04:26:14 +10:00
}
2019-05-19 17:39:30 +10:00
.notf-icon {
2019-11-09 16:19:18 +11:00
position: relative;
top: -20px;
width: 20px;
left: 20px;
2018-08-21 04:26:14 +10:00
}
2018-01-28 23:22:43 +11:00
.notf-indv-box {
2019-11-09 16:19:18 +11:00
width: 100%;
max-height: 400px;
overflow-y: scroll;
overflow-x: hidden;
border: thin solid gray;
border-bottom: 2px solid white;
grid-area: notf-box;
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12),
0 5px 5px -3px rgba(0, 0, 0, 0.3), 0px -10px 10px 0px rgba(0, 0, 0, 0.3) inset;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
.type-b {
2019-11-09 16:19:18 +11:00
display: none;
2018-05-02 14:14:03 +10:00
}
2019-05-19 17:39:30 +10:00
.modal-footer {
2019-11-09 16:19:18 +11:00
background-color: var(--box);
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
.ballons {
2019-11-09 16:19:18 +11:00
background-color: var(--box);
position: absolute;
bottom: 0px;
right: 0px;
2018-07-17 01:39:06 +10:00
}
2019-05-19 17:39:30 +10:00
.toot a span.ellipsis:after {
2019-11-09 16:19:18 +11:00
content: '...';
2018-07-17 01:39:06 +10:00
}
2019-05-19 17:39:30 +10:00
.toot a:not(.mention) span:last-of-type {
2019-11-09 16:19:18 +11:00
/*display: none;*/
2018-07-22 23:03:46 +10:00
}
2019-05-19 17:39:30 +10:00
.tl-box .via-hide {
2019-11-09 16:19:18 +11:00
display: none;
}
2019-05-19 17:39:30 +10:00
.vote {
2019-11-09 16:19:18 +11:00
width: 100%;
border: 1px solid;
margin-top: 3px;
padding: 1px;
border-radius: 3px;
2019-11-26 03:02:15 +11:00
overflow: hidden;
2019-11-26 03:26:17 +11:00
position: relative;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-2x > .emoji-img {
2019-11-09 16:19:18 +11:00
width: 36px !important;
height: 36px !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-3x > .emoji-img {
2019-11-09 16:19:18 +11:00
width: 54px !important;
height: 54px !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-4x > .emoji-img {
2019-11-09 16:19:18 +11:00
width: 72px !important;
height: 72px !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-5x > .emoji-img {
2019-11-09 16:19:18 +11:00
width: 90px !important;
height: 90px !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
#lists-user {
2019-11-09 16:19:18 +11:00
overflow-y: scroll;
overflow-x: hidden;
max-height: 200px;
2019-03-06 19:08:48 +11:00
}
2019-05-19 17:39:30 +10:00
.votebtn {
2019-11-09 16:19:18 +11:00
border: 1px solid;
color: var(--bg);
background-color: var(--beforehover);
cursor: pointer;
width: 50px;
padding: 2px;
display: inline-block;
text-align: center;
margin-top: 5px;
border-radius: 10px;
transition-duration: 0.5s;
2019-03-06 19:08:48 +11:00
}
2019-05-19 17:39:30 +10:00
.votebtn:hover {
2019-11-09 16:19:18 +11:00
background-color: var(--color);
2019-03-06 19:08:48 +11:00
}
2019-11-26 03:02:15 +11:00
.leadPoll {
position: absolute;
background-color: var(--box);
height: 20px;
border-radius: 3px;
}
2019-11-26 03:26:17 +11:00
.lpAnime {
animation-duration: 1s;
2019-11-27 22:53:46 +11:00
animation-name: fadeInLeft;
2019-11-26 03:26:17 +11:00
}
2019-11-26 03:02:15 +11:00
.onPoll {
position: relative;
}
.maxVoter {
background-color: var(--shared);
}
2019-11-26 03:26:17 +11:00
.ownMark img {
width: 1.2rem !important;
2019-11-27 22:53:46 +11:00
position: relative;
top: -1px;
margin-left: 5px !important;
2019-11-26 03:26:17 +11:00
}
2019-05-19 17:39:30 +10:00
.jump {
2019-11-09 16:19:18 +11:00
display: inline-block;
animation: jump 0.75s linear infinite;
2019-04-11 03:59:13 +10:00
}
2019-05-19 17:39:30 +10:00
.img-link {
2019-11-09 16:19:18 +11:00
position: relative;
display: block;
margin-right: 1px;
float: left;
overflow: hidden;
2019-05-07 23:43:30 +10:00
}
2019-05-19 17:39:30 +10:00
.nsfw-media {
2019-11-09 16:19:18 +11:00
position: absolute;
top: 0;
right: 0;
background-color: black;
color: white;
2019-05-07 23:43:30 +10:00
}
2019-05-19 17:39:30 +10:00
.img-link img {
2019-11-09 16:19:18 +11:00
display: block;
width: 100%;
height: 100%;
2019-05-07 23:43:30 +10:00
}
2019-08-21 01:02:29 +10:00
.shared.selectedToot {
2019-11-09 16:19:18 +11:00
background-color: var(--selectedWithShare);
2019-07-12 01:53:55 +10:00
}
2019-08-21 01:02:29 +10:00
.selectedToot {
2019-11-09 16:19:18 +11:00
background-color: var(--selected);
2019-07-12 01:53:55 +10:00
}
2019-08-21 01:02:29 +10:00
audio {
2019-11-09 16:19:18 +11:00
height: 2rem;
2019-06-23 02:20:17 +10:00
}
2019-08-21 01:02:29 +10:00
.translate {
2019-11-09 16:19:18 +11:00
white-space: normal;
2019-07-01 22:46:00 +10:00
}
2019-08-21 01:02:29 +10:00
.cw_btn {
2019-11-09 16:19:18 +11:00
margin: 3px;
background-color: var(--emphasized);
color: var(--color);
padding-left: 3px;
padding-right: 3px;
border-radius: 3px;
border: 1px solid var(--color);
2019-08-21 01:02:29 +10:00
}
.vis-data {
2019-11-09 16:19:18 +11:00
font-size: 1rem !important;
margin: 5px;
user-select: none;
2019-08-21 01:02:29 +10:00
}
2019-04-11 03:59:13 +10:00
@keyframes jump {
2019-11-09 16:19:18 +11:00
0% {
transform: translateY(0);
}
25% {
transform: translateY(-16px);
}
50% {
transform: translateY(0);
}
75% {
transform: translateY(-8px);
}
100% {
transform: translateY(0);
}
2019-04-11 03:59:13 +10:00
}
2019-03-06 19:08:48 +11:00
@keyframes fadeInDown {
2019-11-09 16:19:18 +11:00
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
2019-03-06 19:08:48 +11:00
2019-11-09 16:19:18 +11:00
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
2019-03-06 19:08:48 +11:00
}
@keyframes fadeInLeft {
2019-11-09 16:19:18 +11:00
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
2019-03-06 19:08:48 +11:00
2019-11-09 16:19:18 +11:00
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
2019-03-06 19:08:48 +11:00
}
.box-anime {
2019-11-09 16:19:18 +11:00
/*animation-duration: 1s;
2019-09-14 03:10:02 +10:00
animation-name: fadeInLeft;*/
2019-03-06 19:08:48 +11:00
}
.cvo-anime {
2019-11-09 16:19:18 +11:00
animation-duration: 0.1s;
animation-name: fadeInDown;
2019-03-10 02:03:02 +11:00
}
2019-09-08 02:33:01 +10:00
.urbadge {
2019-11-09 16:19:18 +11:00
line-height: normal;
height: 2rem;
font-size: 1rem;
background-color: #009688;
2019-09-07 02:33:30 +10:00
}
2019-10-03 02:37:33 +10:00
.box .ui-resizable-s {
2019-11-09 16:19:18 +11:00
display: none !important;
2019-09-14 03:10:02 +10:00
}
2019-10-03 02:37:33 +10:00
.boxIn .ui-resizable-e {
2019-11-09 16:19:18 +11:00
display: none !important;
2019-09-14 03:10:02 +10:00
}
2019-10-03 02:37:33 +10:00
.boxIn .ui-resizable-s {
2019-11-09 16:19:18 +11:00
display: block !important;
2019-09-14 03:10:02 +10:00
}
2019-10-03 02:37:33 +10:00
.box .ui-resizable-se {
2019-11-09 16:19:18 +11:00
display: none !important;
2019-09-14 03:10:02 +10:00
}