mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 06:23:56 +08:00
@@ -582,7 +582,7 @@ export default {
|
|||||||
|
|
||||||
.table-container {
|
.table-container {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: scroll;
|
overflow: auto;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
width: calc(100% - 16px);
|
width: calc(100% - 16px);
|
||||||
@@ -641,8 +641,8 @@ export default {
|
|||||||
|
|
||||||
/* 音频播放器容器样式 */
|
/* 音频播放器容器样式 */
|
||||||
.custom-audio-container {
|
.custom-audio-container {
|
||||||
width: 280px;
|
width: 90%;
|
||||||
margin: auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 新增按钮组样式 */
|
/* 新增按钮组样式 */
|
||||||
@@ -668,4 +668,40 @@ export default {
|
|||||||
.save-btn {
|
.save-btn {
|
||||||
color: #5cca8e !important;
|
color: #5cca8e !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 表格单元格自适应 */
|
||||||
|
::v-deep .el-table__body-wrapper {
|
||||||
|
overflow-x: hidden !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::v-deep .el-table td {
|
||||||
|
white-space: pre-wrap !important;
|
||||||
|
word-break: break-all !important;
|
||||||
|
}
|
||||||
|
/* 按钮组定位调整 */
|
||||||
|
.action-buttons {
|
||||||
|
position: static;
|
||||||
|
padding: 15px 0;
|
||||||
|
background: white;
|
||||||
|
box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 输入框自适应 */
|
||||||
|
::v-deep .el-input__inner,
|
||||||
|
::v-deep .el-textarea__inner {
|
||||||
|
width: 100% !important;
|
||||||
|
min-width: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 音频输入框特殊处理 */
|
||||||
|
.audio-input ::v-deep .el-input__inner {
|
||||||
|
min-width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 操作按钮弹性布局 */
|
||||||
|
::v-deep .el-table__row .el-button {
|
||||||
|
flex-shrink: 0;
|
||||||
|
margin: 2px !important;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user