increasing contrast in topmenu

This commit is contained in:
Serghey Rodin 2013-04-01 15:28:21 +03:00
commit ef5a7a1ffb
3 changed files with 14 additions and 8 deletions

View file

@ -19,7 +19,7 @@
</td> </td>
<td> <td>
<b><?php echo $user ?></b> <b><?php echo $user ?></b>
<a class="top-link" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a> <a class="top-logout" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a>
</td> </td>
</tr> </tr>
</thead> </thead>

View file

@ -28,7 +28,7 @@
} }
.top { .top {
color: #825117; color: #f5de50;
padding: 0; padding: 0;
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
margin: 0; margin: 0;
@ -41,7 +41,7 @@
} }
.top thead td { .top thead td {
background: #ebe9dc; background: #777;
border-bottom: 1px solid #fff; border-bottom: 1px solid #fff;
height: 25px; height: 25px;
text-align: right; text-align: right;
@ -60,29 +60,35 @@
.top-link { .top-link {
padding: 5px 22px 4px; padding: 5px 22px 4px;
text-decoration: none; text-decoration: none;
color: #323232; color: #fff;
border-right: 1px solid #fff; border-right: 1px solid #fff;
} }
.top-link:hover { .top-link:hover {
color: #174f82; color: #fff;
background: #555;
} }
.top-link:active{ .top-link:active{
color: #ccc; color: #ccc;
background: #555;
} }
.top-selected-link { .top-selected-link {
padding: 5px 22px; padding: 5px 22px;
text-decoration: none; text-decoration: none;
color: #174f82; color: #555;
background: #fff; background: #fff;
border-right: 1px solid #fff; border-right: 1px solid #fff;
} }
.top-selected-link:hover {
color: #174f82;
}
.top-logout { .top-logout {
text-decoration: none; text-decoration: none;
color: #e6e6e6; color: #d3d3d3;
padding: 0 0 0 2px; padding: 0 0 0 2px;
border: noner; border: noner;
} }

View file

@ -14,7 +14,7 @@
</td> </td>
<td> <td>
<b><?php if(($_SESSION['user'] == 'admin') && ($user != 'admin')) echo 'admin / ' ?><?php echo $user ?></b> <b><?php if(($_SESSION['user'] == 'admin') && ($user != 'admin')) echo 'admin / ' ?><?php echo $user ?></b>
<a class="top-link" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a> <a class="top-logout" style="padding: 5px 0px 5px 2px; border:0px" href="/logout/"> <?php print _('Log out') ?> </a>
</td> </td>
</tr> </tr>
</thead> </thead>