Skip to content

Commit

Permalink
Finally done
Browse files Browse the repository at this point in the history
  • Loading branch information
sven1103 committed Nov 15, 2024
1 parent debd2d8 commit 42e42a0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions user-interface/frontend/themes/datamanager/components/all.css
Original file line number Diff line number Diff line change
Expand Up @@ -230,3 +230,7 @@
max-width: 55rem;
}

.box-corner-radius-small {
border-radius: var(--lumo-space-s);
}

Binary file modified user-interface/src/main/bundles/dev.bundle
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,10 @@
@SpringComponent
public class ProjectSummaryComponent extends PageArea {

private static final String DATE_TIME_PATTERN = "dd.MM.yyyy HH:mm";
public static final String FIXED_MEDIUM_WIDTH_CSS = "fixed-medium-width";
public static final String PROJECT_EDIT_CANCEL_CONFIRMATION_MESSAGE = "project.edit.cancel-confirmation.message";
public static final String PROJECT_UPDATED_SUCCESS = "project.updated.success";

private static final String DATE_TIME_PATTERN = "dd.MM.yyyy HH:mm";
private final transient ProjectInformationService projectInformationService;
private final transient ROCreateBuilder roCrateBuilder;
private final transient TempDirectory tempDirectory;
Expand Down Expand Up @@ -492,7 +491,8 @@ private void buildDesignSection(ProjectOverview projectInformation, Project proj
details.add(objective);
var collapsableDetails = new CollapsableDetails(details);
collapsableDetails.collapse();
collapsableDetails.addClassNames("background-color-grey", "padding-left-01", "padding-right-01", "line-height-01", "max-width-55rem", "text-justify");
collapsableDetails.addClassNames("background-color-grey", "padding-left-01", "padding-right-01",
"line-height-01", "max-width-55rem", "text-justify", "box-corner-radius-small");

content.add(
Heading.withIconAndText(VaadinIcon.NOTEBOOK.create(), "Project ID and Title"));
Expand Down

0 comments on commit 42e42a0

Please sign in to comment.