thedesk/app/css/post.css

89 lines
1.2 KiB
CSS
Raw Normal View History

2018-01-28 21:22:43 +09:00
/*トゥートボックス向けCSS*/
#post-box {
2018-01-31 01:43:01 +09:00
position: fixed;
2018-03-27 11:39:35 +09:00
right: 78px;
2018-01-28 21:22:43 +09:00
bottom: 3px;
2018-07-07 02:51:48 +09:00
background-color: var(--postbox);
2018-01-28 21:22:43 +09:00
border: thin solid gray;
2018-03-14 15:52:55 +09:00
z-index: 500;
2018-05-02 13:14:03 +09:00
width: 300px;
min-width:300px;
2018-01-28 21:22:43 +09:00
max-width:100%;
padding: 5px;
}
.cancel {
2018-02-18 01:44:03 +09:00
font-size: 0.5rem;
2018-01-28 21:22:43 +09:00
color: gray;
cursor: pointer;
2018-05-02 13:14:03 +09:00
position: absolute;
width: 60px;
right: 0px;
2018-01-28 21:22:43 +09:00
}
.more-show {
display: none;
}
#drag {
width: 100%;
height: 100px;
}
#post-btn {
display: none;
}
#vis {
text-transform: capitalize;
}
#cw-text {
display: none;
}
.cw {
display: none;
}
.sensitive {
filter: blur(50px);
}
#emoji {
position: fixed;
bottom: 120px;
right: 20px;
width: 300px;
2018-03-20 13:55:25 +09:00
height: 440px;
2018-03-14 15:52:55 +09:00
z-index: 502;
2018-01-28 21:22:43 +09:00
padding: 5px;
}
#emoji-list {
width: 100%;
2018-03-20 13:55:25 +09:00
height: calc(100% - 190px);
2018-01-28 21:22:43 +09:00
overflow-y: scroll;
}
#preview-field {
display: none;
}
2018-03-13 02:41:38 +09:00
#default-emoji a{
color:white;
2018-03-31 11:39:06 +09:00
margin-right:2px;
2018-03-13 02:41:38 +09:00
}
2018-04-16 22:58:14 +09:00
.character-counter{
position: relative;
top: -25px;
}
2018-01-28 21:22:43 +09:00
2018-04-16 22:58:14 +09:00
2018-03-13 02:41:38 +09:00
2018-02-18 01:44:03 +09:00
/*mini*/
.mini-post .mize{
display:none !important;
}
.mini-post #textarea{
padding:0;
}
.mini-post #post-box{
width:200px;
min-width:100px;
}
.mini-post #toot-field{
padding:0;
}
.mini-post #toot-btn-field{
padding:0;
2018-01-28 21:22:43 +09:00
}