TheDesk Riina (ver.6)

This commit is contained in:
cutls
2018-02-25 16:21:13 +09:00
parent 5624266f30
commit 6d31d2e3c4
15 changed files with 74 additions and 63 deletions

View File

@@ -1,5 +1,5 @@
/*共通CSS*/
body{overflow:hidden;}
body{overflow:hidden; user-select: none; cursor:default;}
.btn {
margin: 5px;
text-transform: none;

View File

@@ -26,8 +26,10 @@ iframe {
min-width: 300px;
height: 100vh;
flex: 1;
border: thin solid gray;
}
.user{
cursor:text;
font-size:1.2rem;
}
.tl-box{ height:calc(100% - 40px); overflow-y:scroll; overflow-x:hidden }
@@ -43,7 +45,6 @@ iframe {
padding-right: 2px;
word-break: break-all;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 43px 2fr 1fr;
grid-template-areas: 'notice notice notice' 'icon display_name acct' 'icon toot toot' 'icon additional additional' 'actions actions date_via';
@@ -61,6 +62,7 @@ grid-area: icon;
}
.area-display_name {
user-select: auto;
height:1.5em;
margin:2px;
overflow:hidden;
@@ -79,6 +81,8 @@ text-overflow: ellipsis;
}
.area-toot {
cursor:text;
user-select: auto;
margin:2px;
grid-area: toot;
}
@@ -89,6 +93,8 @@ grid-area: toot;
}
.area-additional {
cursor:text;
user-select: auto;
grid-area: additional;
}