aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/styles
diff options
context:
space:
mode:
authorAndreas Weninger <e01526989@student.tuwien.ac.at>2018-06-11 10:17:52 +0200
committerTharre <tharre3@gmail.com>2018-06-13 19:22:31 +0200
commit8735141583894d14e620dae537192d12d06f9ba8 (patch)
treeb926d592e0fea9e52b623e96eb2c93c30ab03278 /src/main/resources/styles
parent191670b9cb882c401357f8d9e358d46ae52560af (diff)
downloadsepm-groupproject-8735141583894d14e620dae537192d12d06f9ba8.tar.gz
sepm-groupproject-8735141583894d14e620dae537192d12d06f9ba8.tar.xz
sepm-groupproject-8735141583894d14e620dae537192d12d06f9ba8.zip
UI Rework
Diffstat (limited to 'src/main/resources/styles')
-rw-r--r--src/main/resources/styles/main.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/main/resources/styles/main.css b/src/main/resources/styles/main.css
index fe4a87a..b567666 100644
--- a/src/main/resources/styles/main.css
+++ b/src/main/resources/styles/main.css
@@ -102,3 +102,44 @@
-fx-font-weight: bold;
}
+/* === text field === */
+.text-field {
+ /*-fx-text-box-border: transparent black black black;*/
+ -fx-background-color: -fx-control-inner-background;
+ /*-fx-background-insets: 0;*/
+ -fx-padding: 1 3 1 3;
+ -fx-border-color: transparent transparent black transparent;
+
+}
+
+.text-field:focused {
+ -fx-focus-color: transparent;
+ -fx-faint-focus-color: transparent;
+}
+
+/* === scroll pane === */
+.scroll-pane {
+ -fx-background-color:transparent;
+}
+
+.scroll-pane .scroll-bar:vertical {
+ -fx-opacity: 0;
+}
+
+/* === choice box ===
+.choice-box {
+ -fx-background-color: transparent;
+ -fx-padding: 2 2 2 2;
+}
+
+.choice-box .label {
+ -fx-text-fill: white;
+}
+
+.choice-box .arrow, .choice-box .arrow-button{
+ -fx-background-color: transparent;
+ -fx-background-insets: 0;
+ -fx-background-radius: 0;
+ -fx-padding: 0;
+}*/
+