@tomhughes requested changes on this pull request.
In addition to my inline comment there's a separate issue on Firefox which I've
opened #6185 for.
> @@ -556,6 +556,10 @@ header .search_forms,
.search_form {
.describe_location {
font-size: 10px;
+
+ input:not(:placeholder-shown) + .input-group-text & {
This rule doesn't actually work because it compiles to:
```css
input:not(:placeholder-shown) + .input-group-text .search_form
.describe_location
```
when what you want is:
```css
.search_form input:not(:placeholder-shown) + .input-group-text
.describe_location
```
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6184#pullrequestreview-3012937661
You are receiving this because you are subscribed to this thread.
Message ID:
<openstreetmap/openstreetmap-website/pull/6184/review/3012937...@github.com>
_______________________________________________
rails-dev mailing list
rails-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/rails-dev