enhance(frontend): 絵文字ピッカーで長いカテゴリの名前を前の部分から省略して表示するように (MisskeyIO#223)

This commit is contained in:
まっちゃとーにゅ 2023-11-09 01:30:36 +09:00 committed by GitHub
parent 29f6267aa5
commit 5421f4f377
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -615,11 +615,17 @@ defineExpose({
position: sticky; position: sticky;
top: 0; top: 0;
left: 0; left: 0;
line-height: 28px; height: 32px;
line-height: 32px;
z-index: 1; z-index: 1;
padding: 0 8px; padding: 0 8px;
font-size: 12px; font-size: 12px;
cursor: pointer; cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
direction: rtl;
text-align: left;
&:hover { &:hover {
color: var(--accent); color: var(--accent);