Skip to content

@preflight causing issue with Google Maps InfoWindows #564

@kylemilloy

Description

@kylemilloy

In the preflight.css file on line ~540 we see:

*,
*::before,
*::after {
  border-width: 0;
  border-style: solid;
  border-color: config('borderColors.default', currentColor);
}

The border-style: solid; style on the catch all (*, not its pseudo-selectors) is causing extra absolutely positioned elements in Google Maps to be broken

I have found that adding a separate selector underneath fixes the problem:

* {
  border-style: inherit;
}

Before border-style: inherit;

screen shot 2018-10-01 at 11 28 06 am

After adding border-style: inherit;

screen shot 2018-10-01 at 11 27 05 am

``

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions