mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:13:08 +02:00
fix(client): カスタム絵文字一覧ページの負荷が高いのを修正
This commit is contained in:
parent
034dcaeb9d
commit
b1751543aa
2 changed files with 1 additions and 4 deletions
|
@ -14,6 +14,7 @@
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- クライアント: Deckカラムの増減がページをリロードするまで正しく反映されない問題を修正
|
- クライアント: Deckカラムの増減がページをリロードするまで正しく反映されない問題を修正
|
||||||
- クライアント: 一部のコンポーネントが裏に隠れるのを修正
|
- クライアント: 一部のコンポーネントが裏に隠れるのを修正
|
||||||
|
- クライアント: カスタム絵文字一覧ページの負荷が高いのを修正
|
||||||
|
|
||||||
## 12.100.1 (2021/12/17)
|
## 12.100.1 (2021/12/17)
|
||||||
|
|
||||||
|
|
|
@ -47,8 +47,6 @@ export default defineComponent({
|
||||||
text-align: left;
|
text-align: left;
|
||||||
background: var(--panel);
|
background: var(--panel);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
transform-style: preserve-3d;
|
|
||||||
transform: perspective(1000px);
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: var(--accent);
|
border-color: var(--accent);
|
||||||
|
@ -57,14 +55,12 @@ export default defineComponent({
|
||||||
> .img {
|
> .img {
|
||||||
width: 42px;
|
width: 42px;
|
||||||
height: 42px;
|
height: 42px;
|
||||||
transform: translateZ(20px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
> .body {
|
> .body {
|
||||||
padding: 0 0 0 8px;
|
padding: 0 0 0 8px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transform: translateZ(10px);
|
|
||||||
|
|
||||||
> .name {
|
> .name {
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
Loading…
Reference in a new issue