Skip to content

Commit

Permalink
Reworked how collapsed lists work so the tooltip is not cut off (fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
w00fz committed Nov 20, 2020
1 parent 919a641 commit 263a968
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* Fixed Page Move action and selection highlight in Parents selector modal [flex-objects#80](https://github.com/trilbymedia/grav-plugin-flex-objects/issues/80)
* Fixed folder auto-naming in Add Module [#1937](https://github.com/getgrav/grav-plugin-admin/issues/1937)
* Fixed remodal issue triggering close when selecting a dropdown item ending outside of scope [#1682](https://github.com/getgrav/grav-plugin-admin/issues/1682)
* Reworked how collapsed lists work so the tooltip is not cut off [#1928](https://github.com/getgrav/grav-plugin-admin/issues/1928)

# v1.10.0-rc.17
## 10/07/2020
Expand Down
5 changes: 2 additions & 3 deletions themes/grav/css-compiled/nucleus.css

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions themes/grav/css-compiled/preset.css

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions themes/grav/css-compiled/simple-fonts.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions themes/grav/css-compiled/template.css

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion themes/grav/scss/template/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -679,12 +679,19 @@ textarea.frontmatter {

&.collection-collapsed {
height: 70px;
overflow: hidden;
@include transform(translateZ(0));

@include breakpoint(mobile-only) {
height: 120px;
}

// Fix for grav-plugin-admin#1928

// overflow: hidden;
> .form-field ~ .form-field {
display: none;
}
// end fix
}
}

Expand Down

0 comments on commit 263a968

Please sign in to comment.