Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f049f81

Browse filesBrowse files
authored
Merge pull request #4 from L13/develop
Develop
2 parents a18752f + 8c7e144 commit f049f81
Copy full SHA for f049f81

File tree

Expand file treeCollapse file tree

5 files changed

+10
-6
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+10
-6
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to the "L13 CSS Snippets" extension will be documented in this file.
33

4+
## [0.14.1] - 2020-04-19
5+
6+
### Fixed
7+
- Fixed tab stop in `background-position: 0 0;`
8+
49
## [0.14.0] - 2019-10-20
510

611
### Added

‎README.md

Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ This extension contains property snippets for CSS and rule snippets for SCSS.
44

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

7-
## What's new in L13 CSS Snippets 0.14.0
7+
## What's new in L13 CSS Snippets 0.14.1
88

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

1211
## Index
1312

‎SNIPPETS.md

Copy file name to clipboardExpand all lines: SNIPPETS.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Complete list of all CSS and SCSS snippets for Visual Studio Code. The rules for
154154
| `biu` | `background-image: url('$0');` |
155155
| `bobb` | `background-origin: border-box;` |
156156
| `bopb` | `background-origin: padding-box;` |
157-
| `bp2` | `background-position: ${1:0} ${2:0};` |
157+
| `bp2` | `background-position: ${1:0} ${0:0};` |
158158
| `bpcb` | `background-position: center bottom;` |
159159
| `bpcc` | `background-position: center center;` |
160160
| `bpct` | `background-position: center top;` |

‎package.json

Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "l13-css-snippets",
33
"displayName": "L13 CSS Snippets",
44
"description": "Snippets for CSS and SCSS",
5-
"version": "0.14.0",
5+
"version": "0.14.1",
66
"publisher": "L13RARY",
77
"preview": true,
88
"license": "SEE LICENCE IN LICENCE.md",

‎snippets/css.json

Copy file name to clipboardExpand all lines: snippets/css.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
"background-origin: border-box;": { "prefix": "bobb", "body": ["background-origin: border-box;"], "description": "" },
176176
"background-origin: padding-box;": { "prefix": "bopb", "body": ["background-origin: padding-box;"], "description": "" },
177177

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.