hal/src/zutil/log/net/NetLoggerClientInstance.css

35 lines
1.1 KiB
CSS
Raw Normal View History

2013-05-02 16:29:39 +00:00
/* LOG LEVELS */
2013-05-07 16:19:47 +00:00
.SEVERE {
-fx-control-inner-background: palevioletred;
-fx-accent: derive(-fx-control-inner-background, -40%);
-fx-cell-hover-color: derive(-fx-control-inner-background, -20%);
}
2013-05-02 16:29:39 +00:00
.WARNING {
-fx-control-inner-background: paleyellow;
-fx-accent: derive(-fx-control-inner-background, -40%);
-fx-cell-hover-color: derive(-fx-control-inner-background, -20%);
}
2013-05-07 16:19:47 +00:00
.INFO { }
2013-05-02 16:29:39 +00:00
.FINE {
-fx-control-inner-background: skyblue;
-fx-accent: derive(-fx-control-inner-background, -40%);
-fx-cell-hover-color: derive(-fx-control-inner-background, -20%);
}
.FINER {
-fx-control-inner-background: skyblue;
-fx-accent: derive(-fx-control-inner-background, -25%);
-fx-cell-hover-color: derive(-fx-control-inner-background, -20%);
}
.FINEST {
-fx-control-inner-background: skyblue;
-fx-accent: derive(-fx-control-inner-background, -10%);
-fx-cell-hover-color: derive(-fx-control-inner-background, -20%);
}
2013-05-07 16:19:47 +00:00
/* Clear empty rows */
.table-row-cell:empty {
-fx-background-color: null;
}
.table-row-cell:empty .table-cell {
-fx-border-width: 0px;
2013-05-02 16:29:39 +00:00
}