修复了“音色管理”样式

This commit is contained in:
CGD
2025-04-15 12:20:33 +08:00
parent 4bf950574c
commit 1a525a59ab
+39 -3
View File
@@ -582,7 +582,7 @@ export default {
.table-container {
flex: 1;
overflow-y: scroll;
overflow: auto;
scrollbar-width: none;
padding-right: 15px;
width: calc(100% - 16px);
@@ -641,8 +641,8 @@ export default {
/* 音频播放器容器样式 */
.custom-audio-container {
width: 280px;
margin: auto;
width: 90%;
margin: 0 auto;
}
/* 新增按钮组样式 */
@@ -668,4 +668,40 @@ export default {
.save-btn {
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>