2024-01-17 11:15:14 +08:00

41 lines
695 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.

.jfx-button {
-jfx-button-type: RAISED;
-fx-text-fill: #000;
-fx-font-size: 16;
}
/*!* 鼠标悬停时,按钮突出 *!*/
.jfx-button:hover{
-fx-background-color: white;
}
/* 按钮选中时,按钮突出 */
.jfx-button:focused{
-fx-background-color: white;
}
/* 修改Tab中文本的颜色 */
.tab-label {
-fx-text-fill: #383838;
}
/* 子代选择器Tab选中的时候选择其子元素tab-label */
.tab:selected .tab-label {
-fx-text-fill: #1E90FF;
}
/* 修改Tab中背景颜色*/
.jfx-tab-pane .headers-region {
-fx-background-color: #fff;
}
.jfx-tab-pane .tab-header-background {
-fx-background-color: #fff;
}
#oa {
-fx-font-size: 14;
}