Skip to content

Commit

Permalink
updaing gradient snippets to remove less comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dhg committed Aug 25, 2011
1 parent da3c99e commit c9b2413
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions css/gradient-horizontal.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<content><![CDATA[
background-color: ${2:#dddddd};
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, right top, from(${1:#eeeeee}), to(${2})); // Konqueror
background-image: -moz-linear-gradient(left, ${1}, ${2}); // FF 3.6+
background-image: -ms-linear-gradient(left, ${1}, ${2}); // IE10
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, ${1}), color-stop(100%, ${2})); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(left, ${1}, ${2}); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(left, ${1}, ${2}); // Opera 11.10
background-image: linear-gradient(left, ${1}, ${2}); // Le standard
background-image: -khtml-gradient(linear, left top, right top, from(${1:#eeeeee}), to(${2}));
background-image: -moz-linear-gradient(left, ${1}, ${2});
background-image: -ms-linear-gradient(left, ${1}, ${2});
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, ${1}), color-stop(100%, ${2}));
background-image: -webkit-linear-gradient(left, ${1}, ${2});
background-image: -o-linear-gradient(left, ${1}, ${2});
background-image: linear-gradient(left, ${1}, ${2});
]]>
</content>
<tabTrigger>gradient</tabTrigger>
Expand Down
14 changes: 7 additions & 7 deletions css/gradient-vertical.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<content><![CDATA[
background-color: ${2:#dddddd};
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(${1:#eeeeee}), to(${2})); // Konqueror
background-image: -moz-linear-gradient(${1}, ${2}); // FF 3.6+
background-image: -ms-linear-gradient(${1}, ${2}); // IE10
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, ${1}), color-stop(100%, ${2})); // Safari 4+, Chrome 2+
background-image: -webkit-linear-gradient(${1}, ${2}); // Safari 5.1+, Chrome 10+
background-image: -o-linear-gradient(${1}, ${2}); // Opera 11.10
background-image: linear-gradient(${1:}, ${2}); // The standard
background-image: -khtml-gradient(linear, left top, left bottom, from(${1:#eeeeee}), to(${2}));
background-image: -moz-linear-gradient(${1}, ${2});
background-image: -ms-linear-gradient(${1}, ${2});
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, ${1}), color-stop(100%, ${2}));
background-image: -webkit-linear-gradient(${1}, ${2});
background-image: -o-linear-gradient(${1}, ${2});
background-image: linear-gradient(${1:}, ${2});
]]>
</content>
<tabTrigger>gradient</tabTrigger>
Expand Down

0 comments on commit c9b2413

Please sign in to comment.