Add dropdup to changelog

This commit is contained in:
Jeremy Thomas 2017-10-07 17:04:38 +01:00
parent 9e294874a2
commit f15e1ee844
4 changed files with 11 additions and 3 deletions

View File

@ -5,6 +5,7 @@
### New features
* #1236 `.table` hover effect is opt-in, by using the `.is-hoverable` modifier class
* #1254 `.dropdown` now supports `.is-up` modifier
## 0.5.3

View File

@ -5209,6 +5209,13 @@ a.tag:hover {
right: 0;
}
.dropdown.is-up .dropdown-menu {
bottom: 100%;
padding-bottom: 4px;
padding-top: unset;
top: auto;
}
.dropdown-menu {
display: none;
left: 0;

File diff suppressed because one or more lines are too long

View File

@ -27,10 +27,10 @@ $dropdown-divider-background-color: $border !default
right: 0
&.is-up
.dropdown-menu
top: auto
bottom: 100%
padding-top: unset
padding-bottom: $dropdown-content-offset
padding-top: unset
top: auto
.dropdown-menu
display: none