Files
plus-ui/src/assets/styles/layout/_surface.scss

25 lines
693 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 主内容区面板(.app-container、.panel、.search不依赖 Element 类名,与 components 中 EP 类补丁区分。 */
// --- 整块内容容器(常见于路由视图外包一层) ---
.app-container {
}
// --- 可复用面板条hover 抬升阴影,非 el-card ---
.panel,
.search {
margin-bottom: 0.75rem;
border-radius: var(--app-radius-base);
border: 1px solid var(--app-surface-border);
background-color: var(--app-surface-bg);
padding: 0.75rem;
box-shadow: 0 0 0 rgba(0, 0, 0, 0);
transition:
box-shadow 0.2s ease,
border-color 0.2s ease;
&:hover {
box-shadow: var(--app-shadow-sm);
border-color: rgba(64, 158, 255, 0.2);
}
}