mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 21:08:53 +00:00
[ticket/12553] Fix links in the last post column that are not clickable.
The relative position of the <dt> is causing it to sit atop of the <dd> thus preventing the user from clicking the links. The <dl> has a relative position in LTR, which takes care of containing the read/unread icon link that has an absolute position. We no longer support IE6, so removing the tweak that sets the <dl> position to static will make everything behave the same way in RTL as in LTR. PHPBB3-12553
This commit is contained in:
parent
3ed767351c
commit
ee9fceedff
1 changed files with 0 additions and 8 deletions
|
@ -333,10 +333,6 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a {
|
||||||
margin-left: 80px;
|
margin-left: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl ul.topiclist dl {
|
|
||||||
position: static; /* fix for IE6 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl ul.topiclist dd {
|
.rtl ul.topiclist dd {
|
||||||
float: right;
|
float: right;
|
||||||
border-right-width: 1px;
|
border-right-width: 1px;
|
||||||
|
@ -389,10 +385,6 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a {
|
||||||
padding-right: 45px; /* Space for folder icon */
|
padding-right: 45px; /* Space for folder icon */
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl dl.icon dt { /* fix for topic row icon links */
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl dl a.icon-link { /* topic row icon links */
|
.rtl dl a.icon-link { /* topic row icon links */
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
left: auto;
|
left: auto;
|
||||||
|
|
Loading…
Add table
Reference in a new issue