Browse Source

Fix linear gradient.

pull/24/head
Ben Kurtovic 9 years ago
parent
commit
cdb26af5b7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      static/style.css

+ 2
- 2
static/style.css View File

@@ -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; }


Loading…
Cancel
Save