Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- fixed tab stop in background-position #3

Merged
merged 1 commit into from
Apr 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to the "L13 CSS Snippets" extension will be documented in this file.

## [0.14.1] - 2020-04-19

### Fixed
- Fixed tab stop in `background-position: 0 0;`

## [0.14.0] - 2019-10-20

### Added
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,10 +4,9 @@ This extension contains property snippets for CSS and rule snippets for SCSS.

This extension is part of the [L13 Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack).

## What's new in L13 CSS Snippets 0.14.0
## What's new in L13 CSS Snippets 0.14.1

- Added complete snippet list as markdown.
- Added property "content".
- Fixed tab stop in `background-position: 0 0;`

## Index

2 changes: 1 addition & 1 deletion SNIPPETS.md
Original file line number Diff line number Diff line change
@@ -154,7 +154,7 @@ Complete list of all CSS and SCSS snippets for Visual Studio Code. The rules for
| `biu` | `background-image: url('$0');` |
| `bobb` | `background-origin: border-box;` |
| `bopb` | `background-origin: padding-box;` |
| `bp2` | `background-position: ${1:0} ${2:0};` |
| `bp2` | `background-position: ${1:0} ${0:0};` |
| `bpcb` | `background-position: center bottom;` |
| `bpcc` | `background-position: center center;` |
| `bpct` | `background-position: center top;` |
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "l13-css-snippets",
"displayName": "L13 CSS Snippets",
"description": "Snippets for CSS and SCSS",
"version": "0.14.0",
"version": "0.14.1",
"publisher": "L13RARY",
"preview": true,
"license": "SEE LICENCE IN LICENCE.md",
2 changes: 1 addition & 1 deletion snippets/css.json
Original file line number Diff line number Diff line change
@@ -175,7 +175,7 @@
"background-origin: border-box;": { "prefix": "bobb", "body": ["background-origin: border-box;"], "description": "" },
"background-origin: padding-box;": { "prefix": "bopb", "body": ["background-origin: padding-box;"], "description": "" },

"background-position: 0 0;": { "prefix": "bp2", "body": ["background-position: ${1:0} ${2:0};"], "description": "" },
"background-position: 0 0;": { "prefix": "bp2", "body": ["background-position: ${1:0} ${0:0};"], "description": "" },
"background-position: center bottom;": { "prefix": "bpcb", "body": ["background-position: center bottom;"], "description": "" },
"background-position: center center;": { "prefix": "bpcc", "body": ["background-position: center center;"], "description": "" },
"background-position: center top;": { "prefix": "bpct", "body": ["background-position: center top;"], "description": "" },