mirror of https://github.com/LucaBongiorni/Ratty
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
465 B
24 lines
465 B
* {
|
|
-fx-base: #aaaaaa;
|
|
-fx-background-insets: 0px;
|
|
}
|
|
|
|
.table-view .column-header:hover {
|
|
-fx-effect: innershadow(gaussian, #ffffff, 5, 0, 0, 0);
|
|
}
|
|
|
|
.table-view .column-header:pressed {
|
|
-fx-effect: innershadow(gaussian, #000000, 5, 0, 0, 0);
|
|
}
|
|
|
|
.button {
|
|
-fx-background-radius: 0px;
|
|
}
|
|
|
|
.button:hover {
|
|
-fx-effect: innershadow(gaussian, #ffffff, 5, 0, 0, 0);
|
|
}
|
|
|
|
.button:pressed {
|
|
-fx-effect: innershadow(gaussian, #000000, 3, 0, 0, 0);
|
|
}
|