-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fa9e58
commit 6de51ab
Showing
5 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { WINDOW_SHADOW } from "@intellij-platform/core/style-constants"; | ||
import { styled } from "@intellij-platform/core/styled"; | ||
|
||
export const StyledPopupContainer = styled.div` | ||
position: fixed; | ||
box-sizing: border-box; | ||
// not checked if there should be a better substitute for * in the following colors. Maybe "Component"? | ||
background-color: ${({ theme }) => theme.color("*.background")}; | ||
color: ${({ theme }) => theme.color("*.foreground")}; | ||
outline: none; // Focus will be reflected in header. No need for outline or any other focus style on the container | ||
${WINDOW_SHADOW}; // FIXME: OS-dependant style? | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters