Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
BMSVieira committed Sep 15, 2020
1 parent 2ad6366 commit 3526b48
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 4 additions & 2 deletions css/bvselect.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ Developed by: Bruno Vieira
overflow: hidden;
}


.bv_ul_inner {
position: absolute;
margin-top: 10px;
Expand All @@ -95,8 +94,11 @@ Developed by: Bruno Vieira
border: 2px solid #e1e1e1;
border-radius: 8px;
display: none;
z-index: 1
z-index: 1;
max-height: 400px;
overflow-x: auto;
}

.bv_ul_inner li {
cursor: pointer;
list-style: none;
Expand Down
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ <h3>Images:</h3>
<option value="##" data-separator="true">Brasil</option>
<option data-img="https://img.icons8.com/color/2x/brazil.png" value="es_3" disabled>Neymar Jr. (Disabled)</option>
<option data-img="https://img.icons8.com/color/2x/brazil.png" value="ch_4">Ronaldinho</option>

</select>
</div>
</div>
Expand Down
9 changes: 9 additions & 0 deletions js/bvselect.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/*-------------------------
BVSelect - Vanilla Javascript Fully Customizable SelectBox v1.3
https://github.com/BMSVieira/BVSelect-VanillaJS
Made by: Bruno Vieira
--------------------------- */

class BVSelect {

constructor({
Expand Down

0 comments on commit 3526b48

Please sign in to comment.