thedesk/app/css/tl.css

1009 lines
17 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;
2020-05-15 13:47:01 +10:00
height: calc(100% - 3rem);
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;
2020-05-15 13:47:01 +10:00
overflow: hidden;
2019-11-09 16:19:18 +11:00
bottom: 0;
width: 100vw;
2020-05-15 13:47:01 +10:00
height: 3rem;
padding: 0.23rem;
2019-11-09 16:19:18 +11:00
padding-right: 0;
2020-05-15 13:47:01 +10:00
padding-left: 3rem;
2020-09-09 00:35:30 +10:00
background-color: var(--bottom);
2019-11-09 16:19:18 +11:00
display: flex;
justify-content: space-between;
flex-wrap: wrap;
z-index: 500;
2020-05-15 13:47:01 +10:00
box-shadow: 0.77rem 0 0.77rem, 0.77rem 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;
2020-05-15 13:47:01 +10:00
padding-right: 3rem;
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 {
2020-05-15 13:47:01 +10:00
width: 23rem;
margin-right: 0.76rem;
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 {
2020-05-15 13:47:01 +10:00
height: 3rem;
2018-03-13 04:41:38 +11:00
}
2019-10-03 02:37:33 +10:00
#bottom #group,
#demogroup {
2020-05-15 13:47:01 +10:00
margin-right: 3rem;
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 {
2020-05-15 13:47:01 +10:00
vertical-align: -0.23rem;
2018-03-13 04:41:38 +11:00
}
2019-10-03 02:37:33 +10:00
#bottom a,
#demogroup a {
2020-09-09 00:35:30 +10:00
color: var(--text);
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
#bottom i {
2020-05-15 13:47:01 +10:00
font-size: 2.3rem;
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
.exc-icons {
2020-05-15 13:47:01 +10:00
font-size: 1.53rem;
2019-01-26 14:23:53 +11:00
}
2019-05-19 17:39:30 +10:00
.exc-chb {
2020-05-15 13:47:01 +10:00
padding-left: 1.84rem !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;
2020-05-15 13:47:01 +10:00
padding-left: 0.4rem;
padding-right: 0.4rem;
margin-right: 1.15rem;
border-radius: 0.4rem;
height: 2.7rem;
2019-11-27 22:53:46 +11:00
}
.bgReport {
2020-05-15 13:47:01 +10:00
height: 2.61rem;
2019-11-27 22:53:46 +11:00
padding-top: 0.45rem;
text-decoration: underline;
2020-05-15 13:47:01 +10:00
padding-left: 0.4rem;
padding-right: 0.4rem;
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;
2020-05-15 13:47:01 +10:00
grid-template-columns: 3rem 2.3rem 2.5fr 1fr 4.6rem;
grid-template-rows: 1.7rem 1.5rem;
2020-09-26 22:02:48 +10:00
grid-template-areas: 'cover name name name refresh' 'cover progress progress progress time';
2019-11-09 16:19:18 +11:00
}
#spot-refresh {
grid-area: refresh;
}
#spot-cover {
grid-area: cover;
}
#spot-name {
grid-area: name;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
2020-05-15 13:47:01 +10:00
line-height: 1.92rem;
2019-11-09 16:19:18 +11: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;
2020-09-26 22:02:48 +10:00
line-height: 0.5rem;
2019-11-09 16:19:18 +11:00
}
.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;
2020-05-15 13:47:01 +10:00
font-size: 1.1rem;
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%;
2020-05-15 13:47:01 +10:00
max-height: 23rem;
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;
2020-09-04 00:17:01 +10:00
min-width: 300px;
max-width: 600px;
2019-11-09 16:19:18 +11:00
flex: 1;
border-top: none;
display: flex;
flex-direction: column;
2020-05-15 13:47:01 +10:00
margin-bottom: -0.75rem;
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 {
2020-05-15 13:47:01 +10:00
width: 1.153rem;
2020-09-03 12:20:36 +10:00
height: 1.153rem;
object-fit: cover;
2018-05-26 02:37:35 +10:00
}
2019-05-19 17:39:30 +10:00
.area-toot .emoji,
.area-toot .emoji-img {
2020-05-15 13:47:01 +10:00
width: 1.538rem;
2020-09-04 00:17:01 +10:00
height: 1.538rem;
object-fit: cover;
2019-11-09 16:19:18 +11:00
vertical-align: middle;
margin: -1px 0;
2019-05-19 17:39:30 +10:00
}
2019-10-03 02:37:33 +10:00
.bigemoji {
2020-05-15 13:47:01 +10:00
width: 7.7rem !important;
2019-12-15 01:41:35 +11:00
height: auto !important;
position: relative;
z-index: 9999;
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;
2020-05-15 13:47:01 +10:00
padding-left: 0.4rem;
2019-11-09 16:19:18 +11:00
border-bottom: 0.5px solid;
2020-05-15 13:47:01 +10:00
padding-right: 0.15rem;
2019-11-09 16:19:18 +11:00
word-break: break-word;
width: 100%;
display: grid;
2020-05-15 13:47:01 +10:00
grid-template-columns: 3.3rem 2fr 1fr;
grid-template-rows: auto 1.6rem 1fr auto 1.9rem;
2019-11-09 16:19:18 +11:00
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 {
2020-05-15 13:47:01 +10:00
margin: 0.15rem;
2019-11-09 16:19:18 +11:00
grid-area: notice;
2018-02-18 16:43:11 +11:00
}
.area-icon {
2020-05-15 13:47:01 +10:00
width: 3rem;
margin: 0.15rem;
2019-11-09 16:19:18 +11:00
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.5rem;
2020-05-15 13:47:01 +10:00
margin: 0.15rem;
margin-left: 0.4rem;
2019-11-09 16:19:18 +11:00
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 {
2020-05-15 13:47:01 +10:00
max-width: calc(100% - 4.6rem);
2019-11-09 16:19:18 +11:00
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;
2020-05-15 13:47:01 +10:00
margin-top: 0.4rem;
margin-bottom: 0.4rem;
margin-left: 0.4rem;
2019-11-09 16:19:18 +11:00
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;
display: flex;
justify-content: space-around;
max-width: 100%;
grid-area: actions;
2018-02-18 16:43:11 +11:00
}
.area-actions .btn-flat {
2021-04-18 05:24:52 +10:00
height: 1.3rem;
line-height: 1.3rem;
}
.area-actions .btn-flat,
.area-vis i,
.area-side .btn-flat {
margin: 0;
}
.area-side i {
line-height: initial;
}
2018-05-02 14:14:03 +10:00
.area-vis {
margin: 0.2rem;
2019-11-09 16:19:18 +11:00
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;
2020-05-15 13:47:01 +10:00
top: -0.4rem;
2019-11-09 16:19:18 +11:00
position: relative;
justify-content: flex-end;
2020-05-15 13:47:01 +10:00
margin: 0.15rem;
2019-11-09 16:19:18 +11:00
grid-area: side;
2018-07-28 07:25:12 +10:00
}
2021-04-18 05:24:52 +10:00
.notf-udg-text {
white-space: nowrap;
text-overflow: ellipsis;
word-break: break-word;
overflow: hidden;
max-width: calc(100% - 150px);
display: inline-block;
position: relative;
top: 0.2rem;
2021-04-18 05:24:52 +10:00
}
2019-12-17 03:11:12 +11:00
.cusr {
user-select: text;
2020-05-15 13:47:01 +10:00
padding-left: 0.4rem;
2019-12-17 03:11:12 +11:00
border-bottom: 0.5px solid;
2020-05-15 13:47:01 +10:00
padding-right: 0.15rem;
2019-12-17 03:11:12 +11:00
word-break: break-word;
width: 100%;
display: grid;
2020-05-15 13:47:01 +10:00
grid-template-columns: 3.3rem 2fr 1fr;
2019-12-17 03:11:12 +11:00
grid-template-rows: auto 1.6rem 2fr auto;
grid-template-areas: 'notice notice notice' 'icon display_name display_name' 'space status status' 'space actions actions';
}
.area-status {
grid-area: status;
display: flex;
flex-wrap: wrap;
2020-05-15 13:47:01 +10:00
margin-bottom: 0.75rem;
2019-12-17 03:11:12 +11:00
}
.cusr .cbadge {
2020-05-15 13:47:01 +10:00
margin-top: 0.46rem;
margin-left: 0.46rem;
2019-12-17 03:11:12 +11:00
}
.landing {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
2019-12-17 03:11:12 +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;
2020-05-15 13:47:01 +10:00
grid-template-columns: 3.3rem 2fr 1.92rem;
2019-11-09 16:19:18 +11:00
grid-template-areas: 'ricon ruser rdet' 'ricon rtext rdet';
border: 1px solid;
2020-05-15 13:47:01 +10:00
margin-top: 0.23rem;
2019-11-09 16:19:18 +11:00
padding: 1px;
2020-05-15 13:47:01 +10:00
border-radius: 0.23rem;
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;
2020-05-15 13:47:01 +10:00
padding: 0.4rem;
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 {
2020-09-09 00:35:30 +10:00
color: var(--text);
2019-03-06 22:56:39 +11:00
}
.sublink {
font-size: 1.4rem !important;
position: relative;
top: 0.4rem;
cursor: pointer;
}
2019-05-19 17:39:30 +10:00
.area-side i {
2020-05-15 13:47:01 +10:00
margin-left: 0.75rem;
2018-07-28 07:25:12 +10:00
}
2019-05-19 17:39:30 +10:00
.viabadge {
2020-05-15 13:47:01 +10:00
margin-top: 0.75rem;
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;
2020-05-15 13:47:01 +10:00
margin-right: 0.15rem;
2019-03-06 22:56:39 +11:00
}
.action li i {
margin-right: 0.5rem;
}
2019-05-19 17:39:30 +10:00
.action .fa-quote-right {
2020-05-15 13:47:01 +10:00
margin-top: 0.15rem;
2019-03-13 02:51:07 +11:00
}
2020-09-07 20:06:57 +10:00
.actct {
color: var(--beforehover);
}
.actct:hover {
2020-09-09 00:35:30 +10:00
color: var(--text);
2020-09-07 20:06:57 +10:00
transition: 0.5s;
}
2020-09-07 17:36:25 +10:00
.contextMenu.dropdown-content {
padding-top: 5px;
overflow-y: hidden;
left: calc(100% - 200px) !important;
width: 200px !important;
2019-11-16 05:42:23 +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%;
2020-05-15 13:47:01 +10:00
max-height: 23rem;
2018-01-28 23:22:43 +11:00
}
.cbadge {
2019-11-09 16:19:18 +11:00
display: inline-block;
2020-05-15 13:47:01 +10:00
min-width: 0.76rem;
max-width: 7.7rem;
padding: 0.23rem 0.5rem;
2019-11-09 16:19:18 +11:00
font-size: 0.8em;
2020-05-15 13:47:01 +10:00
margin-right: 0.4rem;
2019-11-09 16:19:18 +11:00
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #777;
2020-05-15 13:47:01 +10:00
border-radius: 0.75rem;
2019-11-09 16:19:18 +11:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2020-05-15 13:47:01 +10:00
height: calc(0.8em + 0.6rem);
2019-11-09 16:19:18 +11:00
user-select: none;
2018-01-28 23:22:43 +11:00
}
2018-05-26 02:37:35 +10:00
.cbadge-hover {
2020-09-09 00:35:30 +10:00
color: var(--text);
2019-11-09 16:19:18 +11:00
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;
2020-05-15 13:47:01 +10:00
line-height: 1.53rem;
2018-01-28 23:22:43 +11:00
}
2019-05-19 17:39:30 +10:00
p:not(:last-child) {
2020-05-15 13:47:01 +10:00
margin-bottom: 0.76rem;
2018-03-14 05:31:31 +11:00
}
2018-01-28 23:22:43 +11:00
.shared {
2020-09-09 00:35:30 +10:00
background-color: var(--accent);
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;
2020-09-09 00:35:30 +10:00
background-color: var(--subcolor);
2019-11-09 16:19:18 +11:00
filter: brightness(110%);
position: relative;
2020-05-15 13:47:01 +10:00
margin-right: 0.7rem;
2019-11-09 16:19:18 +11:00
width: 100%;
2020-05-15 13:47:01 +10:00
min-height: 4.6rem;
2019-11-09 16:19:18 +11:00
z-index: 500;
2020-05-15 13:47:01 +10:00
padding: 0.4rem;
2019-11-09 16:19:18 +11:00
display: grid;
2020-05-15 13:47:01 +10:00
grid-template-columns: 3rem 5rem 1fr 1.8rem;
grid-template-rows: 2.3rem 2.3rem;
2019-11-09 16:19:18 +11:00
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
}
.small-header.notice-box {
min-height: 2rem;
grid-template-columns: 2.3rem 1fr 5rem 2rem 2rem;
grid-template-rows: 1.8rem;
grid-template-areas: 'notice notice_name a1 a3 a2';
}
.small-header.has-notf.notice-box {
min-height: 2rem;
grid-template-columns: 2.3rem 1fr 8rem 5rem 2rem 2rem;
grid-template-rows: 1.8rem;
grid-template-areas: 'notice notice_name sta a1 a3 a2';
}
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
}
2021-04-18 05:28:10 +10:00
.rotate-90 {
transform: rotate(90deg);
}
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
}
.small-header .area-notice {
margin: 0;
}
.small-header .area-sta {
display: none;
}
.small-header.has-notf .area-sta {
overflow-x: scroll;
overflow-y: hidden;
height: 2rem;
width: 8rem;
display: flex;
}
.small-header .area-sta::-webkit-scrollbar {
height: 5px;
}
#tagContextMenu {
position: absolute;
top: 0;
left: 0;
background-color: var(--subcolor);
z-index: 2;
border-radius: 0.4rem;
}
#tagContextMenu a {
display: block;
color: var(--text);
padding-left: 0.5rem;
padding-right: 0.5rem;
}
#tagContextMenu a:hover {
background-color: var(--selected);
}
.firstTCM {
margin-top: 0.4rem;
}
.lastTCM {
margin-bottom: 0.4rem;
}
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 {
display: none;
}
.has-notf .area-sta {
display: block;
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;
2020-05-15 13:47:01 +10:00
top: 0.76rem;
right: 0.76rem;
2019-11-09 16:19:18 +11:00
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;
2020-05-15 13:47:01 +10:00
right: 5.4rem;
2020-09-09 00:35:30 +10:00
background-color: var(--subcolor);
2019-11-09 16:19:18 +11:00
border: thin solid gray;
z-index: 501;
2020-05-15 13:47:01 +10:00
width: 30rem;
padding: 0.4rem;
min-height: 7.7rem;
max-height: 38.4rem;
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 {
2020-05-15 13:47:01 +10:00
border-radius: 0.23rem;
width: 3rem;
}
.prof-img-sml {
width: 1.5rem;
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;
2020-05-15 13:47:01 +10:00
top: -1.53rem;
width: 1.5rem;
left: 1.5rem;
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%;
2020-05-15 13:47:01 +10:00
max-height: 30.7rem;
2019-11-09 16:19:18 +11:00
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
}
2020-09-08 19:50:05 +10:00
.notf-indv-box label span {
padding-left: 23px !important;
margin-right: 5px;
}
2021-04-18 05:24:52 +10:00
.columnSettings {
display: flex;
flex-wrap: wrap;
}
2020-09-08 19:50:05 +10:00
.notf-indv-box .setting {
font-size: 1rem;
width: calc(25% - 6px);
margin: 3px;
height: 100px;
text-align: center;
display: flex;
flex-direction: column;
padding-top: 17px;
border: 1px solid;
border-radius: 5px;
2021-04-18 05:24:52 +10:00
}
.notf-indv-box .setting:hover {
color: var(--text);
2020-09-08 19:50:05 +10:00
}
.notf-exclude-btn {
border: 1px solid;
}
2020-09-08 19:50:05 +10:00
.notf-exclude-btn:hover {
background-color: inherit !important;
filter: brightness(70%);
2020-09-08 19:50:05 +10: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 {
2020-09-09 00:35:30 +10:00
background-color: var(--subcolor);
2018-03-13 04:41:38 +11:00
}
2019-05-19 17:39:30 +10:00
.ballons {
2020-09-09 00:35:30 +10:00
background-color: var(--subcolor);
2019-11-09 16:19:18 +11:00
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;
2020-05-15 13:47:01 +10:00
margin-top: 0.23rem;
2019-11-09 16:19:18 +11:00
padding: 1px;
2020-05-15 13:47:01 +10:00
border-radius: 0.23rem;
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
}
2021-04-18 05:24:52 +10:00
.dropdown-content li {
padding-top: 0.4rem;
2021-04-18 05:24:52 +10:00
}
.dropdown-content li > a, .dropdown-content li > span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2019-05-19 17:39:30 +10:00
.fa-2x > .emoji-img {
2020-05-15 13:47:01 +10:00
width: 2.3rem !important;
height: 2.3rem !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-3x > .emoji-img {
2020-05-15 13:47:01 +10:00
width: 4.15rem !important;
height: 4.15rem !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-4x > .emoji-img {
2020-05-15 13:47:01 +10:00
width: 4.6rem !important;
height: 4.6rem !important;
2018-09-17 21:55:00 +10:00
}
2019-05-19 17:39:30 +10:00
.fa-5x > .emoji-img {
2020-05-15 13:47:01 +10:00
width: 6.9rem !important;
height: 6.9rem !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;
2020-05-15 13:47:01 +10:00
max-height: 15.4rem;
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;
2020-05-15 13:47:01 +10:00
width: 3.8rem;
2020-06-13 02:33:30 +10:00
height: 1.7rem;
2019-11-09 16:19:18 +11:00
display: inline-block;
text-align: center;
2020-05-15 13:47:01 +10:00
margin-top: 0.38rem;
border-radius: 0.75rem;
2019-11-09 16:19:18 +11:00
transition-duration: 0.5s;
2019-03-06 19:08:48 +11:00
}
2019-05-19 17:39:30 +10:00
.votebtn:hover {
2020-09-09 00:35:30 +10:00
background-color: var(--text);
2019-03-06 19:08:48 +11:00
}
2019-11-26 03:02:15 +11:00
.leadPoll {
position: absolute;
2020-09-09 00:35:30 +10:00
background-color: var(--subcolor);
2020-05-15 13:47:01 +10:00
height: 1.5rem;
border-radius: 0.23rem;
2019-11-26 03:02:15 +11:00
}
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(--emphasized);
filter: brightness(120%);
2019-11-26 03:02:15 +11:00
}
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;
2020-05-15 13:47:01 +10:00
margin-left: 0.38rem !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
}
.fav_ct,
.rt_ct,
.rep_ct {
2020-05-23 14:54:51 +10:00
font-size: 1.1rem;
}
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 {
2020-05-15 13:47:01 +10:00
margin: 0.23rem;
2019-11-09 16:19:18 +11:00
background-color: var(--emphasized);
2020-09-09 00:35:30 +10:00
color: var(--text);
2020-05-15 13:47:01 +10:00
padding-left: 0.23rem;
padding-right: 0.23rem;
border-radius: 0.23rem;
2020-09-09 00:35:30 +10:00
border: 1px solid var(--text);
user-select: none;
2019-08-21 01:02:29 +10:00
}
.vis-data {
2019-11-09 16:19:18 +11:00
font-size: 1rem !important;
2020-05-15 13:47:01 +10:00
margin: 0.4rem;
2019-11-09 16:19:18 +11:00
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
}
.small-header .top-icon {
font-size: 2rem !important;
padding-top: 0%;
}
.top-icon {
font-size: 40px !important;
padding-top: 25%;
}
.announcement {
2020-05-15 13:47:01 +10:00
padding: 0.38rem;
border-bottom: 1px solid;
}
.announReaction {
2020-05-15 13:47:01 +10:00
width: 2.7rem;
height: 1.7rem;
font-size: 1.1rem;
2020-05-15 13:47:01 +10:00
margin: 0.23rem;
cursor: pointer;
border: solid 1px;
2020-05-15 13:47:01 +10:00
padding-left: 0.15rem;
2020-09-09 00:35:30 +10:00
background-color: var(--subcolor);
2020-05-15 13:47:01 +10:00
border-radius: 0.15rem;
}
.announReaction img {
position: relative;
2020-05-15 13:47:01 +10:00
top: 0.23rem;
}
.announReaction.reactioned {
background-color: var(--emphasized);
}
.announReaction.add {
2020-05-15 13:47:01 +10:00
width: 1.46rem;
}
.reactionsPack {
display: flex;
}