Skip to content

Commit

Permalink
fix(styling): cell menu is re-position incorrectly below the grid
Browse files Browse the repository at this point in the history
- Bulma was overriding the SlickGrid cell-menu styling because of css class dropdown/dropup
  • Loading branch information
ghiscoding committed Jun 1, 2020
1 parent 917f044 commit 6fd3552
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/common/src/styles/slick-plugins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
overflow: auto;
resize: both;

/* make sure that other UI frameworks aren't overriding our properties (Bulma was one of them affecting this) */
&.dropdown,
&.dropup {
display: inline-block;
position: absolute;
}

> .close {
float: right;
cursor: pointer;
Expand Down

0 comments on commit 6fd3552

Please sign in to comment.