From: Go MAEDA Date: Sat, 28 Sep 2019 00:06:52 +0000 (+0000) Subject: Rounded corners on table.list elements (#32014). X-Git-Tag: 4.1.0~533 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3f8c42b81f541db8728ff2e5b0c5d0536e030394;p=redmine.git Rounded corners on table.list elements (#32014). Patch by Antonio McDeal. git-svn-id: http://svn.redmine.org/redmine/trunk@18547 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 40bdeb1d2..800415f91 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -231,7 +231,7 @@ div + .drdn-items {border-top:1px solid #ccc;} #project-jump .drdn-items>a:hover {background-color:#759FCF; color:#fff !important;} /***** Tables *****/ -table.list, .table-list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; } +table.list, .table-list { border: 1px solid #e4e4e4; width: 100%; margin-bottom: 4px; border-radius: 3px; border-spacing: 0; overflow: hidden;} table.list th, .table-list-header { background-color:#EEEEEE; padding: 4px; white-space:nowrap; font-weight:bold; } table.list td {text-align:center; vertical-align:middle; padding-right:10px;} table.list td.id { width: 2%; text-align: center;}