Dokuwiki: Links to the action pages are no longer highlighted in Greebo

Created on 3 May 2019  路  4Comments  路  Source: splitbrain/dokuwiki

No earth-shattering problem, but I wanted to mention it anyway: The links to the action pages "Recent Changes", "Media Manager", and so on are no longer highlighted in Greebo when the appropriate page is opened (resp. is the current page). That was still the case in Frusterick Manners.

Bug CSS XHTML JS Browsers needDocUpdate

Most helpful comment

Aha, I got it.
The CSS styles are still in code: https://github.com/splitbrain/dokuwiki/blob/cbaf278c50e5baf946b3bd606c369735fe0953be/lib/tpl/dokuwiki/css/design.less#L68-L80 but these elements are changed a bit.

old:

<li>
    <a href="/doku.php?id=start&amp;do=recent" class="action recent" accesskey="r" rel="nofollow" title="Recent Changes [R]">Recent Changes</a>
</li>

new:

<li class="action recent">
    <a href="/donate?do=recent" title="Recent Changes [r]" rel="nofollow" accesskey="r">Recent Changes</a>
</li>

Suggestion for changes:

.mode_admin .action.admin a, 
.mode_login .action.login a, 
.mode_register .action.register a, 
.mode_profile .action.profile a, 
.mode_recent .action.recent a, 
.mode_index .action.index a, 
.mode_media .action.media a, 
.mode_revisions .action.revs a, 
.mode_backlink .action.backlink a, 
.mode_subscribe .action.subscribe a {
    font-weight: bold;
}

I guess it is useful to check if there are more uses of .action.<mode>

All 4 comments

You mean the links just below the search field?
It looks like these are just working at: https://www.dokuwiki.org/donate?do=recent

You mean the links just below the search field?

Yes, all "action links" around the search field.

It looks like these are just working at: https://www.dokuwiki.org/donate?do=recent

The Link "Recent Changes" on this page is not highlighted (at least not with me). Compare with: http://test3.informantum.de/doku.php?id=start&do=recent

Aha, I got it.
The CSS styles are still in code: https://github.com/splitbrain/dokuwiki/blob/cbaf278c50e5baf946b3bd606c369735fe0953be/lib/tpl/dokuwiki/css/design.less#L68-L80 but these elements are changed a bit.

old:

<li>
    <a href="/doku.php?id=start&amp;do=recent" class="action recent" accesskey="r" rel="nofollow" title="Recent Changes [R]">Recent Changes</a>
</li>

new:

<li class="action recent">
    <a href="/donate?do=recent" title="Recent Changes [r]" rel="nofollow" accesskey="r">Recent Changes</a>
</li>

Suggestion for changes:

.mode_admin .action.admin a, 
.mode_login .action.login a, 
.mode_register .action.register a, 
.mode_profile .action.profile a, 
.mode_recent .action.recent a, 
.mode_index .action.index a, 
.mode_media .action.media a, 
.mode_revisions .action.revs a, 
.mode_backlink .action.backlink a, 
.mode_subscribe .action.subscribe a {
    font-weight: bold;
}

I guess it is useful to check if there are more uses of .action.<mode>

I guess it is useful to check if there are more uses of .action.<mode>

You are right, take a look at this search result...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

KaiMartin picture KaiMartin  路  6Comments

epeios-q37 picture epeios-q37  路  4Comments

yasuhirokimura picture yasuhirokimura  路  5Comments

wangxu94 picture wangxu94  路  5Comments

splitbrain picture splitbrain  路  4Comments