diff options
author | Go MAEDA <maeda@farend.jp> | 2019-01-18 08:31:59 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-01-18 08:31:59 +0000 |
commit | f5daae4041daa5ad6385f7d4cb43655c87515153 (patch) | |
tree | 7604c8057932ad4a8380992e5c41a646c38d05e5 | |
parent | 220dc1051063c1897798947c00585ea824cda648 (diff) | |
download | redmine-f5daae4041daa5ad6385f7d4cb43655c87515153.tar.gz redmine-f5daae4041daa5ad6385f7d4cb43655c87515153.zip |
Table rows are not highlighted on mouseover on some pages (#30426).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@17806 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/application.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 5e33e8f51..6549eb270 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -352,13 +352,15 @@ tr.group a.toggle-all { color: #aaa; font-size: 80%; display:none; float:right; tr.group:hover a.toggle-all { display:inline;} a.toggle-all:hover {text-decoration:none;} -table.list tbody tr:hover { background-color:#ffffdd; } table.list tbody tr.group:hover { background-color:inherit; } + table td {padding:2px;} table p {margin:0;} table.list:not(.odd-even) tbody tr:nth-child(odd), .odd, #issue-changesets div.changeset:nth-child(odd) { background-color:#f6f7f8; } table.list:not(.odd-even) tbody tr:nth-child(even), .even, #issue-changesets div.changeset:nth-child(even) { background-color: #fff; } +table.list:not(.odd-even) tbody tr:nth-child(odd):hover, .odd:hover, #issue-changesets div.changeset:nth-child(odd):hover, +table.list:not(.odd-even) tbody tr:nth-child(even):hover, .even:hover, #issue-changesets div.changeset:nth-child(even):hover { background-color:#ffffdd; } tr.builtin td.name {font-style:italic;} |