Skip to content

Commit

Permalink
Merge pull request #328 from estruyf/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf authored May 2, 2022
2 parents a5fbf69 + add22b0 commit e3c5352
Show file tree
Hide file tree
Showing 63 changed files with 10,272 additions and 348 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,36 @@
# Change Log

## [7.2.0] - 2022-05-02 - [Release notes](https://beta.frontmatter.codes/updates/v7.2.0)

### 🎨 Enhancements

- New tag design for the tags, category, and taxonomy fields
- [#263](https://github.com/estruyf/vscode-front-matter/issues/263): WYSIWYG string field option
- [#308](https://github.com/estruyf/vscode-front-matter/issues/308): New `File` field
- [#314](https://github.com/estruyf/vscode-front-matter/issues/314): New preview actions to open the page in the browser and refresh the preview
- [#322](https://github.com/estruyf/vscode-front-matter/issues/322): Show parent folder name when file is an index page (`index.md` / `_index.md`)
- [#323](https://github.com/estruyf/vscode-front-matter/issues/323): Added 11ty, jekyll, and docusaurus to the framework selection list
- [#325](https://github.com/estruyf/vscode-front-matter/issues/325): Better welcome experience that allows you to add content folders straight from the welcome view
- [#326](https://github.com/estruyf/vscode-front-matter/issues/326): Content type actions to create, update, or set according to the current file

### ⚡️ Optimizations

- [#316](https://github.com/estruyf/vscode-front-matter/issues/316): Suppress file parsing errors when closing the dashboard

### 🐞 Fixes

- Updated JSON schema link to supported version by VS Code (draft-07)
- Hide the view mode action from the Front Matter panel if no custom modes are defined
- Fix in decode base64 uploaded video files
- Fix for a lightbox on other types of documents (pdf, etc.)
- Fix for hiding the image preview on slide-over for none image documents
- [#324](https://github.com/estruyf/vscode-front-matter/issues/324): Fix for the framework selection on the welcome screen

## [7.1.2] - 2022-04-11

### 🐞 Fixes

- [#316](https://github.com/estruyf/vscode-front-matter/issues/316): Fix draft tab navigation
- [#315](https://github.com/estruyf/vscode-front-matter/issues/315): Fix draft tab navigation

## [7.1.1] - 2022-04-08

Expand Down
69 changes: 14 additions & 55 deletions assets/media/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -221,60 +221,6 @@
margin-top: 1rem;
}

.article__tags__items__item {
display: inline-flex;
margin-bottom: .5rem;
margin-right: .5rem;
}

.article__tags__items__item {
display: inline-block;
margin-bottom: .5rem;
margin-right: .5rem;
}

.article__tags__items__item_add,
.article__tags__items__item_delete {
display: inline-block;
width: auto;
}

.article__tags__items__item svg {
display: inline;
vertical-align: bottom;
}

.article__tags__items__item_delete span {
margin-left: .5rem;
}

.article__tags__items__pill_notexists {
color: var(--vscode-inputValidation-errorForeground);
background-color: var(--vscode-inputValidation-errorBackground);
padding-left: .5rem;
}

.article__tags__items__pill_notexists:hover {
color: var(--vscode-inputValidation-errorForeground);
background-color: var(--vscode-inputValidation-errorBackground);

filter: contrast(60%);
}

.article__tags__items__item_add {
color: var(--vscode-inputValidation-infoForeground);
background-color: var(--vscode-inputValidation-infoBackground);
border-right: 1px solid var(--vscode-inputValidation-infoBorder);
}

.article__tags__items__item_add:hover {
color: var(--vscode-inputValidation-infoForeground);
background-color: var(--vscode-inputValidation-infoBackground);
border-right: 1px solid var(--vscode-inputValidation-infoBorder);

filter: contrast(60%);
}

.article__actions > * + *,
.other_actions > * + *,
.base__actions > * + *,
Expand Down Expand Up @@ -355,6 +301,11 @@
color: var(--vscode-button-secondaryForeground);
}

.ext_link_block a:hover,
.ext_link_block button:hover {
background-color: var(--vscode-button-secondaryHoverBackground);
}

.table__cell {
overflow: hidden;
}
Expand Down Expand Up @@ -639,18 +590,21 @@ input:checked + .field__toggle__slider:before {
max-height: 16rem;
}

.metadata_field__file__button,
.metadata_field__preview_image__button {
background-color: transparent;
border: 1px dashed var(--vscode-button-background);
padding: 1.5rem;
filter: brightness(85%);
}

.metadata_field__file__button:hover,
.metadata_field__preview_image__button:hover {
background-color: rgba(255, 255, 255, .1);
filter: brightness(100%);
}

.metadata_field__file__button svg,
.metadata_field__preview_image__button svg {
color: var(--vscode-foreground);
display: block;
Expand All @@ -659,6 +613,7 @@ input:checked + .field__toggle__slider:before {
margin: 0 auto;
}

.metadata_field__file__button span,
.metadata_field__preview_image__button span {
color: var(--vscode-foreground);
display: inline-block;
Expand Down Expand Up @@ -773,8 +728,12 @@ input:checked + .field__toggle__slider:before {
}

/* Timepicker */
.react-datepicker button {
outline: 0;
}

.react-datepicker button:hover {
background-color: none !important;
background: none !important;
}

.react-datepicker__triangle {
Expand Down
Loading

0 comments on commit e3c5352

Please sign in to comment.