thedesk/app/css/tl.css

154 lines
2.4 KiB
CSS
Raw Normal View History

2018-01-28 23:22:43 +11:00
/*TL CSS(ただしBBCode pulse:master.css/spin:font-awesome*/
#timeline-container {
2018-02-05 01:56:31 +11:00
overflow-x: scroll;
overflow-y: hidden;
2018-01-28 23:22:43 +11:00
display: flex;
width: 100vw;
height: 100vh;
}
2018-01-29 00:29:23 +11:00
iframe {
max-width:100%;
}
2018-01-28 23:22:43 +11:00
.box {
2018-02-05 01:56:31 +11:00
overflow: hidden;
2018-01-28 23:22:43 +11:00
min-width: 300px;
height: 100vh;
flex: 1;
}
2018-01-31 03:43:01 +11:00
.tl-box{ height:calc(100% - 40px); overflow-y:scroll; overflow-x:hidden }
2018-01-28 23:22:43 +11:00
@media screen and (max-width: 600px) {
#timeline-container {
display: block;
overflow-x: hidden;
}
.box {
width: 100vw;
}
.fixed-action-btn {
position: absolute;
}
}
.additional {
overflow-x: scroll;
width: 100%;
}
.cvo {
padding-left: 5px;
padding-right: 2px;
word-break: break-all;
}
.gray {
color: gray;
}
.sml {
font-size: 80%;
}
.toot {
overflow: hide;
}
.toot-img {
object-fit: cover;
width: 100%;
height: 200px;
}
.toot img:not(.emoji-img) {
max-width: 100%;
max-height: 300px;
}
.cbadge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
margin-right: 5px;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #777;
border-radius: 10px;
}
p {
margin: 0;
margin-bottom: 10px;
}
.shared {
background-color: #cfd8dc;
}
.udg {
cursor: pointer;
}
2018-01-31 03:43:01 +11:00
.notice-box {
top: 0;
background-color:white;
2018-01-28 23:22:43 +11:00
display: inline-block;
position: relative;
font-family: Open Sans;
margin-right: 10px;
2018-01-31 03:43:01 +11:00
width:100%;
z-index:1000;
height:60px;
2018-01-28 23:22:43 +11:00
}
#tools {
position: fixed;
top: 10px;
right: 10px;
float: right;
}
.setting {
font-size: 7px;
color: gray;
cursor: pointer;
}
#toot-this .details {
display: none;
}
.notf-box {
position: fixed;
right: 3px;
bottom: 300px;
background-color: white;
border: thin solid gray;
z-index: 1001;
width: 400px;
padding: 5px;
min-height: 100px;
max-height: 500px;
}
.notf-indv-box {
min-height: 100px;
max-height: 400px;
overflow-y: scroll;
overflow-x: hidden;
border: thin solid gray;
}
#src-contents {
min-height: 100px;
max-height: 190px;
overflow-y: scroll;
}
.mention {
color: black;
cursor: text;
}
/*black theme*/
2018-02-05 01:56:31 +11:00
.blacktheme .notf-box {
2018-01-28 23:22:43 +11:00
background-color: #424242;
}
.blacktheme .modal-footer {
background-color: #424242;
}
.blacktheme .btn-flat {
color: white
}
.blacktheme .shared {
background-color: #004d40;
}
.blacktheme .mention {
color: white;
2018-01-31 03:43:01 +11:00
}
.blacktheme .notice-box {
background-color: #333333;
2018-01-28 23:22:43 +11:00
}