Skip to content

Commit

Permalink
fix(popup): Fix content popup layout breaking due to leaking button s…
Browse files Browse the repository at this point in the history
…tyles

The content popup layout would overlap when position absolute was applied to the button (coming from integration CSS). Added css rules to ensure it remains not-absolutely positioned. Closes #1415.
  • Loading branch information
tcrammond authored and shantanuraj committed May 24, 2019
1 parent f269344 commit de22c4e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
display: none;
}

.toggl-button-edit-form-button, #toggl-button-edit-form .toggl-button-edit-form-button {
display: inline-block !important;
position: initial !important;
}

.toggl-button {
display: inline-block !important;
user-select: none;
Expand Down

0 comments on commit de22c4e

Please sign in to comment.