Skip to content

Commit

Permalink
chore: improve css/sass styling in some demos
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Dec 2, 2022
1 parent 58af5f4 commit a9dd036
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/examples/slickgrid/editor-select.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<span if.bind="collection">
<select class="form-control" value.bind="selectedItem" matcher.bind="itemMatcher">
<select class="form-control form-select" value.bind="selectedItem" matcher.bind="itemMatcher">
<option repeat.for="item of collection" model.bind="item">
${item.name}
</option>
Expand Down
2 changes: 1 addition & 1 deletion src/examples/slickgrid/filter-select.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<span if.bind="collection">
<select class="form-control" value.bind="selectedItem" matcher.bind="itemMatcher">
<select class="form-control form-select" value.bind="selectedItem" matcher.bind="itemMatcher">
<option repeat.for="item of collection" model.bind="item">
${item.name}
</option>
Expand Down
2 changes: 0 additions & 2 deletions src/slickgrid.scss

This file was deleted.

2 changes: 2 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
$slick-input-focus-box-shadow: 0 0 0 0.25rem #0d6efd40;

/* make sure to add the @import the SlickGrid Bootstrap Theme AFTER the variables changes */
@import '@slickgrid-universal/common/dist/styles/sass/slickgrid-theme-bootstrap.scss';

Expand Down

0 comments on commit a9dd036

Please sign in to comment.