diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-11-20 12:40:01 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-11-20 12:40:01 +0100 |
commit | 640f1a6a9c962b3a773792ac8fcd4ae9b0b42866 (patch) | |
tree | 1711e095e48103d6f9551b4b767a7dc2e261f129 | |
parent | f5800578c76c211cabd4842ddc96d4f6f244f998 (diff) |
Prettify editor marks
-rw-r--r-- | css/codeq/hint.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/css/codeq/hint.css b/css/codeq/hint.css index 81ffe32..4f46043 100644 --- a/css/codeq/hint.css +++ b/css/codeq/hint.css @@ -38,13 +38,18 @@ a.hint-static-link { } .editor-mark.insert { - background-color: #b9ed61; + background-color: #a0d850; /* fallback if gradients are not supported */ + background: linear-gradient(to right, #a0d850, transparent); + border-bottom: 1px solid #70a820; + border-left: 1px solid #70a820; } .editor-mark.remove { background-color: #ffbb99; + border-bottom: 1px solid #cf8b69; } .editor-mark.change { background-color: #f4dd32; + border-bottom: 1px solid #c4ad02; } |