修复陶瓦联机页面“导出联机日志”按钮填充异常的问题 (#5507)

This commit is contained in:
Glavo
2026-02-09 22:54:47 +08:00
parent a70b8d7baa
commit 33dc39e59e
2 changed files with 9 additions and 4 deletions

View File

@@ -551,6 +551,7 @@ public class TerracottaControllerPage extends StackPane {
ComponentSublist locals = new ComponentSublist();
var header = new LinePane();
header.getStyleClass().add("no-padding");
header.setLargeTitle(true);
header.setMinHeight(LinePane.USE_COMPUTED_SIZE);
header.setMouseTransparent(true);

View File

@@ -1054,10 +1054,6 @@
-fx-font-size: 12;
}
.options-list-item > .line-component .line-component-container {
-fx-padding: 10 16 10 16;
}
.options-list-item .svg {
-fx-fill: -monet-on-surface;
-fx-border-color: -monet-outline-variant;
@@ -1887,6 +1883,14 @@
* *
******************************************************************************/
.line-component .line-component-container {
-fx-padding: 10 16 10 16;
}
.line-component.no-padding .line-component-container {
-fx-padding: 0;
}
.line-component:large-title .title-label {
-fx-font-size: 15px;
}