From 6b0ce1dab9bbfc20e094377de7a5e7f4427ca333 Mon Sep 17 00:00:00 2001 From: L13 <L13.RARY@gmail.com> Date: Sun, 19 Apr 2020 14:14:52 +0200 Subject: [PATCH] - fixed tab stop in background-position --- CHANGELOG.md | 5 +++++ README.md | 5 ++--- SNIPPETS.md | 2 +- package.json | 2 +- snippets/css.json | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0043a4..c2759e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 0a37f56..facfc40 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/SNIPPETS.md b/SNIPPETS.md index bf276f5..7787acc 100644 --- a/SNIPPETS.md +++ b/SNIPPETS.md @@ -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;` | diff --git a/package.json b/package.json index 61fd04b..24bd61f 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/snippets/css.json b/snippets/css.json index 49e812c..228c244 100644 --- a/snippets/css.json +++ b/snippets/css.json @@ -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": "" },