Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<!-- Feel free to put either your handle and/or full name, according to
your privacy needs -->
## v0.13.7 ·

* Fixed missing style for dropdown_header plugin

*@fabienwnkl*

## v0.13.0 · 03 11 2020

Expand Down
6 changes: 3 additions & 3 deletions src/plugins/dropdown_header/plugin.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
.#{$selectize}-control {
.dropdown-header {
.#{$selectize}-dropdown-header {
position: relative;
padding: ($select-padding-dropdown-item-y * 2)
$select-padding-dropdown-item-x;
border-bottom: 1px solid $select-color-border;
background: mix($select-color-dropdown, $select-color-border, 85%);
border-radius: $select-border-radius $select-border-radius 0 0;
}
.dropdown-header-close {
.#{$selectize}-dropdown-header-close {
position: absolute;
right: $select-padding-dropdown-item-x;
top: 50%;
Expand All @@ -17,7 +17,7 @@
line-height: 20px;
font-size: 20px !important;
}
.dropdown-header-close:hover {
.#{$selectize}-dropdown-header-close:hover {
color: darken($select-color-text, 25%);
}
}