File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed
Filter options
Expand file tree Collapse file tree 5 files changed +10
-6
lines changed
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to the "L13 CSS Snippets" extension will be documented in this file.
3
3
4
+ ## [ 0.14.1] - 2020-04-19
5
+
6
+ ### Fixed
7
+ - Fixed tab stop in ` background-position: 0 0; `
8
+
4
9
## [ 0.14.0] - 2019-10-20
5
10
6
11
### Added
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.
4
4
5
5
This extension is part of the [ L13 Extension Pack] ( https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack ) .
6
6
7
- ## What's new in L13 CSS Snippets 0.14.0
7
+ ## What's new in L13 CSS Snippets 0.14.1
8
8
9
- - Added complete snippet list as markdown.
10
- - Added property "content".
9
+ - Fixed tab stop in ` background-position: 0 0; `
11
10
12
11
## Index
13
12
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
154
154
| ` biu ` | ` background-image: url('$0'); ` |
155
155
| ` bobb ` | ` background-origin: border-box; ` |
156
156
| ` bopb ` | ` background-origin: padding-box; ` |
157
- | ` bp2 ` | ` background-position: ${1:0} ${2 :0}; ` |
157
+ | ` bp2 ` | ` background-position: ${1:0} ${0 :0}; ` |
158
158
| ` bpcb ` | ` background-position: center bottom; ` |
159
159
| ` bpcc ` | ` background-position: center center; ` |
160
160
| ` bpct ` | ` background-position: center top; ` |
Original file line number Diff line number Diff line change 2
2
"name" : " l13-css-snippets" ,
3
3
"displayName" : " L13 CSS Snippets" ,
4
4
"description" : " Snippets for CSS and SCSS" ,
5
- "version" : " 0.14.0 " ,
5
+ "version" : " 0.14.1 " ,
6
6
"publisher" : " L13RARY" ,
7
7
"preview" : true ,
8
8
"license" : " SEE LICENCE IN LICENCE.md" ,
Original file line number Diff line number Diff line change 175
175
"background-origin: border-box;" : { "prefix" : " bobb" , "body" : [" background-origin: border-box;" ], "description" : " " },
176
176
"background-origin: padding-box;" : { "prefix" : " bopb" , "body" : [" background-origin: padding-box;" ], "description" : " " },
177
177
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" : " " },
179
179
"background-position: center bottom;" : { "prefix" : " bpcb" , "body" : [" background-position: center bottom;" ], "description" : " " },
180
180
"background-position: center center;" : { "prefix" : " bpcc" , "body" : [" background-position: center center;" ], "description" : " " },
181
181
"background-position: center top;" : { "prefix" : " bpct" , "body" : [" background-position: center top;" ], "description" : " " },
You can’t perform that action at this time.
0 commit comments