@import "./xconsole.scss";
@import "next-xconsole";
// transition 切换主题优化，暂时先写到 pro 里，后面加到基础组件里

// table 行背景色
tr.next-table-row{
  transition: color 0s;
}

// normal 按钮
button.next-btn.next-medium.next-btn-normal {
  transition: color 0s;
}

// input 背景色
.next-input.next-medium {
  transition: color 0s;
}

// radio 背景色
.next-radio-wrapper.checked .next-radio-inner:after {
  transition: color 0s;
}

.next-radio-wrapper .next-radio-inner {
  transition: color 0s;
}

// checkbox 背景色
.next-checkbox-wrapper .next-checkbox-inner {
  transition: color 0s;
}

// 侧导背景色
.next-menu-item.next-nav-item {
  transition: color 0s;
}

// 标签背景色
.next-tag {
  transition: color 0s;
}

// 可关闭tag
.next-tag.next-tag.next-tag.next-tag-closable.next-tag-level-normal.next-tag-closable {
  transition: color 0s;
}

// 配置dialog弹窗内容可以换行
.next-message-content {
  white-space: pre-wrap;
}
// table 锁列层级变高
.next-table-fix-left, .next-table-fix-right  {
  z-index: 5;
}
