From 5b4c42a321284814f15391c42019616f561f9e0d Mon Sep 17 00:00:00 2001 From: Johan Cwiklinski Date: Oct 12 2014 17:18:56 +0000 Subject: Better colors for issues display --- diff --git a/progit/static/progit.css b/progit/static/progit.css index 9dcd737..68a557e 100644 --- a/progit/static/progit.css +++ b/progit/static/progit.css @@ -642,15 +642,19 @@ td.noresult { } .issue_comment, .add_comment { - background-color: #ededed; + background-color: #fff; border-radius: 10px; margin-bottom: 1em; + box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } .issue_comment > div, .issue_comment > form > div { padding: .2em .5em; } +.issue_comment > p { + padding: .5em; +} .issue_comment p { margin: .5em 0 1em; @@ -661,16 +665,16 @@ td.noresult { border-radius: 10px 10px 0 0; background: #ccc; padding: .5em; - border-bottom: 1px solid rgba(255, 255, 255, 0.4); - - background: #426ead; /* Old browsers */ - background: -moz-linear-gradient(top, #ccc 0%, #ededed 100%); /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ccc), color-stop(100%,#ededed)); /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #ccc 0%,#1e4a88 100%); /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, #ccc 0%,#ededed 100%); /* Opera 11.10+ */ - background: -ms-linear-gradient(top, #ccc 0%,#ededed 100%); /* IE10+ */ - background: linear-gradient(to bottom, #ccc 0%,#ededed 100%); /* W3C */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */ + border-bottom: 1px solid rgba(237, 237, 237, 0.4); + + background: #ededed; /* Old browsers */ + background: -moz-linear-gradient(top, #ededed 0%, #fff 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#fff)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #ededed 0%,#fff 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #ededed 0%,#fff 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #ededed 0%,#fff 100%); /* IE10+ */ + background: linear-gradient(to bottom, #ededed 0%,#fff 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#fff',GradientType=0 ); /* IE6-9 */ } .issue_action {