#305 - fix for taxonomy picker styling

This commit is contained in:
Elio Struyf
2022-04-02 10:08:31 +02:00
parent a79a987f5e
commit 637394156f
2 changed files with 6 additions and 4 deletions

View File

@@ -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)

View File

@@ -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;