mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-28 12:24:23 +00:00
Add dropdup to changelog
This commit is contained in:
parent
9e294874a2
commit
f15e1ee844
@ -5,6 +5,7 @@
|
|||||||
### New features
|
### New features
|
||||||
|
|
||||||
* #1236 `.table` hover effect is opt-in, by using the `.is-hoverable` modifier class
|
* #1236 `.table` hover effect is opt-in, by using the `.is-hoverable` modifier class
|
||||||
|
* #1254 `.dropdown` now supports `.is-up` modifier
|
||||||
|
|
||||||
## 0.5.3
|
## 0.5.3
|
||||||
|
|
||||||
|
@ -5209,6 +5209,13 @@ a.tag:hover {
|
|||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown.is-up .dropdown-menu {
|
||||||
|
bottom: 100%;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
padding-top: unset;
|
||||||
|
top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
display: none;
|
display: none;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
File diff suppressed because one or more lines are too long
@ -27,10 +27,10 @@ $dropdown-divider-background-color: $border !default
|
|||||||
right: 0
|
right: 0
|
||||||
&.is-up
|
&.is-up
|
||||||
.dropdown-menu
|
.dropdown-menu
|
||||||
top: auto
|
|
||||||
bottom: 100%
|
bottom: 100%
|
||||||
padding-top: unset
|
|
||||||
padding-bottom: $dropdown-content-offset
|
padding-bottom: $dropdown-content-offset
|
||||||
|
padding-top: unset
|
||||||
|
top: auto
|
||||||
|
|
||||||
.dropdown-menu
|
.dropdown-menu
|
||||||
display: none
|
display: none
|
||||||
|
Loading…
Reference in New Issue
Block a user