mirror of
https://gitee.com/willfree/minoaClientWindows_gradle.git
synced 2026-06-03 08:16:56 +08:00
46 lines
1.2 KiB
CSS
46 lines
1.2 KiB
CSS
/*list样式
|
|
* */
|
|
.list-cell:empty {
|
|
-fx-background-color: white;
|
|
}
|
|
/*页面底色
|
|
*/
|
|
#upPane{
|
|
-fx-background-color:#E8F2FE;
|
|
}
|
|
/*文件图标样式
|
|
*/
|
|
.head{
|
|
-fx-background-radius: 1px;
|
|
-fx-background-position: center center;
|
|
-fx-background-repeat: no-repeat;
|
|
-fx-background-size: 40px 40px;
|
|
-fx-background-color: rgba(255,255,255,0);
|
|
-fx-background-image: url("file:resources/images/headPhotos/default.png");
|
|
-fx-cursor: hand;
|
|
-fx-border-width: 1px;
|
|
-fx-border-radius: 1px;
|
|
-fx-border-color:transparent;
|
|
}
|
|
.head:hover{
|
|
-fx-background-radius: 1px;
|
|
-fx-background-position: center center;
|
|
-fx-background-repeat: no-repeat;
|
|
-fx-background-color: transparent;
|
|
-fx-background-size: 40px 40px;
|
|
-fx-cursor: hand;
|
|
-fx-border-width: 1px;
|
|
-fx-border-radius: 1px;
|
|
-fx-border-color:transparent;
|
|
}
|
|
.head:pressed{
|
|
-fx-background-radius: 1px;
|
|
-fx-background-position: center center;
|
|
-fx-background-repeat: no-repeat;
|
|
-fx-background-color: transparent;
|
|
-fx-background-size: 40px 40px;
|
|
-fx-cursor: hand;
|
|
-fx-border-width: 1px;
|
|
-fx-border-radius: 1px;
|
|
-fx-border-color:transparent;
|
|
} |