diff --git a/CHANGELOG.md b/CHANGELOG.md index b1e47991..8b7ce3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ## [7.1.0] - 2022-xx-xx ### 🎨 Enhancements - + - [#240](https://github.com/estruyf/vscode-front-matter/issues/240): Capability added to define display modes - [#246](https://github.com/estruyf/vscode-front-matter/issues/246): Support to add multiple tags/keywords/taxonomy via comma separated values - [#293](https://github.com/estruyf/vscode-front-matter/issues/293): Support added for setting preview images in block fields @@ -20,6 +20,7 @@ - [#302](https://github.com/estruyf/vscode-front-matter/issues/302): Fix for spinner when navigating between tabs - [#304](https://github.com/estruyf/vscode-front-matter/issues/304): Fix yaml stringify which caused additional fields to be added +- [#305](https://github.com/estruyf/vscode-front-matter/issues/305): Fix for overflow issue in taxonomy picker ## [7.0.0] - 2022-03-21 - [Release notes](https://beta.frontmatter.codes/updates/v7.0.0) diff --git a/assets/media/styles.css b/assets/media/styles.css index 8f4fa3cf..101be439 100644 --- a/assets/media/styles.css +++ b/assets/media/styles.css @@ -30,7 +30,7 @@ } .inherit { - position: relative !important; + position: inherit !important; } .z-10 { z-index: 10 !important; } @@ -143,12 +143,13 @@ } .article__tags { - position: relative; + /* position: relative; */ margin-bottom: 1rem; } .article__tags__dropbox { - width: 90%; + /* Minus the twice the padding */ + width: calc(100% - 2.5rem); margin: 0; padding: 0; z-index: 1;