JNotepad/src/main/resources/styles.css
2023-08-19 15:23:15 +08:00

19 lines
406 B
CSS

/* 显示滚动条 */
.show-scrollbars .scroll-pane {
-fx-hbar-policy: as-needed;
-fx-vbar-policy: as-needed;
}
/* 不显示滚动条 */
.text-line-number .content{
-fx-cursor: text;
-fx-padding: 8px 1px 8px 1px;
}
.text-line-number .scroll-bar:vertical {
-fx-pref-width: 1;
-fx-opacity: 0;
}
.text-line-number .scroll-bar:horizontal {
-fx-pref-height: 1;
-fx-opacity: 0;
}