source: trunk/themes/dark/theme.css @ 11992

Last change on this file since 11992 was 11992, checked in by plg, 13 years ago

feature 2027 implemented: the "lost password" feature was rewritten.

The algorithm is highly inspired from WordPress :

1) in a single field, you give a username or an email
2) Piwigo sends an email with the activation key
3) the user clicks on the link in the email (with the activation key) and is able to set a new password

The "lost password" feature is no longer limited to "classic" users:
administrators and webmasters can use it too (no need to tell webmasters
that they can only change their password in the database)

  • Property svn:eol-style set to LF
File size: 1.3 KB
Line 
1
2/* text color */
3BODY, H1, H3,
4INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
5        color:#d0d0d0;
6}
7
8H2, #menubar DT {
9        color: #ffff80;
10}
11
12
13/* backgrounds */
14
15BODY, H3, #imageToolBar A:hover {
16        background-color: #2f2f2f;
17}
18
19#menubar DL, .content, #imageToolBar, #imageHeaderBar, .header_notes {
20        background-color: #505050;
21}
22
23H2, #menubar DT {
24        background-image: url(images/tableh1_bg.png);
25}
26
27#imageHeaderBar H2 {
28        background-image: none;
29        border: 0;
30}
31
32#imageHeaderBar {
33        border-top: 1px solid #000;
34}
35
36/* borders */
37#menubar DL, .content{
38        border: 1px solid #000;
39}
40
41H2, #menubar DT, #imageToolBar {
42        border-bottom: 1px solid #000;
43}
44
45FIELDSET, INPUT, SELECT, TEXTAREA,
46.content .thumbnailCategory ,
47.thumbnails .wrap2 {
48        border: 1px solid gray;
49}
50
51
52.thumbnails .wrap2:hover,
53.content .thumbnailCategories .thumbnailCategory:hover,
54.content .thumbnailCategories .thumbnailCategory:hover A {
55        background-color: #faebd7;
56        border-color: yellow;   /* thumbnails border color when mouse cursor is over it */
57        color: black;
58}
59
60
61/* links */
62A, INPUT.rateButton {
63        color: #fff;
64}
65
66A:hover {
67        color: #ffff80;
68}
69
70.pwg-icon {
71        background-image: url(../default/s26/outline_ffffff.png);
72}
73
74A:hover .pwg-icon {
75        background-image: url(../default/s26/outline_ffff80.png);
76}
77
78.message {
79  color:white;
80  background-color:#666;
81}
Note: See TracBrowser for help on using the repository browser.