From 9d3a1f0eb5c816d0b741fef74454bc07b186b249 Mon Sep 17 00:00:00 2001 From: dbz Date: Mon, 22 May 2017 16:13:15 +0200 Subject: [PATCH] fix rgba for old browsers --- talks/_templates/grid.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/talks/_templates/grid.html b/talks/_templates/grid.html index 51bcbd8..1e8c746 100644 --- a/talks/_templates/grid.html +++ b/talks/_templates/grid.html @@ -12,9 +12,13 @@ td.talk { border-radius: 0.3em; } .talk-grid tr { line-height: 1em; } -.talk-grid tr:hover { background-color: #980e0eb3; } +.talk-grid tr:hover { + background-color: rgb(152, 14, 14); + background-color: rgba(152, 14, 14, 0.79); +} .talk-grid td:first-child { font-size: 60%; } +