finish the abook_edit quicklink mess, get rid of the experimental nav bar opacity. Bad idea.

This commit is contained in:
friendica
2013-02-07 17:12:10 -08:00
parent 65de97b85a
commit 119ddcd147
4 changed files with 35 additions and 24 deletions

View File

@@ -3508,8 +3508,8 @@ nav {
width: 100%;
height: 32px;
position: fixed;
opacity: 0.6;
filter:alpha(opacity=60);
// opacity: 0.6;
// filter:alpha(opacity=60);
left: 0px;
top: 0px;
@@ -3523,6 +3523,23 @@ nav {
/* TODO find a better way to do this without different code for every single browser. */
background-image: linear-gradient(bottom, #f88 26%, #b00 82%);
background-image: -o-linear-gradient(bottom, #f88 26%, #b00 82%);
background-image: -moz-linear-gradient(bottom, #f88 26%, #b00 82%);
background-image: -webkit-linear-gradient(bottom, #f88 26%, #b00 82%);
background-image: -ms-linear-gradient(bottom, #f88 26%, #b00 82%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.26, #f88),
color-stop(0.82, #b00)
);
}
nav:hover {
background-image: linear-gradient(bottom, #f00 26%, #b00 82%);
background-image: -o-linear-gradient(bottom, #f00 26%, #b00 82%);
background-image: -moz-linear-gradient(bottom, #f00 26%, #b00 82%);
@@ -3538,10 +3555,6 @@ color-stop(0.82, #b00)
);
}
nav:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
nav a,
nav a:active,
nav a:visited,
@@ -3591,8 +3604,13 @@ nav .nav-menu {
padding: 5px;
margin: 3px 15px 0px;
font-size: 14px;
border-bottom: 3px solid #ff0000;
border-bottom: 3px solid #f88;
}
nav:hover .nav-menu {
border-bottom: 3px solid #f00;
}
nav .nav-menu.selected {
border-bottom: 4px solid #CCCCCC;
}