samu_masken #19

Merged
PBG2H22AWO merged 3 commits from samu_masken into master 2024-01-19 12:27:34 +01:00
3 changed files with 34 additions and 4 deletions

View File

@ -138,7 +138,7 @@ public class EssensverwaltungMitarbeiterView {
}
/**
* Initialisiert alle Gerichte des aktuellen Datums auf der Seite
* Initialisiert alle Gerichte des aktuellen Datums auf der Seite.
*/
private void initGerichte(){
@ -180,8 +180,6 @@ public class EssensverwaltungMitarbeiterView {
}
}
tagesplan.getStyleClass().add("essensuebersicht_gridlines");
}

View File

@ -15,6 +15,10 @@ public class VerwaltungApplication extends Application {
private static Stage stage;
public static void abmelden(){
VerwaltungApplication.sceneWechseln("login-view.fxml");
}
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(VerwaltungApplication.class.getResource("login-view.fxml"));

View File

@ -18,7 +18,7 @@
-fx-padding: 20;
}
.hauptmenue_buttons_links{
.hauptmenue_buttons_links, .gerichterstellung_felder, .filter, .main, .filter_unten{
-fx-spacing: 20;
}
@ -73,6 +73,13 @@
-fx-vgap: 10;
-fx-hgap: 10;
}
.test {
-fx-padding: 10 20;
}
.essensuebersicht_gridlines {
-fx-grid-lines-visible: true;
}
.accounterstellung_links, .button-untenrechts{
-fx-spacing: 20;
@ -82,3 +89,24 @@
-fx-background-color: #FFDCDC;
-fx-text-fill: #FFDCDC;
}
.essensuebersicht_gridlines > * {
-fx-alignment: center;
}
.pfeil{
-fx-background-color: -fx-mark-highlight-color, -fx-mark-color;
-fx-background-insets: 0 0 -1 0, 0;
-fx-padding: 0.25em;
-fx-shape: "M 0 -3.5 v 7 l 4 -3.5 z";
-fx-pref-width: 25;
}
.links {
-fx-rotate: 180;
}
.titledPaneUeberschrift > .title {
-fx-pref-height: 50;
-fx-padding: 10 10 16 10;
-fx-font-size: 15;
-fx-font-weight: bold;
}