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

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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).