Skip to content

Commit

Permalink
#4229 - Better project template selection
Browse files Browse the repository at this point in the history
- Make border of template cards darker
- Change title and description of the old standard project
  • Loading branch information
reckart committed Nov 14, 2023
1 parent 157c5a8 commit ba79e6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public StandardProjectInitializer(@Lazy ProjectService aProjectService)
@Override
public String getName()
{
return "Everything but the kitchen sink";
return "Classic linguistic project";
}

@Override
Expand Down Expand Up @@ -78,6 +78,7 @@ public void configure(Project aProject) throws IOException
@Override
public Optional<String> getDescription()
{
return Optional.of("Comes pre-configured for many linguistic annotation tasks.");
return Optional.of("Comes pre-configured for many linguistic annotation tasks. "
+ "This is closest to the classic WebAnno project setup.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

.template-card {
transition: box-shadow .3s;
border-color: var(--bs-secondary-color);
}

.template-card:hover {
Expand Down

0 comments on commit ba79e6d

Please sign in to comment.