Skip to content

Commit

Permalink
Fix broken rgba() CSS notations.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartfeenstra committed May 24, 2022
1 parent 18545ba commit 974c4c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions betty/assets/public/static/css/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ footer {
}

.nav-primary-action {
background-color: rgba(255 255 255 90%);
background-color: rgba(255 255 255 / 90%);
cursor: pointer;
display: block;
float: right;
Expand Down Expand Up @@ -220,7 +220,7 @@ footer {
}

#nav-sections .nav-secondary li a {
background-color: rgba(255 255 255 90%);
background-color: rgba(255 255 255 / 90%);
float: left;
line-height: 3rem;
padding: 0 1em;
Expand Down
4 changes: 2 additions & 2 deletions betty/assets/public/static/css/search.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#search-query {
appearance: none;
background-color: rgba(255 255 255 90%);
background-color: rgba(255 255 255 / 90%);
border: 0.3rem solid #f7f7f7;
border-radius: unset;
color: #777;
Expand Down Expand Up @@ -95,7 +95,7 @@
}

#search-results-twilight::before {
background: linear-gradient(#fff, rgba(255 255 255 0%));
background: linear-gradient(#fff, rgba(255 255 255 / 0%));
background-size: 3rem 10%;
background-repeat: repeat-x;
background-position: top;
Expand Down

0 comments on commit 974c4c3

Please sign in to comment.