Skip to content

Commit

Permalink
Release 0.11.1 ready (#334)
Browse files Browse the repository at this point in the history
* #319 landing page now features grid with all components and one-line-descriptions
* #324 HasHelperPositionable with corresponding mixin done
* #329 fixed (#331)
* #330 done (#332)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: vaadin-miki <vaadin-miki@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Nov 26, 2021
1 parent eadd477 commit e241bf5
Show file tree
Hide file tree
Showing 51 changed files with 12,571 additions and 61 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This is the relevant dependency:
<dependency>
<groupId>org.vaadin.miki</groupId>
<artifactId>superfields</artifactId>
<version>0.11.0</version>
<version>0.11.1</version>
</dependency>
```

Expand Down
34 changes: 34 additions & 0 deletions demo-v14/frontend/styles/demo-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,40 @@ div.item-grid-cell>span {
text-align: center;
}

#presentation-grid .item-grid-row {
clear: left;
}

#presentation-grid .presentation-cell {
width: 20%;
max-width: 400px;
float: left;
margin: 0.5em;
padding: 1em;
display: block;
border: 2px solid black;
cursor: pointer;
text-align: center;
}

.presentation-cell h3 {
margin: 3px;
padding: 3px;
}

#presentation-grid .presentation-cell:hover {
background: silver;
border: 2px solid dodgerblue;
}

#presentation-grid .presentation-cell .presentation-description {
color: silver;
}

#presentation-grid .presentation-cell:hover .presentation-description {
color: black;
}

lazy-load.selected {
background: lightgreen;
}
Expand Down
Loading

0 comments on commit e241bf5

Please sign in to comment.