|
|
@@ -920,4 +920,24 @@ const onUserCommand = async (command: string) => {
|
|
|
border: 1px solid rgba(109, 137, 213, 0.18);
|
|
|
background: #081225;
|
|
|
}
|
|
|
+
|
|
|
+/* 修改 Tab 标签文字颜色 */
|
|
|
+:deep(.el-tabs__item) {
|
|
|
+ color: #b4bbcb !important; /* 强制设置为白色 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 选中状态的标签文字颜色(保持白色或根据需要调整) */
|
|
|
+:deep(.el-tabs__item.is-active) {
|
|
|
+ color: #0088ff !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 如果需要修改底部激活条的颜色,可以保留或调整这个 */
|
|
|
+:deep(.el-tabs__active-bar) {
|
|
|
+ background-color: #409eff !important; /* 例如改为品牌蓝,或者保持默认 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 确保 hover 状态也是白色或高亮色 */
|
|
|
+:deep(.el-tabs__item:hover) {
|
|
|
+ color: #008dff !important;
|
|
|
+}
|
|
|
</style>
|