Skip to content

Commit

Permalink
- Updated pom to PrimeFaces 11.0.0
Browse files Browse the repository at this point in the history
- Updated readme error
- Added table alternate row stylings
  • Loading branch information
djmj committed Mar 13, 2022
1 parent e1517b0 commit cdfc847
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It contained some interesting mobile only UI components and renderer of existing

## Download JAR

* [11.0](https://cdn.deloma.de/others/libraries/primefaces/primefaces-mobile-11.0.jar) - compatible to PrimeFaces-10.0
* [11.0](https://cdn.deloma.de/others/libraries/primefaces/primefaces-mobile-11.0.jar) - compatible to PrimeFaces-11.0
* [10.0](https://cdn.deloma.de/others/libraries/primefaces/primefaces-mobile-10.0.jar) - compatible to PrimeFaces-10.0
* [8.0](https://cdn.deloma.de/others/libraries/primefaces/primefaces-mobile-8.0.jar) - compatible to PrimeFaces-8.0
* [7.0](https://cdn.deloma.de/others/libraries/primefaces/primefaces-mobile-7.0.jar) - compatible to PrimeFaces-7.0
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>11.0.0-RC2</version>
<version>11.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,26 @@
margin: 0.15em;
}

/* alternate table styling */

/* border after each row */
.ui-table tbody tr
{
border-bottom: 1px solid #ddd;
}

/* alternate row background color */
.ui-table tbody tr:nth-child(2n+1) td
{
background-color: rgba(0, 0, 0, 0.02);
}

/* highlight mouse hover if not selected - desktop only? */
.ui-table tbody tr:hover:not(.ui-bar-b)
{
background-color: #ededed;
}

/* icons for dialog renderer */

/* .ui-icon-arrow-l */
Expand Down

0 comments on commit cdfc847

Please sign in to comment.