TheDesk Airi (ver.3)

This commit is contained in:
cutls 2018-03-14 03:31:31 +09:00
parent f57b9a21ab
commit 07daf46318
1783 changed files with 7106 additions and 2122 deletions

View File

@ -1,19 +1,19 @@
## For Astarte(kirishima.cloud), My Primary Instance ## For Astarte(kirishima.cloud), My Primary Instance
TheDesk :thedesk: Airi (ver.2) TheDesk :thedesk: Airi (ver.3)
UIをシンプルに洗練 デフォルトの絵文字に関するバグ修正
TL「一番上へ」をTL種別アイコンと統合 改行の描画に関するバグ修正
デフォルトの絵文字に対応 返信に関するバグ修正
バージョン1.xのインスタンスに暫定対応。 通知を効率化
https://thedesk.top https://thedesk.top
:github: https://github.com/cutls/TheDesk #Desk #DeskUpdate :github: https://github.com/cutls/TheDesk #Desk #DeskUpdate
## For Vanilla Instances ## For Vanilla Instances
Windows/LinuxクライアントTheDesk Airi (ver.2)リリース Windows/LinuxクライアントTheDesk Airi (ver.2)リリース
UIをシンプルに洗練 デフォルトの絵文字に関するバグ修正
TL「一番上へ」をTL種別アイコンと統合 改行の描画に関するバグ修正
デフォルトの絵文字に対応 返信に関するバグ修正
バージョン1.xのインスタンスに暫定対応。 通知を効率化
TheDeskはマルチカラムマルチアカウントはもちろんのことなにかとマストドンライフをシンプルに効率化するクライアントです。 TheDeskはマルチカラムマルチアカウントはもちろんのことなにかとマストドンライフをシンプルに効率化するクライアントです。
https://thedesk.top https://thedesk.top

View File

@ -181,6 +181,9 @@ blockquote:before, .quote:before {
opacity: 1; opacity: 1;
} }
} }
.modal-overlay{
z-index:999 !important;
}
/*black theme*/ /*black theme*/
.blacktheme body { .blacktheme body {

View File

@ -2,6 +2,7 @@
* Materialize v0.100.2 (http://materializecss.com) * Materialize v0.100.2 (http://materializecss.com)
* Copyright 2014-2017 Materialize * Copyright 2014-2017 Materialize
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE) * MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
* Modified by Cutls P(Airi (ver.3)-2018/03/14)
*/ */
.materialize-red { .materialize-red {
background-color: #e51c23 !important; background-color: #e51c23 !important;
@ -4993,7 +4994,7 @@ small {
} }
} }
.tabs { .custom-tabs {
position: relative; position: relative;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
@ -5004,40 +5005,40 @@ small {
white-space: nowrap; white-space: nowrap;
} }
.tabs.tabs-transparent { .custom-tabs.tabs-transparent {
background-color: transparent; background-color: transparent;
} }
.tabs.tabs-transparent .tab a, .custom-tabs.tabs-transparent .custom-tab a,
.tabs.tabs-transparent .tab.disabled a, .custom-tabs.tabs-transparent .custom-tab.disabled a,
.tabs.tabs-transparent .tab.disabled a:hover { .custom-tabs.tabs-transparent .custom-tab.disabled a:hover {
color: rgba(255, 255, 255, 0.7); color: rgba(255, 255, 255, 0.7);
} }
.tabs.tabs-transparent .tab a:hover, .custom-tabs.tabs-transparent .custom-tab a:hover,
.tabs.tabs-transparent .tab a.active { .custom-tabs.tabs-transparent .custom-tab a.active {
color: #fff; color: #fff;
} }
.tabs.tabs-transparent .indicator { .custom-tabs.tabs-transparent .indicator {
background-color: #fff; background-color: #fff;
} }
.tabs.tabs-fixed-width { .custom-tabs.tabs-fixed-width {
display: -webkit-box; display: -webkit-box;
display: -webkit-flex; display: -webkit-flex;
display: -ms-flexbox; display: -ms-flexbox;
display: flex; display: flex;
} }
.tabs.tabs-fixed-width .tab { .custom-tabs.tabs-fixed-width .tab {
-webkit-box-flex: 1; -webkit-box-flex: 1;
-webkit-flex-grow: 1; -webkit-flex-grow: 1;
-ms-flex-positive: 1; -ms-flex-positive: 1;
flex-grow: 1; flex-grow: 1;
} }
.tabs .tab { .custom-tabs .custom-tab {
display: inline-block; display: inline-block;
text-align: center; text-align: center;
line-height: 48px; line-height: 48px;
@ -5047,7 +5048,7 @@ small {
text-transform: uppercase; text-transform: uppercase;
} }
.tabs .tab a { .custom-tabs .custom-tab a {
color: rgba(238, 110, 115, 0.7); color: rgba(238, 110, 115, 0.7);
display: block; display: block;
width: 100%; width: 100%;
@ -5060,18 +5061,19 @@ small {
transition: color .28s ease; transition: color .28s ease;
} }
.tabs .tab a:hover, .tabs .tab a.active { .custom-tabs .custom-tab a:hover, .custom-tabs .custom-tab a.active {
background-color: transparent; background-color: rgba(0, 0, 0, 0.5);
color: #ee6e73; color: #ee6e73;
cursor:pointer;
} }
.tabs .tab.disabled a, .custom-tabs .custom-tab.disabled a,
.tabs .tab.disabled a:hover { .custom-tabs .custom-tab.disabled a:hover {
color: rgba(238, 110, 115, 0.7); color: rgba(238, 110, 115, 0.7);
cursor: default; cursor: default;
} }
.tabs .indicator { .custom-tabs .indicator {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
height: 2px; height: 2px;
@ -5080,19 +5082,19 @@ small {
} }
@media only screen and (max-width: 992px) { @media only screen and (max-width: 992px) {
.tabs { .custom-tabs {
display: -webkit-box; display: -webkit-box;
display: -webkit-flex; display: -webkit-flex;
display: -ms-flexbox; display: -ms-flexbox;
display: flex; display: flex;
} }
.tabs .tab { .custom-tabs .custom-tab {
-webkit-box-flex: 1; -webkit-box-flex: 1;
-webkit-flex-grow: 1; -webkit-flex-grow: 1;
-ms-flex-positive: 1; -ms-flex-positive: 1;
flex-grow: 1; flex-grow: 1;
} }
.tabs .tab a { .custom-tabs .custom-tab a {
padding: 0 12px; padding: 0 12px;
} }
} }
@ -8309,10 +8311,19 @@ input[type=range]:focus::-ms-fill-upper {
visibility: visible; visibility: visible;
-webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite; -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite; animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
-webkit-transition: opacity .3s, visibility 0s 1s, -webkit-transform .3s; -webkit-transition: opacity .3s,
transition: opacity .3s, visibility 0s 1s, -webkit-transform .3s; visibility 0s 1s,
transition: opacity .3s, transform .3s, visibility 0s 1s; -webkit-transform .3s;
transition: opacity .3s, transform .3s, visibility 0s 1s, -webkit-transform .3s; transition: opacity .3s,
visibility 0s 1s,
-webkit-transform .3s;
transition: opacity .3s,
transform .3s,
visibility 0s 1s;
transition: opacity .3s,
transform .3s,
visibility 0s 1s,
-webkit-transform .3s;
} }
.tap-target { .tap-target {
@ -8365,10 +8376,19 @@ input[type=range]:focus::-ms-fill-upper {
.tap-target-wave::after { .tap-target-wave::after {
visibility: hidden; visibility: hidden;
-webkit-transition: opacity .3s, visibility 0s, -webkit-transform .3s; -webkit-transition: opacity .3s,
transition: opacity .3s, visibility 0s, -webkit-transform .3s; visibility 0s,
transition: opacity .3s, transform .3s, visibility 0s; -webkit-transform .3s;
transition: opacity .3s, transform .3s, visibility 0s, -webkit-transform .3s; transition: opacity .3s,
visibility 0s,
-webkit-transform .3s;
transition: opacity .3s,
transform .3s,
visibility 0s;
transition: opacity .3s,
transform .3s,
visibility 0s,
-webkit-transform .3s;
z-index: -1; z-index: -1;
} }

View File

@ -77,7 +77,10 @@
color: white; color: white;
padding: 3px; padding: 3px;
} }
.character-counter{
position: relative;
top: -25px;
}
/*mini*/ /*mini*/
.mini-post .mize{ .mini-post .mize{

View File

@ -16,13 +16,13 @@
flex-wrap:wrap; flex-wrap:wrap;
} }
#sidebar-top{ #sidebar-top{
height:calc(100vh - 7em); height:70vh;
display:flex; display:flex;
flex-wrap:wrap; flex-wrap:wrap;
align-content:center; align-content:center;
} }
#sidebar-btm{ #sidebar-btm{
height:7em; height:9em;
display:flex; display:flex;
flex-wrap:wrap; flex-wrap:wrap;
align-content:flex-end; align-content:flex-end;
@ -192,6 +192,9 @@ p {
margin: 0; margin: 0;
margin-bottom: 0px; margin-bottom: 0px;
} }
p:not(:last-child){
margin-bottom: 10px;
}
.shared { .shared {
background-color: #cfd8dc; background-color: #cfd8dc;
} }

View File

@ -17,7 +17,7 @@
} }
#his-data-show { #his-data-show {
margin: 50px; margin: 50px;
background-color: rgba(255, 255, 255, 0.8); background-color: #e6ee9c;
width: calc(100% - 50px); width: calc(100% - 50px);
height: calc(100% - 50px); height: calc(100% - 50px);
margin-bottom: 0; margin-bottom: 0;
@ -30,8 +30,15 @@
.my-data-width { .my-data-width {
width: 11.11%; width: 11.11%;
} }
.active-back{
background-color:rgba(255, 255, 255, 0.3);
}
/*black theme*/ /*black theme*/
.blacktheme #his-data-show { .blacktheme #his-data-show {
background-color: rgba(0, 0, 0, 0.8); background-color: rgba(0, 0, 0, 0.8);
} }
.blacktheme .active-back{
background-color:#757575;
}

BIN
app/img/blob-thinking.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 562 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 693 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 614 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 729 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 792 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 747 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 804 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 709 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 577 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 740 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 613 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 596 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 575 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 689 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 526 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 447 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 549 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 909 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 904 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 756 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 918 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 954 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 733 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 806 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 712 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 713 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 981 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 955 B

Some files were not shown because too many files have changed in this diff Show More