From cdb26af5b73371848ca70af0cf88f30d0e8edd06 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 8 Sep 2014 00:34:48 -0500 Subject: [PATCH] Fix linear gradient. --- static/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 24e14c4..4a7ad4d 100644 --- a/static/style.css +++ b/static/style.css @@ -285,12 +285,12 @@ span.cv-hl { span.cv-hl-in { background: #FCC; - background: linear-gradient(left, #FFF, #FAA); + background: linear-gradient(to left, #FAA, #FFF); } span.cv-hl-out { background: #FCC; - background: linear-gradient(left, #FAA, #FFF); + background: linear-gradient(to right, #FAA, #FFF); } span.mono { font-family: monospace; }