|
@@ -465,6 +465,42 @@
|
|
|
-fx-padding: 4px 6px 4px 0;
|
|
|
}
|
|
|
|
|
|
+/*******************************************************************************
|
|
|
+ * *
|
|
|
+ * Text Areas *
|
|
|
+ * *
|
|
|
+ ******************************************************************************/
|
|
|
+
|
|
|
+.text-area {
|
|
|
+ -fx-cursor: default;
|
|
|
+ -fx-background-color: CONTROL_BORDER_NORMAL, CONTROL_BG_NORMAL;
|
|
|
+ -fx-background-insets: 0, 1px;
|
|
|
+ -fx-background-radius: 4px;
|
|
|
+ -fx-padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.text-input:focused {
|
|
|
+ -fx-background-color: CONTROL_BORDER_FOCUSED, CONTROL_BG_NORMAL;
|
|
|
+}
|
|
|
+
|
|
|
+.text-input:disabled {
|
|
|
+ -fx-text-fill: TEXT_FILL_SECONDARY;
|
|
|
+ -fx-background-color: CONTROL_BORDER_DISABLED, CONTROL_BG_DISABLED;
|
|
|
+}
|
|
|
+
|
|
|
+.text-area > .scroll-pane > .scroll-bar {
|
|
|
+ -fx-padding: 2px;
|
|
|
+}
|
|
|
+
|
|
|
+.text-area .content {
|
|
|
+ -fx-padding: 0.2em 0.5em 0.2em 0.5em;
|
|
|
+ -fx-cursor: text;
|
|
|
+ -fx-text-fill: TEXT_FILL;
|
|
|
+ -fx-highlight-fill: PRIMARY_BG;
|
|
|
+ -fx-prompt-text-fill: TEXT_FILL_SECONDARY;
|
|
|
+ -fx-background-color: null;
|
|
|
+}
|
|
|
+
|
|
|
/*******************************************************************************
|
|
|
* *
|
|
|
* Buttons *
|