Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Fix the rest of the deprecated gradient warnings #323

Merged
merged 1 commit into from
Apr 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/less/util.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@
50% 100%,
color-stop(0%, @start),
color-stop(100%, @stop));
background-image:-webkit-linear-gradient(top,
background-image:-webkit-linear-gradient(to bottom,
@start 0%,
@stop 100%);
background-image:-moz-linear-gradient(top,
background-image:-moz-linear-gradient(to bottom,
@start 0%,
@stop 100%);
background-image:-o-linear-gradient(top,
background-image:-o-linear-gradient(to bottom,
@start 0%,
@stop 100%);
background-image:linear-gradient(top,
background-image:linear-gradient(to bottom,
@start 0%,
@stop 100%);
}
Expand Down