Skip to content

Commit ef5a7a1

Browse files
committed
increasing contrast in topmenu
1 parent fa894e5 commit ef5a7a1

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

web/templates/admin/panel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</td>
2020
<td>
2121
<b><?php echo $user ?></b>
22-
<a class="top-link" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a>
22+
<a class="top-logout" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a>
2323
</td>
2424
</tr>
2525
</thead>

web/templates/header.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929

3030
.top {
31-
color: #825117;
31+
color: #f5de50;
3232
padding: 0;
3333
font-family: Arial, Helvetica, sans-serif;
3434
margin: 0;
@@ -41,7 +41,7 @@
4141
}
4242

4343
.top thead td {
44-
background: #ebe9dc;
44+
background: #777;
4545
border-bottom: 1px solid #fff;
4646
height: 25px;
4747
text-align: right;
@@ -60,29 +60,35 @@
6060
.top-link {
6161
padding: 5px 22px 4px;
6262
text-decoration: none;
63-
color: #323232;
63+
color: #fff;
6464
border-right: 1px solid #fff;
6565
}
6666

6767
.top-link:hover {
68-
color: #174f82;
68+
color: #fff;
69+
background: #555;
6970
}
7071

7172
.top-link:active{
7273
color: #ccc;
74+
background: #555;
7375
}
7476

7577
.top-selected-link {
7678
padding: 5px 22px;
7779
text-decoration: none;
78-
color: #174f82;
80+
color: #555;
7981
background: #fff;
8082
border-right: 1px solid #fff;
8183
}
8284

85+
.top-selected-link:hover {
86+
color: #174f82;
87+
}
88+
8389
.top-logout {
8490
text-decoration: none;
85-
color: #e6e6e6;
91+
color: #d3d3d3;
8692
padding: 0 0 0 2px;
8793
border: noner;
8894
}

web/templates/user/panel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</td>
1515
<td>
1616
<b><?php if(($_SESSION['user'] == 'admin') && ($user != 'admin')) echo 'admin / ' ?><?php echo $user ?></b>
17-
<a class="top-link" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a>
17+
<a class="top-logout" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a>
1818
</td>
1919
</tr>
2020
</thead>

0 commit comments

Comments
 (0)