See what pictures you've clicked on See what pictures you've clicked on
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

See what pictures you've clicked on

Started by bulldozer, March 20, 2005, 11:23:28 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

bulldozer

I would like to see feature where you can see what images you've clicked on. Then when you go back to thumbs, the ones you've looked at should have different colored borders around them or something.

Tranz

Add the following in the theme's style.css file:
a:visited .image{
        border-style: solid;
border-width: 2px;
        border-color: purple;
        margin: 2px;
}


season to taste.

Joachim Müller

valid point imo (I think there's even an item on the dev todo list). Moving this thread accordingly.

Joachim

Joachim Müller

added pseudo-classes
  • a:link .image
  • a:visited .image
  • a:focus .image
  • a:hover .image
  • a:active .image
to all themes in the devel branch

fmangeant

Hi

as this is a "minor" modification, maybe it could be applied to the stable (1.4.x) version ?

Thanks in advance for your answer.

Joachim Müller

You're welcome to check out the devel branch of the SVN and apply the modifications I comitted. However, the policy "no new features for existing releases" still applies, no matter if the feature is major or minor.

fmangeant

Thanks, I've checked out the style.css files from the devel branch, and it works fine (on top of the stable branch).