commonNew.css 1.24 KB
.button:hover{
   -fx-cursor: hand;
}
.bgtrans{
    -fx-background-color:transparent;
}

.tab-pane > .tab-header-area > .tab-header-background {
	-fx-background-color: transparent;
}


.table-view .table-row-cell {
    -fx-background-insets: 0;
}
/*表格透明*/
.table-view{
   -fx-background-color: transparent;
    -fx-background-insets: 0, 0;
}
.table-view:focused{
    -fx-background-color: transparent;
}

.table-row-cell:even {
    -fx-background: #DCDCDC;
    -fx-min-height: 30px;
    -fx-max-height: 30px;
}

.table-row-cell:odd  {
    -fx-min-height: 230px;
    -fx-max-height: 230px;
    -fx-background: white;
}

.table-row-cell:empty {
    -fx-background: white;
}

.table-view .column-header{
    -fx-background-color:transparent;
}

.groupBtnBox{
    -fx-border-color: #52A2A5;
    -fx-border-radius: 5;
}
.groupBtnBox > .label{
    -fx-text-fill: #52A2A5;
}
.groupBtn{
    -fx-text-fill: #52A2A5;
    -fx-background-color:transparent;
    -fx-padding:10px 35px;
    -fx-font-size:15px
}
.groupBtn:hover{
    -fx-text-fill: #4876FF;
}
.groupBtn:active{
    -fx-background-color: #4876FF;
}
.singleBtn{
    -fx-text-fill: #52A2A5;
    -fx-padding:10px 35px;
    -fx-border-color:#52A2A5;
    -fx-border-radius:5;
    -fx-background-color:transparent;
}