Board horizontal scroll add shadows
Open
@Cannonb4ll is already working on this.
Since May 28, 2022.
enhancement
- Dominant language
- PHP
- Stars
- 569
- Forks
- 119
- Avg merge
- 9h 20m
- Merged PRs (30d)
- 1
Description
To indicate that there's more content to the right to scroll too.
.scroll-shadows {
background-image: /* Shadows */
linear-gradient(to right, rgba(249 250 251), rgba(249 250 251)),
linear-gradient(to right, rgba(249 250 251), rgba(249 250 251)),
/* Shadow covers */
linear-gradient(to right, rgba(0, 0, 0, .25), rgba(255, 255, 255, 0)),
linear-gradient(to left, rgba(0, 0, 0, .25), rgba(255, 255, 255, 0));
background-position: left center, right center, left center, right center;
background-repeat: no-repeat;
background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
/* Opera doesn't support this in the shorthand */
background-attachment: local, local, scroll, scroll;
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.