aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--views/default/css.php36
-rw-r--r--views/default/messages/errors/list.php4
-rw-r--r--views/default/messages/messages/list.php4
-rw-r--r--views/default/navigation/topbar_tools.php4
-rw-r--r--views/default/page_elements/elgg_topbar.php2
5 files changed, 25 insertions, 25 deletions
diff --git a/views/default/css.php b/views/default/css.php
index 766e147fa..261278aa0 100644
--- a/views/default/css.php
+++ b/views/default/css.php
@@ -572,7 +572,7 @@ blockquote {
TOP BAR - VERTICAL TOOLS MENU
*************************************** */
/* elgg toolbar menu setup */
-#topbardropdownmenu, #topbardropdownmenu ul {
+ul.topbardropdownmenu, ul.topbardropdownmenu ul {
margin:0;
padding:0;
display:inline;
@@ -581,10 +581,10 @@ blockquote {
z-index: 5000;
position: relative;
}
-#topbardropdownmenu {
+ul.topbardropdownmenu {
margin:0pt 20px 0pt 5px;
}
-#topbardropdownmenu li {
+ul.topbardropdownmenu li {
display: block;
list-style: none;
margin: 0;
@@ -592,10 +592,10 @@ blockquote {
float: left;
position: relative;
}
-#topbardropdownmenu a {
+ul.topbardropdownmenu a {
display:block;
}
-#topbardropdownmenu ul {
+ul.topbardropdownmenu ul {
display: none;
position: absolute;
left: 0;
@@ -603,46 +603,46 @@ blockquote {
padding: 0;
}
/* IE6 fix */
-* html #topbardropdownmenu ul {
+* html ul.topbardropdownmenu ul {
line-height: 1.1em;
}
/* IE6/7 fix */
-#topbardropdownmenu ul a {
+ul.topbardropdownmenu ul a {
zoom: 1;
}
-#topbardropdownmenu ul li {
+ul.topbardropdownmenu ul li {
float: none;
}
/* elgg toolbar menu style */
-#topbardropdownmenu ul {
+ul.topbardropdownmenu ul {
width: 150px;
}
-#topbardropdownmenu *:hover {
+ul.topbardropdownmenu *:hover {
background-color: none;
}
-#topbardropdownmenu a {
+ul.topbardropdownmenu a {
padding:3px;
text-decoration:none;
color:white;
}
-#topbardropdownmenu li.hover a {
+ul.topbardropdownmenu li.hover a {
background-color: #4690d6;
text-decoration: none;
}
-#topbardropdownmenu ul li.drop a {
+ul.topbardropdownmenu ul li.drop a {
font-weight: normal;
}
/* IE7 fixes */
*:first-child+html #elgg_topbar_container_left a.pagelinks {
padding-bottom:6px;
}
-*:first-child+html #topbardropdownmenu li.drop a.menuitemtools {
+*:first-child+html ul.topbardropdownmenu li.drop a.menuitemtools {
padding-bottom:6px;
}
-#topbardropdownmenu ul {
+ul.topbardropdownmenu ul {
top: 25px;
}
-#topbardropdownmenu ul li a {
+ul.topbardropdownmenu ul li a {
background-color: #999999;/* menu off state color */
font-weight: bold;
padding-left:6px;
@@ -651,10 +651,10 @@ blockquote {
height:22px;
border-bottom: 1px solid white;
}
-#topbardropdownmenu ul a.hover {
+ul.topbardropdownmenu ul a.hover {
background-color: #333333;
}
-#topbardropdownmenu ul a {
+ul.topbardropdownmenu ul a {
opacity: 0.9;
filter: alpha(opacity=90);
}
diff --git a/views/default/messages/errors/list.php b/views/default/messages/errors/list.php
index 2df8afe15..8acdd047b 100644
--- a/views/default/messages/errors/list.php
+++ b/views/default/messages/errors/list.php
@@ -20,8 +20,8 @@
<!-- used to fade out the system messages after 3 seconds -->
<script>
$(document).ready(function () {
- $('.messages_error').animate({top:"30px", opacity: 1.0}, 1000);
- $('.messages_error').animate({opacity: 1.0}, 6000);
+ $('.messages_error').animate({opacity: 1.0}, 1000);
+ $('.messages_error').animate({opacity: 1.0}, 5000);
$('.messages_error').fadeOut('slow');
$('span.closeMessages a').click(function () {
diff --git a/views/default/messages/messages/list.php b/views/default/messages/messages/list.php
index c22a5e276..1f14990ac 100644
--- a/views/default/messages/messages/list.php
+++ b/views/default/messages/messages/list.php
@@ -20,8 +20,8 @@
<!-- used to fade out the system messages after 3 seconds -->
<script>
$(document).ready(function () {
- $('.messages').animate({top:"30px", opacity: 1.0}, 1000);
- $('.messages').animate({opacity: 1.0}, 6000);
+ $('.messages').animate({opacity: 1.0}, 1000);
+ $('.messages').animate({opacity: 1.0}, 5000);
$('.messages').fadeOut('slow');
$('span.closeMessages a').click(function () {
diff --git a/views/default/navigation/topbar_tools.php b/views/default/navigation/topbar_tools.php
index 1c94c00a9..1c2d17b80 100644
--- a/views/default/navigation/topbar_tools.php
+++ b/views/default/navigation/topbar_tools.php
@@ -26,7 +26,7 @@
?>
-<ul id="topbardropdownmenu">
+<ul class="topbardropdownmenu">
<li class="drop"><a href="#" class="menuitemtools"><?php echo(elgg_echo('tools')); ?></a>
<ul>
<?php
@@ -40,7 +40,7 @@
<script type="text/javascript">
$(function() {
- $('#topbardropdownmenu').elgg_topbardropdownmenu();
+ $('ul.topbardropdownmenu').elgg_topbardropdownmenu();
});
</script>
diff --git a/views/default/page_elements/elgg_topbar.php b/views/default/page_elements/elgg_topbar.php
index 712711199..09bac3c29 100644
--- a/views/default/page_elements/elgg_topbar.php
+++ b/views/default/page_elements/elgg_topbar.php
@@ -78,7 +78,7 @@
</div><!-- /#elgg_topbar -->
-<div style="clear:both;"></div>
+<div class="clearfloat"></div>
<?php
}