Files
contract-manager/src/main/resources/ui/start_lamp.css
2025-08-22 19:55:19 +08:00

21 lines
702 B
CSS
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.

/* 设置 ScrollPane 本身背景透明 */
.scroll-pane {
-fx-background-color: transparent; /* 去除ScrollPane 边框和背景透明 */
-fx-background-insets: 0; /* 去除内边距影响 */
}
/* 关键设置视口viewport背景透明 */
.scroll-pane .viewport {
-fx-background-color: transparent; /* 视口内容区域透明 */
}
/* 可选:设置滚动条背景透明(如需隐藏滚动条背景) */
.scroll-pane .scroll-bar {
-fx-background-color: transparent;
}
/* 可选:设置滚动条滑块样式(增强视觉效果) */
.scroll-pane .scroll-bar .thumb {
-fx-background-color: rgba(0, 0, 0, 0.2); /* 半透明滑块 */
-fx-background-radius: 5px;
}