thedesk/app/css/post.css

112 lines
1.5 KiB
CSS
Raw Normal View History

2018-01-28 23:22:43 +11:00
/*トゥートボックス向けCSS*/
#post-box {
2018-01-31 03:43:01 +11:00
position: fixed;
2018-03-27 13:39:35 +11:00
right: 78px;
2018-01-28 23:22:43 +11:00
bottom: 3px;
background-color: white;
border: thin solid gray;
2018-03-14 17:52:55 +11:00
z-index: 500;
2018-05-02 14:14:03 +10:00
width: 300px;
min-width:300px;
2018-01-28 23:22:43 +11:00
max-width:100%;
padding: 5px;
}
.cancel {
2018-02-18 03:44:03 +11:00
font-size: 0.5rem;
2018-01-28 23:22:43 +11:00
color: gray;
cursor: pointer;
2018-05-02 14:14:03 +10:00
position: absolute;
width: 60px;
right: 0px;
2018-01-28 23:22:43 +11:00
}
.more-show {
display: none;
}
#drag {
width: 100%;
height: 100px;
background-color: #e0e0e0;
color: black;
}
#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 15:55:25 +11:00
height: 440px;
2018-03-14 17:52:55 +11:00
z-index: 502;
2018-01-28 23:22:43 +11:00
padding: 5px;
}
#emoji-list {
width: 100%;
2018-03-20 15:55:25 +11:00
height: calc(100% - 190px);
2018-01-28 23:22:43 +11:00
overflow-y: scroll;
}
#preview-field {
display: none;
}
2018-03-13 04:41:38 +11:00
#default-emoji a{
color:white;
2018-03-31 13:39:06 +11:00
margin-right:2px;
2018-03-13 04:41:38 +11:00
}
2018-04-16 23:58:14 +10:00
.character-counter{
position: relative;
top: -25px;
}
2018-01-28 23:22:43 +11:00
/*black theme*/
.blacktheme #post-box {
background-color: #424242;
}
2018-04-16 23:58:14 +10:00
/*indigo theme*/
.indigotheme #post-box {
background-color: #1a237e ;
}
/*brown theme*/
.browntheme #post-box {
background-color: #4e342e;
}
/*
2018-01-28 23:22:43 +11:00
.blacktheme #drag {
width: 100%;
height: 100px;
background-color: #004d40;
color: white;
padding: 3px;
2018-02-18 03:44:03 +11:00
}
2018-04-16 23:58:14 +10:00
*/
2018-03-13 04:41:38 +11:00
2018-02-18 03:44:03 +11: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 23:22:43 +11:00
}