From 3beb482eb82926506d07605b11ce41da1b27545a Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Wed, 16 Oct 2024 11:35:02 +0000 Subject: [PATCH] Right-align "Hours" column in spent time details table (#41401). Patch by Go MAEDA (user:maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@23131 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/assets/stylesheets/application.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 46d7289cb..c7effaf87 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -407,8 +407,8 @@ tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:c tr.time-entry { text-align: center; white-space: nowrap; } tr.time-entry td.issue, tr.time-entry td.comments, tr.time-entry td.subject, tr.time-entry td.activity, tr.time-entry td.project { text-align: left; white-space: normal; } -td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; } -td.hours .hours-dec { font-size: 0.9em; } +table.time-entries td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; } +table.time-entries td.hours .hours-dec { font-size: 0.9em; } table.plugins td { vertical-align: middle; } table.plugins td.configure { text-align: right; padding-right: 1em; }