TheDesk modify
This commit is contained in:
2
app/css/about.css
Normal file
2
app/css/about.css
Normal file
@@ -0,0 +1,2 @@
|
||||
/*このソフトについてを押した時に読み込まれます*/
|
||||
body{font-family:Open Sans;}
|
4
app/css/auth.css
Normal file
4
app/css/auth.css
Normal file
@@ -0,0 +1,4 @@
|
||||
/*ログイン画面とその認証までのCSSです*/
|
||||
#masara{display:none}
|
||||
#auth{display:none}
|
||||
#tl{display:none;}
|
2337
app/css/font-awesome.css
vendored
Normal file
2337
app/css/font-awesome.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
177
app/css/master.css
Normal file
177
app/css/master.css
Normal file
@@ -0,0 +1,177 @@
|
||||
/*共通CSS*/
|
||||
|
||||
.btn {
|
||||
margin: 5px;
|
||||
text-transform: none;
|
||||
}
|
||||
.markdown {
|
||||
display: none;
|
||||
}
|
||||
help {
|
||||
display: none;
|
||||
font-size: 10px;
|
||||
color: gray;
|
||||
}
|
||||
.show-help {
|
||||
display: inline;
|
||||
}
|
||||
option {
|
||||
display: none;
|
||||
}
|
||||
#mainView {
|
||||
padding: 10px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
#message {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: black;
|
||||
color: white;
|
||||
z-index: 9999;
|
||||
}
|
||||
#imagemodal, #videomodal {
|
||||
display: none;
|
||||
max-width: 100vw;
|
||||
max-height: 100vh;
|
||||
top:0;
|
||||
background-color: white;
|
||||
position: fixed;
|
||||
z-index: 9;
|
||||
}
|
||||
#imagemodal .modal-content {
|
||||
overflow: hidden;
|
||||
}
|
||||
#imagewrap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
.bbcode-pulse-loadings, .fa-pulse {
|
||||
display: inline-block;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
animation-iteration-count: infinite;
|
||||
animation-name: pulse;
|
||||
}
|
||||
@keyframes pulse {
|
||||
from, 50%, to {
|
||||
opacity: 1;
|
||||
}
|
||||
25%, 75% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
code:before, .pre:before {
|
||||
content: "Code";
|
||||
font-size: 30px;
|
||||
line-height: 1em;
|
||||
font-family: monospace, monospace;
|
||||
color: #999;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
code, pre {
|
||||
color: white;
|
||||
display: block;
|
||||
border-left: 5px solid;
|
||||
border-color: #079903;
|
||||
padding-left: 10px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 5px;
|
||||
background-color: #000;
|
||||
padding: 1em 1em 1em;
|
||||
position: relative;
|
||||
-webkit-border-top-left-radius: 10px;
|
||||
-webkit-border-bottom-right-radius: 10px;
|
||||
-webkit-border-bottom-left-radius: 10px;
|
||||
-moz-border-radius-topleft: 10px;
|
||||
-moz-border-radius-bottomright: 10px;
|
||||
-moz-border-radius-bottomleft: 10px;
|
||||
}
|
||||
blockquote, .quote p {
|
||||
margin: 0;
|
||||
}
|
||||
blockquote, .quote {
|
||||
color: black;
|
||||
background-color: #ddd;
|
||||
padding: 1em 1em 1em;
|
||||
position: relative;
|
||||
-webkit-border-top-left-radius: 10px;
|
||||
-webkit-border-bottom-right-radius: 10px;
|
||||
-webkit-border-bottom-left-radius: 10px;
|
||||
-moz-border-radius-topleft: 10px;
|
||||
-moz-border-radius-bottomright: 10px;
|
||||
-moz-border-radius-bottomleft: 10px;
|
||||
}
|
||||
blockquote:before, .quote:before {
|
||||
content: "Quote";
|
||||
font-size: 30px;
|
||||
line-height: 1em;
|
||||
font-family: Open Sans, cursive;
|
||||
color: #999;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
#drag {
|
||||
display: none;
|
||||
position: fixed;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
z-index: 99999;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
#drag-content {
|
||||
font-size: 200%;
|
||||
}
|
||||
|
||||
/*black theme*/
|
||||
.blacktheme body {
|
||||
color: white;
|
||||
background-color: #212121;
|
||||
}
|
||||
.blacktheme #drag {
|
||||
color: white;
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
position: fixed;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: 99999;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.blacktheme #imagemodal, #videomodal, #tootmodal {
|
||||
background-color: black;
|
||||
}
|
||||
.blacktheme .collapsible-header {
|
||||
background-color: #212121;
|
||||
}
|
||||
.blacktheme .tabs {
|
||||
background-color: #212121;
|
||||
}
|
||||
|
||||
/*スクロールバー*/
|
||||
::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
height: 10px;
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
/* Handle */
|
||||
::-webkit-scrollbar-thumb {
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
background: #9e9e9e;
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
|
||||
}
|
9389
app/css/materialize.css
vendored
Normal file
9389
app/css/materialize.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
16
app/css/materialize.min.css
vendored
Normal file
16
app/css/materialize.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
75
app/css/post.css
Normal file
75
app/css/post.css
Normal file
@@ -0,0 +1,75 @@
|
||||
/*トゥートボックス向けCSS*/
|
||||
#post-box {
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
bottom: 3px;
|
||||
background-color: white;
|
||||
border: thin solid gray;
|
||||
z-index: 1000;
|
||||
width: 350px;
|
||||
min-width:350px;
|
||||
max-width:100%;
|
||||
padding: 5px;
|
||||
}
|
||||
.cancel {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 3px;
|
||||
font-size: 7px;
|
||||
color: gray;
|
||||
cursor: pointer;
|
||||
}
|
||||
.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;
|
||||
height: 370px;
|
||||
z-index: 1003;
|
||||
padding: 5px;
|
||||
}
|
||||
#emoji-list {
|
||||
width: 100%;
|
||||
height: calc(100% - 110px);
|
||||
overflow-y: scroll;
|
||||
}
|
||||
.emoji-control {}
|
||||
#preview-field {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/*black theme*/
|
||||
.blacktheme #post-box {
|
||||
background-color: #424242;
|
||||
}
|
||||
.blacktheme #drag {
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
background-color: #004d40;
|
||||
color: white;
|
||||
padding: 3px;
|
||||
}
|
142
app/css/tl.css
Normal file
142
app/css/tl.css
Normal file
@@ -0,0 +1,142 @@
|
||||
/*TL CSS(ただしBBCode pulse:master.css/spin:font-awesome*/
|
||||
#timeline-container {
|
||||
display: flex;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
.box {
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
min-width: 300px;
|
||||
height: 100vh;
|
||||
flex: 1;
|
||||
}
|
||||
@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;
|
||||
}
|
||||
.notice {
|
||||
top: -7px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
font-family: Open Sans;
|
||||
margin-right: 10px;
|
||||
}
|
||||
#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*/
|
||||
.blacktheme #notf-box, .notf-box {
|
||||
background-color: #424242;
|
||||
}
|
||||
.blacktheme .modal-footer {
|
||||
background-color: #424242;
|
||||
}
|
||||
.blacktheme .btn-flat {
|
||||
color: white
|
||||
}
|
||||
.blacktheme .shared {
|
||||
background-color: #004d40;
|
||||
}
|
||||
.blacktheme .mention {
|
||||
color: white;
|
||||
}
|
37
app/css/userdata.css
Normal file
37
app/css/userdata.css
Normal file
@@ -0,0 +1,37 @@
|
||||
/*アイコンをクリックした時とかにでてくるユーザーデータ*/
|
||||
#his-data {
|
||||
background-repeat: no-repeat;
|
||||
background-image: url('/img/loading.svg');
|
||||
overflow-y: hidden;
|
||||
}
|
||||
#his-prof {
|
||||
float: left;
|
||||
width: 100px;
|
||||
}
|
||||
.his-float {
|
||||
float: left;
|
||||
width: calc(50% - 50px);
|
||||
height: 122px;
|
||||
overflow-y: scroll;
|
||||
padding: 5px;
|
||||
}
|
||||
#his-data-show {
|
||||
margin: 50px;
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
width: calc(100% - 50px);
|
||||
height: calc(100% - 50px);
|
||||
margin-bottom: 0;
|
||||
padding: 5px;
|
||||
}
|
||||
.tab-content {
|
||||
overflow-y: scroll;
|
||||
height: calc(100% - 240px)
|
||||
}
|
||||
.my-data-width {
|
||||
width: 11.11%;
|
||||
}
|
||||
|
||||
/*black theme*/
|
||||
.blacktheme #his-data-show {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
}
|
Reference in New Issue
Block a user