2026-03-25 10:02:19 +08:00
|
|
|
@use 'src/styles/element-plus' as element-plus;
|
2026-04-20 16:57:54 +08:00
|
|
|
@use 'src/styles/ant-design-vue' as permission;
|
2026-03-25 10:02:19 +08:00
|
|
|
@use './sidebar' as sidebar;
|
|
|
|
|
@use './tailwind' as tailwind;
|
2026-06-01 08:42:06 +08:00
|
|
|
@use './popup-styles' as popup;
|
2026-03-27 17:55:01 +08:00
|
|
|
@import './iconfont/iconfont.css';
|
2026-03-25 10:02:19 +08:00
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
#app {
|
2026-03-25 10:02:19 +08:00
|
|
|
height: 100%;
|
2026-03-27 14:50:35 +08:00
|
|
|
font-family: auto;
|
2026-03-25 10:02:19 +08:00
|
|
|
}
|
2026-03-27 17:55:01 +08:00
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
|
|
|
|
Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
|
|
|
|
|
Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
|
|
|
font-variant: tabular-nums;
|
|
|
|
|
line-height: 1.5715;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-feature-settings: 'tnum';
|
|
|
|
|
}
|
2026-03-27 14:50:35 +08:00
|
|
|
/* Webkit 浏览器 (Chrome, Safari, Edge) */
|
|
|
|
|
body::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
2026-04-03 16:04:16 +08:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: #bbb;
|
|
|
|
|
-webkit-box-shadow: inset 0 0 6px #ddd;
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-track {
|
2026-04-20 16:57:54 +08:00
|
|
|
border-radius: 10px;
|
|
|
|
|
width: 10px;
|
2026-04-03 16:04:16 +08:00
|
|
|
}
|
2026-03-25 10:02:19 +08:00
|
|
|
// main-container global css
|
|
|
|
|
.app-container {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
.search {
|
2026-03-25 10:02:19 +08:00
|
|
|
padding: 18px 0 0 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border: 1px solid #ddd;
|
2026-03-27 14:50:35 +08:00
|
|
|
box-shadow: 6px 2px 6px #ccc;
|
2026-03-25 10:02:19 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
svg {
|
2026-03-25 10:02:19 +08:00
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.el-dialog {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
flex-direction: column !important;
|
|
|
|
|
margin: auto !important;
|
|
|
|
|
position: absolute !important;
|
2026-03-27 14:50:35 +08:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2026-03-25 10:02:19 +08:00
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: max-content;
|
|
|
|
|
}
|
|
|
|
|
.el-dialog__body {
|
|
|
|
|
padding: 20px !important;
|
2026-03-27 14:50:35 +08:00
|
|
|
}
|
2026-03-27 15:52:43 +08:00
|
|
|
.modelContentDrak {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
}
|
2026-04-02 09:35:08 +08:00
|
|
|
|
2026-04-03 16:04:16 +08:00
|
|
|
.moduleContent {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2026-04-02 09:35:08 +08:00
|
|
|
|
2026-03-31 14:17:30 +08:00
|
|
|
.leftContent {
|
|
|
|
|
width: 188px;
|
|
|
|
|
}
|
2026-03-27 15:52:43 +08:00
|
|
|
.rightContent {
|
|
|
|
|
height: 98%;
|
|
|
|
|
position: relative;
|
2026-03-27 17:55:01 +08:00
|
|
|
}
|
2026-05-15 17:38:03 +08:00
|
|
|
.table-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
/* 占据剩余所有空间 */
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* 关键:防止表格溢出容器 */
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-tooltip-inner {
|
|
|
|
|
max-height: 300px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
2026-05-19 18:56:33 +08:00
|
|
|
// 暂无数据文字颜色
|
|
|
|
|
|
|
|
|
|
.ant-empty-description {
|
|
|
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
|
}
|
2026-05-26 19:30:22 +08:00
|
|
|
.ant-select-tree-node-selected{
|
|
|
|
|
background-color: #bae7ff !important;
|
|
|
|
|
}
|