diff options
author | Go MAEDA <maeda@farend.jp> | 2019-09-28 00:06:52 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-09-28 00:06:52 +0000 |
commit | 3f8c42b81f541db8728ff2e5b0c5d0536e030394 (patch) | |
tree | 10f7783857cdd2e50a966fdacbbf46311642e481 /public | |
parent | bd464018215f052092321f454982236fc42bf5e2 (diff) | |
download | redmine-3f8c42b81f541db8728ff2e5b0c5d0536e030394.tar.gz redmine-3f8c42b81f541db8728ff2e5b0c5d0536e030394.zip |
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
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 2 |
1 files changed, 1 insertions, 1 deletions
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;} |