File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -414,17 +414,23 @@ Example: `{ "vendor-prefix-align": true }`
414414/* before * /
415415a
416416{
417- -webkit-border-radius: 3px;
418- -moz-border-radius: 3px;
419- border-radius: 3px;
417+ -webkit-border-radius: 3px;
418+ -moz-border-radius: 3px;
419+ border-radius: 3px;
420+ background: -webkit-linear-gradient(top, # fff 0, #eee 100%);
421+ background: -moz-linear-gradient(top, # fff 0, #eee 100%);
422+ background: linear-gradient(to bottom, # fff 0, #eee 100%);
420423}
421424
422425/* after * /
423426a
424427{
425- -webkit-border-radius: 3px;
426- -moz-border-radius: 3px;
427- border-radius: 3px;
428+ -webkit-border-radius: 3px;
429+ -moz-border-radius: 3px;
430+ border-radius: 3px;
431+ background: -webkit-linear-gradient(top, # fff 0, #eee 100%);
432+ background: -moz-linear-gradient(top, # fff 0, #eee 100%);
433+ background: linear-gradient(to bottom, # fff 0, #eee 100%);
428434}
429435` ` `
430436
You can’t perform that action at this time.
0 commit comments