|
@@ -183,19 +183,37 @@
|
|
|
}
|
|
|
|
|
|
.main-window .button-bar {
|
|
|
+ -fx-min-height:44px;
|
|
|
+ -fx-max-height:44px;
|
|
|
-fx-background-color: MAIN_BG;
|
|
|
-fx-border-color: CONTROL_BORDER_NORMAL transparent transparent transparent;
|
|
|
-fx-border-width: 1px 0 0 0;
|
|
|
}
|
|
|
|
|
|
-.main-window .button-left {
|
|
|
+.main-window .button-bar .button-left {
|
|
|
-fx-border-color: CONTROL_BORDER_NORMAL;
|
|
|
-fx-border-width: 0 1px 0 0;
|
|
|
+ -fx-background-color: MAIN_BG;
|
|
|
+ -fx-background-radius: 0px;
|
|
|
+ -fx-min-height: 44px;
|
|
|
+ -fx-max-height: 44px;
|
|
|
}
|
|
|
|
|
|
-.main-window .button-right {
|
|
|
+.main-window .button-bar .button-right {
|
|
|
-fx-border-color: CONTROL_BORDER_NORMAL;
|
|
|
-fx-border-width: 0 0 0 1px;
|
|
|
+ -fx-background-color: MAIN_BG;
|
|
|
+ -fx-background-radius: 0px;
|
|
|
+ -fx-min-height: 44px;
|
|
|
+ -fx-max-height: 44px;
|
|
|
+}
|
|
|
+
|
|
|
+.main-window .button-bar .button-left:armed {
|
|
|
+ -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_ARMED;
|
|
|
+}
|
|
|
+
|
|
|
+.main-window .button-bar .button-right:armed {
|
|
|
+ -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_ARMED;
|
|
|
}
|
|
|
|
|
|
/*******************************************************************************
|