Skip to content

Commit

Permalink
fix(styling): List bullets shouldn't show in any frameworks, fixes #487
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Sep 21, 2021
1 parent d08e3d5 commit 53ea537
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/common/src/styles/slick-bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
to { background: none; }
}

ul {
list-style-type: none;
}

.slickgrid-container {
border-top: var(--slick-container-border-top, $container-border-top);
border-bottom: var(--slick-container-border-bottom, $container-border-bottom);
Expand Down
1 change: 1 addition & 0 deletions packages/common/src/styles/slick-component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
// ----------------------------------------------

.slick-pagination {
list-style-type: none;
border-top: var(--slick-pagination-border-top, $pagination-border-top);
border-right: var(--slick-pagination-border-right, $pagination-border-right);
border-bottom: var(--slick-pagination-border-bottom, $pagination-border-bottom);
Expand Down
2 changes: 2 additions & 0 deletions packages/common/src/styles/slick-controls.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// ----------------------------------------------

.slick-columnpicker {
list-style-type: none;
font-family: var(--slick-font-family, $font-family);
background-color: var(--slick-column-picker-background-color, $column-picker-background-color);
border: var(--slick-column-picker-border, $column-picker-border);
Expand Down Expand Up @@ -148,6 +149,7 @@
// ----------------------------------------------

.slick-gridmenu {
list-style-type: none;
font-family: var(--slick-font-family, $font-family);
background-color: var(--slick-grid-menu-background-color, $grid-menu-background-color);
border: var(--slick-grid-menu-border, $grid-menu-border);
Expand Down
2 changes: 2 additions & 0 deletions packages/common/src/styles/slick-plugins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// ----------------------------------------------

.slick-cell-menu {
list-style-type: none;
position: absolute;
font-family: $font-family;
background: var(--slick-cell-menu-bg-color, $cell-menu-bg-color);
Expand Down Expand Up @@ -141,6 +142,7 @@
// ----------------------------------------------

.slick-context-menu {
list-style-type: none;
position: absolute;
background: var(--slick-context-menu-bg-color, $context-menu-bg-color);
border: var(--slick-context-menu-border, $context-menu-border);
Expand Down

0 comments on commit 53ea537

Please sign in to comment.