Reworked list cell framework to be more extensible

This commit is contained in:
2020-07-18 11:50:49 +02:00
parent fa7be8c343
commit 0674035183
8 changed files with 361 additions and 204 deletions

View File

@ -9,11 +9,11 @@
}
#messageEnterContainer {
-fx-background-radius: 5em;
-fx-background-radius: 5.0em;
}
#roundButton {
-fx-background-radius: 5em;
-fx-background-radius: 5.0em;
}
.text-area {
@ -88,7 +88,7 @@
}
#loginButton {
-fx-background-radius: 1em;
-fx-background-radius: 1.0em;
}
#registerSwitch {
@ -99,7 +99,7 @@
#loginInputField {
-fx-background-color: transparent;
-fx-border: solid;
-fx-border-width: 0 0 1 0;
-fx-border-width: 0.0 0.0 1.0 0.0;
}
@ -129,5 +129,13 @@
}
#profilePic {
-fx-radius: 1em;
-fx-radius: 1.0em;
}
.listElement {
-fx-background-color: transparent;
}
.listElement {
-fx-background-color: transparent;
}

View File

@ -50,10 +50,6 @@
-fx-background-color: #303030;
}
.listElement {
-fx-background-color: transparent;
}
#messageEnterContainer {
-fx-background-color: #363636;
}