你好 ![]()
在移动设备上,引用条按钮比以前有了更多的选项,现在我们还有 复制引用 和 询问 AI,这使得它更宽,在小屏幕上很容易溢出屏幕,尤其是在这些标签的翻译较长的语言中。
在匈牙利语中情况更糟……
我认为最好的解决方案之一可能是将按钮排列成列。现在按钮会触发(编辑器、模态框、提示)并关闭引用条,不像以前那样在引用条中打开(编辑、询问 AI)。我们有更多的可用空间,并且更容易处理这些按钮。
类似这样:
移动端 / CSS
.quote-button {
.buttons {
flex-direction: column;
> *:not(:last-child) {
border-bottom: 1px solid var(--primary-low);
}
> .btn,
.ai-post-helper__trigger {
width: 100%;
padding: 0.65em;
justify-content: flex-start;
}
}
}


