mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/11577] Correct over-sized Topic Rows
Fixes a change made in PR 1331 that oversized topic rows. Icons in topic rows, in Prosilver, are only 27px high, so we do not need a min-height as high as 40px. Setting it to 30px is more conservative and reclaims the original height of topic rows from before PR 1331. http://tracker.phpbb.com/browse/PHPBB3-11577 PHPBB3-11577
This commit is contained in:
parent
fc1c7211ab
commit
dccd605a42
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ dl.icon dt .list-inner {
|
||||||
}
|
}
|
||||||
|
|
||||||
dl.icon dt, dl.icon dd {
|
dl.icon dt, dl.icon dd {
|
||||||
min-height: 40px;
|
min-height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd.posts, dd.topics, dd.views, dd.extra, dd.mark {
|
dd.posts, dd.topics, dd.views, dd.extra, dd.mark {
|
||||||
|
|
Loading…
Add table
Reference in a new issue